File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change 1
1
" ============================================================================
2
2
" File: executioner.vim
3
3
" Maintainer: https://github.com/EvanQuan/vim-executioner/
4
- " Version: 1.2.2
4
+ " Version: 1.2.3
5
5
"
6
6
" A Vim plugin to easily execute files in the terminal or a separate buffer.
7
7
" ============================================================================
@@ -407,21 +407,21 @@ endfunction
407
407
408
408
" nnoremap <leader>d :call g:Debug(2, "test.cpp")<CR>
409
409
"
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'
413
413
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)
416
416
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]
419
419
420
- echom s: name1
421
- echom s: name2
422
- endfunction
420
+ " echom s:name1
421
+ " echom s:name2
422
+ " endfunction
423
423
424
- nnoremap <leader> d :call g:Test()<CR>
424
+ " nnoremap <leader>d :call g:Test()<CR>
425
425
426
426
427
427
" Create commands
You can’t perform that action at this time.
0 commit comments