# HG changeset patch # User Ludovic Chabant # Date 1525057967 25200 # Node ID 4b816faa06e2d278e4608efc617de09347fb7155 # Parent f1f95a19fffeab6353d452aeafe42755de26ce8f Remove CtrlP, add statusline refresh. diff -r f1f95a19fffe -r 4b816faa06e2 install.cfg --- 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 diff -r f1f95a19fffe -r 4b816faa06e2 vim/bundle.pathogenrc --- 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 diff -r f1f95a19fffe -r 4b816faa06e2 vim/vimrc --- 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 a :Ack! +nnoremap a :Ack! nnoremap f :Ack! // vnoremap f "zy:Ack! /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 {{{