Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vimtaku/9364810 to your computer and use it in GitHub Desktop.
Save vimtaku/9364810 to your computer and use it in GitHub Desktop.
autocmd FileType unite call s:unite_my_settings()
function! s:unite_my_settings()"{{{
nmap <buffer> <Tab> <Plug>(unite_choose_action)<Plug>(unite_insert_enter)
imap <buffer> <Tab> <Plug>(unite_choose_action)<Plug>(unite_insert_enter)
endfunction"}}}
@vimtaku
Copy link
Author

vimtaku commented Mar 5, 2014

上記でもできるけど、本来は
call unite#custom#profile('action', 'context', {'start_insert' : 1})
こっちが正しい模様。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment