summaryrefslogtreecommitdiffstats
path: root/vimrc
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-11-06 01:26:12 -0500
committerJesse Luehrs <doy@tozt.net>2013-11-06 01:26:30 -0500
commit110958a1af11aef678abcbda61e9da72428da77b (patch)
tree78334d191f3fcd64e0c403c42972711f82961ef9 /vimrc
parentceeb3c95952afb478ce2777bc84e01368ef7e7b5 (diff)
downloadconf-110958a1af11aef678abcbda61e9da72428da77b.tar.gz
conf-110958a1af11aef678abcbda61e9da72428da77b.zip
mapping escape makes shift+tab not work, apparently
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index 1030ede..466783a 100644
--- a/vimrc
+++ b/vimrc
@@ -742,7 +742,7 @@ function! s:unite_my_settings()
nmap <silent><buffer> \ <Plug>(unite_exit)
imap <silent><buffer> <Tab> <Plug>(unite_select_next_line)
imap <silent><buffer> <S-Tab> <Plug>(unite_select_previous_line)
- imap <silent><buffer> <Esc> <Plug>(unite_exit)
+ autocmd InsertLeave <buffer> call feedkeys("\<Plug>(unite_exit)")
endfunction
nnoremap <silent>t :Unite -silent -profile-name=with_dir buffer file_rec/async<CR>
nnoremap <silent>f :Unite -silent buffer file<CR>