diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2021-04-26 21:18:24 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2021-04-26 21:18:24 +0200 |
commit | beee3e97d9bd204f30981b0e7d9794b3bb5297a4 (patch) | |
tree | 05a7b299f9a66a052289938c0a8fd3e18c0b0327 | |
parent | 87f317e1f89f4b6f1a247539e874675df105a569 (diff) |
Use upstream taglist plugin, add mapping for :TlistToggle
-rw-r--r-- | .vimrc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -126,6 +126,8 @@ map! <C-x><SPACE> map <C-p> :Files<CR> map <C-f> :NERDTreeFind<CR> +map <Leader>tl :TlistToggle<CR> + " Remove all trailing whitespaces in file map <leader>w :%s/\s\+$//<CR>^ map! <leader>w <ESC>:%s/\s\+$//<CR> @@ -195,7 +197,7 @@ Plug 'airblade/vim-gitgutter' " git status gutter Plug 'tpope/vim-fugitive' " git commands Plug 'tpope/vim-rhubarb' " GitHub integration Plug 'tpope/vim-commentary' " comment out stuff -Plug 'vim-scripts/taglist.vim' +Plug 'yegappan/taglist' " code browser using ctags/cscope Plug 'joestringer/cscope_maps' " cscope maps " fzf (https://github.com/junegunn/fzf.vim) |