让Vim打造成强大的IDE,附_vimrc的配置和使用

前端之家收集整理的这篇文章主要介绍了让Vim打造成强大的IDE,附_vimrc的配置和使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近在搞linux,没有好用的IDE,想到了VIM.

配置 了下VImrc文件。发现挺好用的。这里总结下使用方法

首先环境准备,下载windows下的VIM .GVIM。我的版本是V7.4.

然后把_vimrc配置文件放到安装目录下。这个配置文件是之前别人写好的,用着有点儿问题特意改了下。稍后附件中会附带这个。直接能用。

这里总结下 使用方法,省的时间一长又忘记了。

进入目录的方法

按 : 号,

输入 :E D://

自动会进入到D盘的路径下。同理,打开GVIM后,需要进入 工作目录(如: E://work//myprj),则直接输入 :E E://work//myprj

使能ctag和 cscope,方便查找与跳转。在当前目录下,执行: SrcInit()即可 。

自动的会去执行ctag和cscope指令,生成相关的配置。

至于快捷键,这里不介绍了。直接查看_vimrc文件即可。想添加功能,新快捷键,直接编辑这个文件即可。

最后,还有wmmanager和taglist插件。最好都安装下。

这样才能有 类似工程目录的效果

关于vim,有个吐槽是快捷键像 复制粘贴等,在linux和windows下都通用的,但vim不行。其实配置下也是可以的。

从网上找到方案如下:

" 映射全选+复制 ctrl+a
map <C-A> ggvG
" map! <C-A> <Esc>ggVGY
" map <F12> gg=G
" 选中状态下 Ctrl+c 复制
vmap <C-c> "+y
"在插入模式中使用Ctrl+v粘贴全局剪贴板内容
inoremap <C-v> <esc>:set paste<cr>mui<C-R>+<esc>mv'uV'v=:set nopaste<cr>

"在Visual模式中使用Ctrl+c复制内容到全局剪贴板
vnoremap <C-c> "+y

"在Visual模式中使用Ctrl+x剪切内容到全局剪贴板
vnoremap <C-x> "+x

"新建标签
map <M-F2> :tabnew<CR>
"列出当前目录文件
map <C-F3> :tabnew .<CR>

"在插入模式中使用Ctrl+v粘贴全局剪贴板内容
inoremap <C-v> <esc>:set paste<cr>mui<C-R>+<esc>mv'uV'v=:set nopaste<cr>

"在Visual模式中使用Ctrl+c复制内容到全局剪贴板
vnoremap <C-c> "+y
"在Visual模式中使用Ctrl+x剪切内容到全局剪贴板
vnoremap <C-x> "+x

附个截图:



附:_vimrc配置文件

  1. " Setting some decent VIM settings for programming
  2.  
  3. set ai " set auto-indenting on for programming
  4. set showmatch " automatically show matching brackets. works like it does in bbedit.
  5. set vb " turn on the "visual bell" - which is much quieter than the "audio blink"
  6. set ruler " show the cursor position all the time
  7. set laststatus=2 " make the last line where the status is two lines deep so you can see status always
  8. set backspace=indent,eol,start " make that backspace key work the way it should
  9. set nocompatible " vi compatible is LAME
  10. set background=dark " Use colours that work well on a dark background (Console is usually black)
  11. set showmode " show the current mode
  12. Syntax on " turn Syntax highlighting on by default
  13.  
  14. " Show EOL type and last modified timestamp,right after the filename
  15. set statusline=%<%F%h%m%r\ [%{&ff}]\ (%{strftime(\"%H:%M\ %d/%m/%Y\",getftime(expand(\"%:p\")))})%=%l,%c%V\ %P
  16.  
  17. "------------------------------------------------------------------------------
  18. " Only do this part when compiled with support for autocommands.
  19. if has("autocmd")
  20. "Set UTF-8 as the default encoding for commit messages
  21. autocmd BufReadPre COMMIT_EDITMSG,git-rebase-todo setlocal fileencodings=utf-8
  22.  
  23. "Remember the positions in files with some git-specific exceptions"
  24. autocmd BufReadPost *
  25. \ if line("'\"") > 0 && line("'\"") <= line("$")
  26. \ && expand("%") !~ "COMMIT_EDITMSG"
  27. \ && expand("%") !~ "ADD_EDIT.patch"
  28. \ && expand("%") !~ "addp-hunk-edit.diff"
  29. \ && expand("%") !~ "git-rebase-todo" |
  30. \ exe "normal g`\"" |
  31. \ endif
  32.  
  33. autocmd BufNewFile,BufRead *.patch set filetype=diff
  34. autocmd BufNewFile,BufRead *.diff set filetype=diff
  35.  
  36. autocmd Syntax diff
  37. \ highlight WhiteSpaceEOL ctermbg=red |
  38. \ match WhiteSpaceEOL /\(^+.*\)\@<=\s\+$/
  39.  
  40. autocmd Syntax gitcommit setlocal textwidth=74
  41. endif " has("autocmd")
  42. " General option
  43. Syntax enable
  44. set ruler number
  45. set hlsearch incsearch
  46. set autowrite nobackup
  47. set ignorecase
  48.  
  49. set linebreak
  50. set mouse=a
  51.  
  52. set cindent shiftwidth=4 tabstop=4
  53. set backspace=2
  54. set formatoptions=tcqor
  55. set scrolloff=6
  56.  
  57. set tags=tags,tagsx,..\tags;
  58. set au@R_403_294@dir
  59. set path=**
  60.  
  61. set laststatus=2
  62. set grepprg=gfind\ .\ -name\ \"*.[chs]\"\ -exec\ grep\ -iHn\ <cword>\ {}\ ;
  63. set shellpipe=2>&1\|tee
  64. compiler! gcc
  65.  
  66. colorscheme torte
  67. hi StatusLine gui=reverse " guifg=darkgrey guibg=cyan
  68. hi cursorline guibg=grey30
  69. hi cursorcolumn guibg=grey20
  70. hi Search guifg=cyan
  71.  
  72. nmap,d :bd<cr>
  73. nmap,4 :set ts=4<cr>
  74. nmap tt "Ayy
  75. nmap <space>f :find
  76. nmap <space>g :tag
  77. nmap <space>i [I
  78.  
  79. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  80. " Enhanced up-down-motions
  81. nmap ff zz
  82. nmap fj zb
  83. nmap fk zt
  84. nmap fm ztM
  85. nmap f,zbM
  86. nmap <space>j :call ToggleJK()<cr>
  87.  
  88. let s:jk_func = 0
  89. function ToggleJK()
  90. if s:jk_func == 0
  91. nmap j <Down>zz
  92. nmap k <Up>zz
  93. let s:jk_func = 1
  94. hi StatusLine guifg=darkcyan ctermbg=11
  95. else
  96. unmap j
  97. unmap k
  98. let s:jk_func = 0
  99. hi StatusLine guifg=blue ctermbg=15
  100. endif
  101. endfunction
  102.  
  103. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  104. " Enhanced code navigation & source code management
  105. nmap,. :cs find s <cword><cr>
  106. nmap,<C-]>
  107. nmap,m <C-T>
  108. nmap,j <C-^>
  109. nmap,a :lv <cword> **/*.[chsCHS]<cr>
  110.  
  111. " Update settings affected by the location of source code root directory
  112. function UpdateSetting(path)
  113. execute 'set path=**,' . a:path . '/**'
  114. execute 'nmap,a :lv <cword> ' . a:path . '/**/*.[chsCHS]<cr>'
  115. endfunction
  116.  
  117. " To decide location of the source code root directory
  118. let g:src_root = "."
  119. call UpdateSetting(g:src_root)
  120.  
  121. " Rebuild environment according to source code root directory
  122. command -nargs=1 SrcInit call SrcInit(<f-args>)
  123. function SrcInit(str)
  124. let g:src_root = a:str
  125. " let g:src_root = resolve(getcwd() . "\\" . a:str)
  126. TagUpdate
  127. call Warning("Now src_root: " . g:src_root)
  128. endfunction
  129.  
  130. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  131. " Work directory type: git working copy or svn working copy
  132. function CheckWorkDirType()
  133. let str = system("git status")
  134. let ret = stridx(str,"branch")
  135. if ret != -1 | return "git" | endif
  136. let str = system("svn info")
  137. let ret = stridx(str,"UUID")
  138. if ret != -1 | return "svn" | endif
  139. return "dir"
  140. endfunction
  141.  
  142. let g:wd_type = CheckWorkDirType()
  143.  
  144. function GetRevision()
  145. if g:wd_type == "git"
  146. let str = system("git log --pretty=%h")
  147. return str[0:6]
  148. elseif g:wd_type == "svn"
  149. let str = system("svn info")
  150. let i1 = stridx(str,"Revision")
  151. let i2 = match(str,"\n",i1)
  152. return str[i1+10 : i2-1]
  153. else
  154. return "0"
  155. endif
  156. endfunction
  157.  
  158. let g:wd_rev = GetRevision()
  159. set statusline=%{g:wd_type}:%n>\ %<%f\ %h%m%r%w%y%=%-5B%-15.(%l/%L,\ %c%V%)\ %P
  160. set titlestring=%F\ %=%{g:wd_type}:%{g:wd_rev}
  161.  
  162. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  163. " Function keys
  164. "nmap <special> <F1> :make!<cr>
  165. "lne # 显示下一个quickfix(location list)项
  166. nmap <special> <F1> :lne<cr>
  167. nmap <special> <F2> :lp<cr>
  168. nmap <special> <F3> :lnewer \| lli<cr>
  169. nmap <special> <F4> :lolder \| lli<cr>
  170.  
  171. nmap <special> <F5> :cn<cr>
  172. nmap <special> <F6> :cp<cr>
  173. nmap <special> <F7> :call ToggleView()<cr>
  174. nmap <special> <F8> :TagUpdate<cr>
  175.  
  176. if g:wd_type == "git"
  177. nmap <special> <F9> :call GitStatus()<cr>
  178. nmap <special> <F10> :call GitLog()<CR>
  179. nmap <special> <F11> :call GitLog(bufname(""))<CR>
  180. nmap <special> <F12> :call GitDiff()<CR>
  181. else
  182. nmap <special> <F9> :call SvnStatus()<cr>
  183. nmap <special> <F10> :call SvnLog()<CR>
  184. nmap <special> <F11> :call SvnLog(bufname(""))<CR>
  185. nmap <special> <F12> :call SvnDiff()<CR>
  186. endif
  187.  
  188. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  189. " For cscope
  190. if has("cscope")
  191. set csprg=cscope csto=0 cst nocsverb
  192. if filereadable("cscope.out") " add any database in current directory
  193. cs add cscope.out
  194. elseif $CSCOPE_DB != "" " else add database pointed to by environment
  195. cs add $CSCOPE_DB
  196. endif
  197. set csverb
  198. endif
  199.  
  200. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  201. " Save a string into a temp file and view in vim
  202. let s:file_tmp = tempname() . "-zt"
  203. function ViewInTmpFile(str)
  204. let alist = split(a:str,"\n")
  205. call writefile(alist,s:file_tmp,'b')
  206. let cmd = "view +setlocal\\ nomodifiable " . s:file_tmp
  207. execute cmd
  208. endfunction
  209.  
  210. " Save a command output into a temp file and view in vim
  211. function CmdInTmpFile(cmd)
  212. let ret = system(a:cmd)
  213. call ViewInTmpFile(ret)
  214. redraw
  215. echo "Command: " . a:cmd
  216. endfunction
  217.  
  218. function Warning(msg)
  219. echohl LineNr | echo a:msg | echohl None
  220. endfunction
  221.  
  222. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  223. " Enhanced search
  224. set updatetime=800
  225. hi MatchParen guifg=white guibg=grey40
  226. hi xx1 guibg=blue guifg=lightyellow
  227. hi xx2 guibg=darkgreen guifg=lightyellow
  228. hi xx3 guibg=orange guifg=lightyellow
  229.  
  230. " Highlight the word under cursor
  231. nmap,8 :autocmd! CursorHold<cr>
  232. nmap,9 :autocmd! CursorHold * nested silent! call CursorWord()<cr>
  233. nmap <space>7 :call matchadd("xx3",'\c\<' . expand('<cword>') . '\>',11,4)<cr>
  234. nmap <space>8 :exe '2match xx1 /\c\<' . expand('<cword>') . '\>/'<cr>
  235. nmap <space>9 :exe 'match xx2 /\c\<' . expand('<cword>') . '\>/'<cr>
  236. nmap <space>0 :exe 'call clearmatches() \| nohlsearch'<cr>
  237.  
  238. let s:cursor_match_id = 0
  239. function CursorWord()
  240. call matchdelete(s:cursor_match_id)
  241. let s:cursor_match_id = matchadd("MatchParen",-1)
  242. endfunction
  243.  
  244. command -nargs=* -complete=tag_listfiles Vvim call Vvim(<f-args>)
  245. function Vvim(...)
  246. let searchpath = g:src_root . '/**/*.[chsCHS]'
  247. if a:0 == 0
  248. let pattern = expand("<cword>")
  249. let cmd = "lv /" . pattern . "/ " . expand("%")
  250. call matchadd("Pmenu",'\c' . pattern)
  251. elseif a:0 == 1
  252. let cmd = "lv /" . a:1 . "/ " . searchpath
  253. call matchadd("Pmenu",'\c' . a:1)
  254. elseif a:0 == 2
  255. let ptn1 = a:1 . '.*' . a:2
  256. let ptn2 = a:2 . '.*' . a:1
  257. let pattern = '\(' . ptn1 . '\)\|\(' . ptn2 . '\)'
  258. let cmd = "lv /" . pattern . "/ " . searchpath
  259. call matchadd("Pmenu",'\c' . a:1)
  260. call matchadd("Todo",'\c' . a:2)
  261. else
  262. let cmd = "lv /" . a:1 . "/ " . expand("%")
  263. call matchadd("Pmenu",'\c' . a:1)
  264. endif
  265.  
  266. try
  267. echo cmd
  268. execute cmd
  269. catch /^Vim(lvimgrep)/
  270. call Warning("vim: No match")
  271. return
  272. endtry
  273. endfunction
  274.  
  275. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  276. " Git operations
  277. "let s:gitlogcmd="git log --pretty=\"%h: %Cgreen%s %C(cyan)<%an>%Creset <%ai>\" "
  278. "let s:gitlogcmd="git log --pretty=\"%h: %s <%an> <%ai>\" "
  279. let s:gitlogcmd="git log --encoding=cp936 --decorate -- "
  280. let s:diffmode = 0 " diffmode: 0 for whole source code tree,1 for current file only.
  281.  
  282. command -nargs=1 Git call Git(<f-args>)
  283. function Git(str)
  284. let gitprg = "\"c:\\program files\\git\\bin\\git.exe\" " . a:str
  285. echo system(gitprg)
  286. endfunction
  287.  
  288. function GitDiff()
  289. if s:diffmode == 0
  290. call CmdInTmpFile("git diff -- " . g:src_root)
  291. else
  292. call CmdInTmpFile("git diff -- " . bufname(""))
  293. call Warning("Diff mode: " . s:diffmode)
  294. endif
  295. set filetype=diff
  296. endfunction
  297.  
  298. function GitStatus()
  299. let g:wd_rev = GetRevision()
  300. echo "Work dir:" getcwd()
  301. echo "Src root:" g:src_root
  302. echo "Git rev :" g:wd_rev
  303. echo "Git branches:"
  304. Git branch
  305. echo "======================================="
  306. Git status
  307. endfunction
  308.  
  309. function GitLog(...)
  310. if a:0 == 0
  311. let s:diffmode = 0
  312. call CmdInTmpFile(s:gitlogcmd . g:src_root)
  313. else
  314. let s:diffmode = 1
  315. call CmdInTmpFile(s:gitlogcmd . a:1)
  316. endif
  317. endfunction
  318.  
  319. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  320. " Svn operations
  321. function Svn(str)
  322. let svnprg = "\"c:\\program files\\TortoiseSvn\\bin\\svn.exe\" " . a:str
  323. let ret = system(svnprg)
  324. let xx = split(ret,"\n")
  325. let yy = sort(xx)
  326. let zz = join(yy,"\n")
  327. echo zz
  328. endfunction
  329.  
  330. function SvnDiff()
  331. if s:diffmode == 0
  332. call CmdInTmpFile("svn diff " . g:src_root)
  333. else
  334. call CmdInTmpFile("svn diff " . bufname(""))
  335. call Warning("Diff mode: " . s:diffmode)
  336. endif
  337. set filetype=diff
  338. endfunction
  339.  
  340. function SvnStatus()
  341. let g:wd_rev = GetRevision()
  342. echo "Work dir:" getcwd()
  343. echo "Src root:" g:src_root
  344. echo "Svn rev :" g:wd_rev
  345. call Svn("status " . g:src_root)
  346. echo "======================================="
  347. call Svn("info")
  348. endfunction
  349.  
  350. function SvnLog(...)
  351. if a:0 == 0
  352. let s:diffmode = 0
  353. call CmdInTmpFile("svn log " . g:src_root)
  354. else
  355. let s:diffmode = 1
  356. call CmdInTmpFile("svn log " . a:1)
  357. endif
  358. endfunction
  359.  
  360. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  361. " View patches according to svn revision number & git hash value
  362. command -nargs=0 ViewRevision call ViewRevision(expand("<cword>"))
  363. function ViewRevision(rev)
  364. if g:wd_type == "git"
  365. call CmdInTmpFile("git show " . a:rev)
  366. elseif g:wd_type == "svn"
  367. call CmdInTmpFile("svn diff -c " . a:rev)
  368. else
  369. call Warning("No source control")
  370. endif
  371. endfunction
  372.  
  373. " View blame result of current file
  374. command -nargs=0 Blame call Blame(expand("%"))
  375. function Blame(filename)
  376. let pos = getpos(".")
  377. if g:wd_type == "git"
  378. call CmdInTmpFile("git blame " . a:filename)
  379. elseif g:wd_type == "svn"
  380. call CmdInTmpFile("svn blame " . a:filename)
  381. else
  382. call Warning("No source control")
  383. return
  384. endif
  385. call setpos(".",pos)
  386. endfunction
  387.  
  388. " Git commit in vim
  389. command -nargs=0 Gitcommit call Gitcommit()
  390. function Gitcommit()
  391. echo system("git diff --stat")
  392. let msg = input("Commit msg: ","","tag")
  393. if strlen(msg) == 0
  394. echo "Commit cannelled"
  395. return
  396. endif
  397.  
  398. let cmd = "git commit -a -m \"" . msg . "\""
  399. echo cmd
  400. echo system(cmd)
  401. let g:wd_rev = GetRevision()
  402. endfunction
  403.  
  404. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  405. " tags and cscope database
  406. " let s:tagfile = tempname() . "-ztg"
  407. let s:tagfile = "tags"
  408. let s:csfile = "cscope.out"
  409. " let s:csfile = tempname() . "-zcs"
  410.  
  411. function RemoveFile(filename)
  412. if filereadable(a:filename)
  413. let ret = delete(a:filename)
  414. if ret == 0
  415. echo a:filename . " removed."
  416. else
  417. call Warning("Fail to remove " . a:filename)
  418. endif
  419. endif
  420. endfunction
  421.  
  422. " Function BuildTag(): Update tags and cscope database
  423. command -nargs=0 TagUpdate call BuildTag(g:src_root)
  424. function BuildTag(path)
  425. if cscope_connection()==1
  426. cs kill -1
  427. endif
  428.  
  429. call RemoveFile(s:tagfile)
  430. call RemoveFile(s:csfile)
  431. update
  432.  
  433. " Create tag file
  434. let cmd = "ctags -R --tag-relative=yes --extra=+q --fields=+ias "
  435. " let cmd = cmd . "-f " . s:tagfile . " " . a:path
  436. echo cmd
  437. echo system(cmd)
  438. if filereadable(s:tagfile)
  439. let cmd = "set tags=" . s:tagfile
  440. execute cmd
  441. echo "** Ctags updated **"
  442. else
  443. call Warning("** Failed to update ctags **")
  444. endif
  445.  
  446. " Create CS database
  447. let cmd = "cscope -Rb -v"
  448. " let cmd = "cscope -Rb -v -s "
  449. " let cmd = cmd . a:path." -f " . s:csfile
  450. echo cmd
  451. echo system(cmd)
  452. if filereadable(s:csfile)
  453. let cmd = "cs add " . s:csfile
  454. execute cmd
  455. echo "** CS updated **"
  456. else
  457. call Warning("** Failed to update CS **")
  458. endif
  459.  
  460. call UpdateSetting(a:path)
  461. endfunction
  462.  
  463. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  464. " Cleanup before vim exit
  465. autocmd VimLeavePre * call CleanupStuff()
  466. function CleanupStuff()
  467. if cscope_connection() == 1
  468. cs kill -1
  469. endif
  470.  
  471. call RemoveFile(s:tagfile)
  472. call RemoveFile(s:csfile)
  473. call RemoveFile(s:file_tmp)
  474. endfunction
  475.  
  476.  
  477. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  478. " Coding style: Format C code with your favorite style,format a whole file.
  479. command -nargs=0 Indentlzw call Indentlzw()
  480. function Indentlzw()
  481. let fcur = bufname("")
  482. let cmd = "indent -gnu -npsl -ts4 -i4 -bli0 -npcs -nut -fc1 -ncs -st " . fcur
  483. call CmdInTmpFile(cmd)
  484. set filetype=c
  485. endfunction
  486.  
  487. " Another style,change current file directly,no backup.
  488. command -nargs=0 Indentlzwex call Indentlzwex()
  489. function Indentlzwex()
  490. let fcur = bufname("")
  491. let cmd = "indent -gnu -npsl -ts4 -i4 -bli0 -npcs -nut -fc1 -ncs " . fcur
  492. setlocal autoread
  493. echo system(cmd)
  494. execute "checktime " . fcur
  495. redraw
  496. set autoread<
  497. endfunction
  498.  
  499. " Format selected code only.
  500. command -range -nargs=0 Rind <line1>,<line2>call Indentrange()
  501. function Indentrange() range
  502. let src = getline(a:firstline,a:lastline)
  503. let ftmp = tempname() . "-zi"
  504. call writefile(src,ftmp,'b')
  505. let cmd = "indent -gnu -npsl -ts4 -i4 -bli0 -npcs -nut -fc1 -ncs " . ftmp
  506. let result = system(cmd)
  507. execute a:firstline . "," . a:lastline . "d"
  508. execute a:firstline-1 . "read " . ftmp
  509. redraw
  510. call RemoveFile(ftmp)
  511. endfunction
  512.  
  513. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  514. " Display time
  515. command -nargs=0 Timex call Timex()
  516. function Timex()
  517. echo strftime("%Y-%m-%d %H:%M:%S (%W%w)")
  518. endfunction
  519.  
  520. " Online translation
  521. command -nargs=1 Dict call Dict(<f-args>)
  522. function Dict(word)
  523. let ftmp = tempname() . "-zd-" . a:word
  524. let cmd = "wget -O " . ftmp . " http://dict.baidu.com/s?wd=" . a:word
  525. echo system(cmd)
  526. execute "vi " . ftmp
  527. endfunction
  528.  
  529. " Online manpage
  530. command -nargs=+ Manp call Manp(<f-args>)
  531. function Manp(word,sec)
  532. let cachedir = "e:\\mydoc\\manpage\\"
  533. let fname = cachedir . a:word . "." . a:sec . ".man"
  534. if filereadable(fname)
  535. echo "file ready."
  536. else
  537. if a:sec == "" | let a:sec = "all" | endif
  538. let website = " \"http://man.he.net/?topic="
  539. let cmd = "wget -O " . fname . website . a:word . "§ion=" . a:sec . "\""
  540. echo system(cmd)
  541. endif
  542.  
  543. execute "vi " . fname
  544. setlocal filetype=man nomodifiable readonly
  545. endfunction
  546.  
  547. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  548. " Program build
  549. let s:buildprg='!make '
  550. if filereadable("build.bat") | let s:buildprg='!build.bat ' | endif
  551. if filereadable("a.bat") | let s:buildprg='!a.bat ' | endif
  552. command -nargs=? Build call Build(<q-args>)
  553. function Build(arg)
  554. exe s:buildprg . a:arg . ' 2>&1| tee ' . s:file_tmp
  555. exe 'cf ' . s:file_tmp
  556. endfunction
  557.  
  558. command -nargs=? -complete=file Cppcheck call Cppcheck(<f-args>)
  559. function Cppcheck(arg)
  560. exe '!cppcheck.exe --enable=all --template=gcc ' . a:arg . ' 2>&1| tee ' . s:file_tmp
  561. exe 'cf ' . s:file_tmp
  562. endfunction
  563.  
  564. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  565. " Temporary settings
  566. filetype plugin on
  567. set completeopt=menuone
  568.  
  569. nmap,t :tag Main_Code<cr>
  570. nmap,r :tag ProcFunc<cr>
  571. nmap,n :exec "tag " . expand("<cword>") . "_Proxy"<cr>
  572. command -nargs=0 Gsh !"C:\Program Files\Git\bin\sh.exe" --login -i
  573. command -nargs=0 Cmd exe '!start C:\tools\console2\console.exe -d ' . expand('%:p:h')
  574. command -nargs=? Bbb exe '!git commit -a -m "v: ' . <q-args> . '"'
  575.  
  576.  
  577. """"""""""""""""""""""""""""""""""""""""""""taglist插件配置
  578. "?let Tlist_Show_One_File = 1 ? ? ? ? ? ?"不同时显示多个文件的tag,只显示当前文件
  579. "?let Tlist_Exit_OnlyWindow = 1 ? ? ? ? ?"如果taglist窗口是最后一个窗口,则退出vim
  580. "?let Tlist_Use_Right_Window = 1 ? ? ? ? "在右侧窗口中显示taglist窗口
  581. " """""""""""""""""""""""""""""""""""""""Taglist快捷键定义
  582. " taglist打开与关闭的切换,TlistOpen打开
  583. " nmap tl :TlistToggle<cr> ?
  584.  
  585.  
  586. """"""""""""""""""""""""""""""""""""""""""""WinManager 文件管理器插件配置
  587. let g:winManagerWindowLayout='FileExplorer'
  588. nmap wm :WMToggle

  1. """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  2. "键盘命令
  3. """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  4.  
  5. nmap <leader>w :w!<cr>
  6. nmap <leader>f :find<cr>
  7.  
  8. " 映射全选+复制 ctrl+a
  9. map <C-A> ggVGY
  10. map! <C-A> <Esc>ggVGY
  11. map <F12> gg=G
  12. " 选中状态下 Ctrl+c 复制
  13. vmap <C-c> "+y
  14.  
  15. "新建标签
  16. map <M-F2> :tabnew<CR>
  17. "列出当前目录文件
  18. map <C-F3> :tabnew .<CR>
  19.  
  20. "共享剪贴板
  21. set clipboard+=unnamed
  22.  
  23. "自动保存
  24. set autowrite
  25. set ruler " 打开状态栏标尺
  26. set cursorline " 突出显示当前行
  27. set magic " 设置魔术
  28. set guioptions-=T " 隐藏工具栏
  29. set guioptions-=m " 隐藏菜单
  30. "set statusline=\ %<%F[%1*%M%*%n%R%H]%=\ %y\ %0(%{&fileformat}\ %{&encoding}\ %c:%l/%L%)\
  31. " 设置在状态行显示的信息
  32. set foldcolumn=0
  33. set foldmethod=indent
  34. set foldlevel=3
  35. set foldenable " 开始折叠

猜你在找的Bash相关文章