diff options
author | Guangxiong Lin <[email protected]> | 2022-04-13 13:46:59 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2022-04-13 13:46:59 +0800 |
commit | 82849a2dea269ea3f9dfd783d23dd3c455ad8be4 (patch) | |
tree | 0bbd0fee814281ddb047a57ca1ef1cc1aaf3779e | |
parent | c4739d58a2fa7788dd2855e5a600280b6b959733 (diff) | |
download | dotfiles-82849a2dea269ea3f9dfd783d23dd3c455ad8be4.tar.gz dotfiles-82849a2dea269ea3f9dfd783d23dd3c455ad8be4.tar.bz2 dotfiles-82849a2dea269ea3f9dfd783d23dd3c455ad8be4.zip |
Don't autopop quickfix window in vim cscope
-rw-r--r-- | .vim/after/plugin/cscope.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.vim/after/plugin/cscope.vim b/.vim/after/plugin/cscope.vim index 8215e1d..b0c9392 100644 --- a/.vim/after/plugin/cscope.vim +++ b/.vim/after/plugin/cscope.vim @@ -3,9 +3,9 @@ set cscopetag nmap <leader>css :cs find s <C-R>=expand("<cword>")<CR><CR> nmap <leader>csg :cs find g <C-R>=expand("<cword>")<CR><CR> -nmap <leader>csc :cs find c <C-R>=expand("<cword>")<CR><CR> :copen<CR> -nmap <leader>cst :cs find t <C-R>=expand("<cword>")<CR><CR> :copen<CR> -nmap <leader>cse :cs find e <C-R>=expand("<cword>")<CR><CR> :copen<CR> +nmap <leader>csc :cs find c <C-R>=expand("<cword>")<CR><CR> +nmap <leader>cst :cs find t <C-R>=expand("<cword>")<CR><CR> +nmap <leader>cse :cs find e <C-R>=expand("<cword>")<CR><CR> nmap <leader>csf :cs find f <C-R>=expand("<cfile>")<CR><CR> nmap <leader>csi :cs find i ^<C-R>=expand("<cfile>")<CR>$<CR> nmap <leader>csd :cs find d <C-R>=expand("<cword>")<CR><CR> |