aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2015-07-13 00:03:13 -0400
committerTeddy Wing2015-07-13 00:06:11 -0400
commit7dd63ba1df411c6380b4649075e4c37a7894c4d0 (patch)
tree3c134a0de2906e5ee6ca60db8c07899552633166
parentd8e147112c139e410066f17b38e1fa80611bb295 (diff)
downloaddotvim-7dd63ba1df411c6380b4649075e4c37a7894c4d0.tar.bz2
vimrc: Add mappings for pick.vim
Mappings to run pick and open a buffer from it in various configurations.
-rw-r--r--vimrc12
1 files changed, 12 insertions, 0 deletions
diff --git a/vimrc b/vimrc
index 10e679c..ba53677 100644
--- a/vimrc
+++ b/vimrc
@@ -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