Switch vim keys for Buffer/File opening
Switch fuzzy opening of buffers to <leader>f, and set opening files in work directory to <leader>F. Switching these two is intended to allow easier access to buffer switching, which I use much more often than file access, especially when working over a longer time-frame in vim.
This commit is contained in:
parent
a442de0292
commit
368032a73c
1 changed files with 2 additions and 2 deletions
|
@ -369,8 +369,8 @@ nnoremap <leader><C-e> :NERDTreeVCS<CR>
|
|||
nnoremap <leader>E :NERDTreeFind<CR>
|
||||
|
||||
" Call leaderf with <leader-f> (necessary to enable leaderf lazyloading)
|
||||
nnoremap <leader>f :LeaderfFile<cr>
|
||||
nnoremap <leader>F :LeaderfBuffer<cr>
|
||||
nnoremap <leader>F :LeaderfFile<cr>
|
||||
nnoremap <leader>f :LeaderfBuffer<cr>
|
||||
|
||||
function! SearchWiki()
|
||||
let l:curpath=getcwd()
|
||||
|
|
Loading…
Reference in a new issue