標籤:http java 檔案 c++ line type
第一種方法
去VIM官網下個CVIM外掛程式(http://www.vim.org/scripts/script.php?script_id=213)應該是這個地址,不是的話,自己去VIM官網輸入CVIM關鍵字搜尋
直接解壓到你的.vim檔案夾中(就是專門放VIM外掛程式的檔案夾)
然後命令如下(只針對C和C++檔案,其他檔案無效):
F9compile and link
Alt-F9write buffer and compile
Ctrl-F9run executable
Shift-F9set command line arguments
Shift-F2switch between source files and header files
第二種方法(你可以自己加入java之類的一次編譯運行,很簡單)
在vim的設定檔中加入:
" 編譯C源檔案
fun! CompileGcc()
exec "w"
let compilecmd="!gcc -Wall -ansi -pedantic -std=c99 "
let compileflag="-o %<"
exec compilecmd." % ".compileflag
endfunc
" 編譯C++源檔案
fun! CompileCpp()
exec "w"
let compilecmd="!g++ -g -Wall -pedantic -std=c++98 "
let compileflag="-o %<"
exec compilecmd." % ".compileflag
endfunc
" 根據檔案類型自動選擇相應的編譯函數
func! CompileCode()
exec "w"
if &filetype == "c"
exec "call CompileGcc()"
elseif &filetype == "cpp"
exec "call CompileCpp()"
endif
endfunc
" 運行可執行檔
func! RunResult()
exec "w"
if &filetype == "c"
exec "! %<"
elseif &filetype == "cpp"
exec "! %<"
endif
endfunc
" <F7>一鍵儲存、編譯
map <F7> :call CompileCode()<CR>
imap <F7> <ESC>:call CompileCode()<CR>
vmap <F7> <ESC>:call CompileCode()<CR>
" <F5>一鍵儲存、運行
map <F5> :call RunResult()<CR>
imap <F5> <ESC>:call RunResult()<CR>
vmap <F5> <ESC>:call RunResult()<CR>