From 8d37d1f6276a06e2ea4f07ed82fcb1ee67398c20 Mon Sep 17 00:00:00 2001 From: "R. Steve McKown" Date: Sun, 17 Jan 2016 21:49:31 -0700 Subject: [PATCH] vim: change unite mappings * 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 4c3e4fd..94d8fbb 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -424,10 +424,10 @@ nnoremap uy :Unite -no-split -buffer-name=yank history/yank nnoremap ub :Unite -no-split -start-insert -buffer-name=buffer buffer nnoremap uo :Unite -no-split -start-insert -buffer-name=outline outline nnoremap ul :Unite -no-split -start-insert -buffer-name=lines line -nnoremap uc :Unite -no-split -buffer-name=quicklist qf +nnoremap uc :Unite -no-split -start-insert -buffer-name=quicklist qf nnoremap ut :Unite -no-split -start-insert -buffer-name=tags tag -nnoremap : :Unite -start-insert -direction=dynamicbottom -buffer-name=command history/command -nnoremap / :Unite -start-insert -direction=dynamicbottom -buffer-name=search history/search +nnoremap : :Unite -start-insert -buffer-name=command history/command +nnoremap / :Unite -start-insert -buffer-name=search history/search " Custom mappings for the unite buffer autocmd FileType unite call s:unite_settings() -- 2.39.2