From c0b032d57e2a29cf272f60ab6c33f1c6cbfb7842 Mon Sep 17 00:00:00 2001 From: "R. Steve McKown" Date: Thu, 14 Jan 2016 12:46:40 -0700 Subject: [PATCH] vim/vimrc: add bindings for vim history search * Replace 'q:' and 'q/' bindings * Add u: and u/ bindings --- vim/vimrc | 5 +++++ 1 file changed, 5 insertions(+) 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() -- 2.39.2