VIM 一鍵編譯

來源:互聯網
上載者:User

標籤: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>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.