Created
May 6, 2012 15:50
-
-
Save aharisu/2623037 to your computer and use it in GitHub Desktop.
gosh_completeのためのvimrc設定
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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