From: R. Steve McKown Date: Mon, 18 Jan 2016 04:49:31 +0000 (-0700) Subject: vim: change unite mappings X-Git-Url: https://oss.titaniummirror.com/gitweb?p=smckown%2Fdotfiles.git;a=commitdiff_plain;h=8d37d1f6276a06e2ea4f07ed82fcb1ee67398c20 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. --- 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()