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 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
You can’t perform that action at this time.
0 commit comments