From: R. Steve McKown Date: Thu, 14 Jan 2016 19:46:40 +0000 (-0700) Subject: vim/vimrc: add bindings for vim history search X-Git-Url: https://oss.titaniummirror.com/gitweb?p=smckown%2Fdotfiles.git;a=commitdiff_plain;h=c0b032d57e2a29cf272f60ab6c33f1c6cbfb7842 vim/vimrc: add bindings for vim history search * Replace 'q:' and 'q/' bindings * Add u: and u/ bindings --- diff --git a/vim/vimrc b/vim/vimrc index 0b689fc..0468be2 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -420,6 +420,11 @@ nnoremap uf :Unite -no-split -start-insert -buffer-name=files file_ 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 u: :Unite -no-split -start-insert -buffer-name=command history/command +nnoremap u/ :Unite -no-split -start-insert -buffer-name=search history/search +nnoremap q: :Unite -start-insert -direction=dynamicbottom -buffer-name=command history/command +nnoremap q/ :Unite -start-insert -direction=dynamicbottom -buffer-name=search history/search " Custom mappings for the unite buffer autocmd FileType unite call s:unite_settings()