changeset 440:4b816faa06e2

Remove CtrlP, add statusline refresh.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 29 Apr 2018 20:12:47 -0700
parents f1f95a19fffe
children a3c6869085c1
files install.cfg vim/bundle.pathogenrc vim/vimrc
diffstat 3 files changed, 7 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/install.cfg	Sun Apr 29 22:11:27 2018 -0700
+++ b/install.cfg	Sun Apr 29 20:12:47 2018 -0700
@@ -22,8 +22,6 @@
 badwolf = https://bitbucket.org/sjl/badwolf
 colorschemes = [git]https://github.com/ludovicchabant/vim-colorschemes.git
 commentary = [git]https://github.com/tpope/vim-commentary.git
-ctrlp = [git]https://github.com/ludovicchabant/ctrlp.vim.git
-ctrlp-py-matcher = [git]https://github.com/ludovicchabant/ctrlp-py-matcher.git
 easymotion = [git]https://github.com/Lokaltog/vim-easymotion.git
 fish = [git]https://github.com/dag/vim-fish.git
 fugitive = [git]https://github.com/tpope/vim-fugitive.git
--- a/vim/bundle.pathogenrc	Sun Apr 29 22:11:27 2018 -0700
+++ b/vim/bundle.pathogenrc	Sun Apr 29 20:12:47 2018 -0700
@@ -1,3 +1,1 @@
--ctrlp
--ctrlp-py-matcher
 -interestingwords
--- a/vim/vimrc	Sun Apr 29 22:11:27 2018 -0700
+++ b/vim/vimrc	Sun Apr 29 20:12:47 2018 -0700
@@ -239,7 +239,7 @@
     let g:ackprg = 'ag --vimgrep'
 endif
 
-nnoremap <Leader>a :Ack!<Space>
+nnoremap <leader>a :Ack!<Space>
 nnoremap <leader>f :Ack! /<C-R><C-W>/ 
 vnoremap <leader>f "zy:Ack! /<C-R>z/ 
 
@@ -306,6 +306,12 @@
 let g:gutentags_ctags_extra_args = ['--options='.ludo#localpath('ctagsrc')]
 let g:gutentags_ctags_exclude_wildignore = 0
 
+augroup GutentagsStatusLineRefresher
+    autocmd!
+    autocmd User GutentagsUpdating call lightline#update()
+    autocmd User GutentagsUpdated call lightline#update()
+augroup END
+
 " }}}
 
 " Syntastic {{{