Created
October 22, 2013 09:51
-
-
Save kenjiskywalker/7097966 to your computer and use it in GitHub Desktop.
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
| "起動時に有効 | |
| " Disable AutoComplPop. | |
| let g:acp_enableAtStartup = 0 | |
| let g:neocomplcache_enable_at_startup = 1 | |
| "ポップアップメニューで表示される候補の数。初期値は100 | |
| let g:neocomplcache_max_list = 10 | |
| "自動補完を行う入力数を設定。初期値は2 | |
| let g:neocomplcache_auto_completion_start_length = 2 | |
| "手動補完時に補完を行う入力数を制御。値を小さくすると文字の削除時に重くなる | |
| let g:neocomplcache_manual_completion_start_length = 3 | |
| "バッファや辞書ファイル中で、補完の対象となるキーワードの最小長さ。初期値は4。 | |
| let g:neocomplcache_min_keyword_length = 4 | |
| "シンタックスファイル中で、補完の対象となるキーワードの最小長さ。初期値は4。 | |
| let g:neocomplcache_min_syntax_length = 4 | |
| "1:補完候補検索時に大文字・小文字を無視する | |
| let g:neocomplcache_enable_ignore_case = 1 | |
| "入力に大文字が入力されている場合、大文字小文字の区別をする | |
| let g:neocomplcache_enable_smart_case = 1 | |
| "改行はしない | |
| """ Enable heavy omni completion. | |
| if !exists('g:neocomplcache_omni_patterns') | |
| let g:neocomplcache_omni_patterns = {} | |
| endif | |
| """ ruby | |
| let g:neocomplcache_omni_patterns.ruby = '[^. *\t]\.\h\w*\|\h\w*::' | |
| """ perl | |
| let g:neocomplcache_omni_patterns.perl = '\h\w*->\h\w*\|\h\w*::' | |
| let g:neocomplcache_force_overwrite_completefunc = 1 | |
| if !exists('g:neocomplcache_omni_patterns') | |
| let g:neocomplcache_omni_patterns = {} | |
| endif | |
| """ golang | |
| if !exists('g:neocomplcache_force_omni_patterns') | |
| let g:neocomplcache_force_omni_patterns = {} | |
| endif | |
| let g:neocomplcache_force_omni_patterns.go = '\h\w*\.\?' | |
| """ clang | |
| if !exists('g:neocomplcache_force_omni_patterns') | |
| let g:neocomplcache_force_omni_patterns = {} | |
| endif | |
| let g:neocomplcache_force_omni_patterns.c = | |
| \ '[^.[:digit:] *\t]\%(\.\|->\)' | |
| let g:neocomplcache_force_omni_patterns.cpp = | |
| \ '[^.[:digit:] *\t]\%(\.\|->\)\|\h\w*::' | |
| let g:neocomplcache_force_omni_patterns.objc = | |
| \ '[^.[:digit:] *\t]\%(\.\|->\)' | |
| let g:neocomplcache_force_omni_patterns.objcpp = | |
| \ '[^.[:digit:] *\t]\%(\.\|->\)\|\h\w*::' | |
| let g:clang_complete_auto = 0 | |
| let g:clang_auto_select = 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment