comparison vim/vimrc @ 441:a3c6869085c1

Add shortcut for tags.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 29 Apr 2018 22:31:49 -0700
parents 4b816faa06e2
children decee05a5595
comparison
equal deleted inserted replaced
440:4b816faa06e2 441:a3c6869085c1
725 nnoremap <Tab> :History<cr> 725 nnoremap <Tab> :History<cr>
726 726
727 " Replace the default `Tags` command, which requires Perl, with 727 " Replace the default `Tags` command, which requires Perl, with
728 " something I can use, based on Python. 728 " something I can use, based on Python.
729 command! -bang -nargs=* Tags call ludo#run_fzf_tags(<q-args>, <bang>0) 729 command! -bang -nargs=* Tags call ludo#run_fzf_tags(<q-args>, <bang>0)
730 nnoremap <silent> <C-u> :Tags<cr>
730 else 731 else
731 call ludo#error( 732 call ludo#error(
732 \"FZF is installed and enabled, but the Vim plugin ". 733 \"FZF is installed and enabled, but the Vim plugin ".
733 \"isn't loaded... add it to your `vimrc-local-pre`.") 734 \"isn't loaded... add it to your `vimrc-local-pre`.")
734 endif 735 endif