diff options
| author | Teddy Wing | 2015-07-13 00:03:13 -0400 | 
|---|---|---|
| committer | Teddy Wing | 2015-07-13 00:06:11 -0400 | 
| commit | 7dd63ba1df411c6380b4649075e4c37a7894c4d0 (patch) | |
| tree | 3c134a0de2906e5ee6ca60db8c07899552633166 /vimrc | |
| parent | d8e147112c139e410066f17b38e1fa80611bb295 (diff) | |
| download | dotvim-7dd63ba1df411c6380b4649075e4c37a7894c4d0.tar.bz2 | |
vimrc: Add mappings for pick.vim
Mappings to run pick and open a buffer from it in various
configurations.
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 | 
