Skip to content

Commit 403914a

Browse files
committed
executioner.vim 1.2.3
Remove debug mapping
1 parent 9389297 commit 403914a

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

plugin/executioner.vim

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" ============================================================================
22
" File: executioner.vim
33
" Maintainer: https://github.com/EvanQuan/vim-executioner/
4-
" Version: 1.2.2
4+
" Version: 1.2.3
55
"
66
" A Vim plugin to easily execute files in the terminal or a separate buffer.
77
" ============================================================================
@@ -407,21 +407,21 @@ endfunction
407407

408408
" nnoremap <leader>d :call g:Debug(2, "test.cpp")<CR>
409409
"
410-
function! g:Test()
411-
let s:string1 = 'foo/bar/file1.extension'
412-
let s:string2 = 'foo\bar\file2.extension'
410+
" function! g:Test()
411+
" let s:string1 = 'foo/bar/file1.extension'
412+
" let s:string2 = 'foo\bar\file2.extension'
413413

414-
let s:split1 = split(s:string1, s:DIRECTORY_SEPARATOR)
415-
let s:split2 = split(s:string2, s:DIRECTORY_SEPARATOR)
414+
" let s:split1 = split(s:string1, s:DIRECTORY_SEPARATOR)
415+
" let s:split2 = split(s:string2, s:DIRECTORY_SEPARATOR)
416416

417-
let s:name1 = s:split1[len(s:split1) - 1]
418-
let s:name2 = s:split2[len(s:split2) - 1]
417+
" let s:name1 = s:split1[len(s:split1) - 1]
418+
" let s:name2 = s:split2[len(s:split2) - 1]
419419

420-
echom s:name1
421-
echom s:name2
422-
endfunction
420+
" echom s:name1
421+
" echom s:name2
422+
" endfunction
423423

424-
nnoremap <leader>d :call g:Test()<CR>
424+
" nnoremap <leader>d :call g:Test()<CR>
425425

426426

427427
" Create commands

0 commit comments

Comments
 (0)