]> oss.titaniummirror.com Git - smckown/dotfiles.git/commitdiff
vim: change unite mappings
authorR. Steve McKown <rsmckown@gmail.com>
Mon, 18 Jan 2016 04:49:31 +0000 (21:49 -0700)
committerR. Steve McKown <rsmckown@gmail.com>
Mon, 18 Jan 2016 04:49:31 +0000 (21:49 -0700)
* Start quicklist search in insert mode.  Interactive filtering is
  probably the reason Unite! search of quickfix is better than normal
  quickfix functionality.
* Ditch dynamicbottom property for Unite! searching of command and
  search histories.  Make all the Unite! search behaviors more
  consistent across usages.

vim/vimrc

index 4c3e4fd1eecd4c72d44e7b8118e90559957569ab..94d8fbb141de115b86380e245e8060e19ff2ec0a 100644 (file)
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -424,10 +424,10 @@ nnoremap <leader>uy :<C-u>Unite -no-split -buffer-name=yank history/yank<cr>
 nnoremap <leader>ub :<C-u>Unite -no-split -start-insert -buffer-name=buffer buffer<cr>
 nnoremap <leader>uo :<C-u>Unite -no-split -start-insert -buffer-name=outline outline<cr>
 nnoremap <leader>ul :<C-u>Unite -no-split -start-insert -buffer-name=lines line<cr>
-nnoremap <leader>uc :<C-u>Unite -no-split -buffer-name=quicklist qf<cr>
+nnoremap <leader>uc :<C-u>Unite -no-split -start-insert -buffer-name=quicklist qf<cr>
 nnoremap <leader>ut :<C-u>Unite -no-split -start-insert -buffer-name=tags tag<cr>
-nnoremap <leader>: :<C-u>Unite -start-insert -direction=dynamicbottom -buffer-name=command history/command<cr>
-nnoremap <leader>/ :<C-u>Unite -start-insert -direction=dynamicbottom -buffer-name=search history/search<cr>
+nnoremap <leader>: :<C-u>Unite -start-insert -buffer-name=command history/command<cr>
+nnoremap <leader>/ :<C-u>Unite -start-insert -buffer-name=search history/search<cr>
 
 " Custom mappings for the unite buffer
 autocmd FileType unite call s:unite_settings()