Skip to content

Instantly share code, notes, and snippets.

@aharisu
Created May 6, 2012 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aharisu/2623037 to your computer and use it in GitHub Desktop.
Save aharisu/2623037 to your computer and use it in GitHub Desktop.
gosh_completeのためのvimrc設定
"for gosh_complete
"別バッファからinfo画面を操作するためのキーマップ
nmap <C-K> <Plug>(gosh_info_row_up)
nmap <C-J> <Plug>(gosh_info_row_down)
nmap <C-C> <Plug>(gosh_info_close)
"現在バッファと関連するシンボルをuniteで検索する
nmap gi <Plug>(gosh_info_start_search)
"カーソル位置のテキストを初期入力として、現在バッファと関連するシンボルを検索する
nmap gk <Plug>(gosh_info_start_search_with_cur_keyword)
"別バッファからinfo画面を操作するためのキーマップ
imap <C-K> <Plug>(gosh_info_row_up)
imap <C-J> <Plug>(gosh_info_row_down)
imap <C-C> <Plug>(gosh_info_close)
"カーソル位置のテキストを初期入力として、現在バッファと関連するシンボルを検索する
imap <C-A> <Plug>(gosh_info_start_search_with_cur_keyword)
"
"for Unite
"適度に速い更新のほうがいい
let g:unite_update_time=100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment