Syntax on
autocmd BufNewFile *.cpp 0r ~/.vim/template/tpl.cpp
set nu
set ru
set mouse=a
set nocompatible
set noswapfile
set noreadonly
set nobackup
set bs=2
set ts=4
set sts=4
set sw=4
set cin
set autoindent
set smartindent
set autoread
colo evening
set clipboard+=unnamedplus
set clipboard+=unnamed
map<F2> : call open() <CR>
map<F3> : call Compile() <CR>
map<F4> : call Run() <CR>
map<F5> : call Com_Run() <CR>
map<F6> : call Gedit() <CR>
map<F7> : call Compile_O2() <CR>
func! open()
exec "vsp %<.out"
exec "sp %<.in"
endfunc
func! Compile()
exec "w"
exec "!g++ ./% -o ./%< -Wall -Dhany01"
endfunc
func! Compile_O2()
exec "w"
exec "!g++ ./% -o ./%< -Wall -O2 -Dhany01"
endfunc
func! Run()
exec "!./%<"
endfunc
func! Com_Run()
exec "w"
exec "!g++ ./% -o ./%< -Wall -m32 -Dhany01"
exec "!./%<"
endfunc
func! Gedit()
exec "!gedit %"
endfunc
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。