diff options
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -302,6 +302,9 @@ " * Remove Autocommands section as it's not used. " * Disable auditory.vim " +" 2015.07.12: +" * Add pick mappings +" " Pathogen @@ -471,6 +474,15 @@ nnoremap <leader>abt :<c-u>Unite -start-insert -immediately buffer tabopen<cr> let g:ctrlp_user_command = 'ag %s -l --nocolor --hidden -g ""' +" pick +nnoremap <leader>xd :call PickFile()<cr> +nnoremap <leader>xs :call PickFileSplit()<cr> +nnoremap <leader>xv :call PickFileVerticalSplit()<cr> +nnoremap <leader>xt :call PickFileTab()<cr> +nnoremap <leader>xb :call PickBuffer()<cr> +nnoremap <leader>x] :call PickTag()<cr> + + " PreserveNoEOL let g:PreserveNoEOL = 1 |