51 lines
1.7 KiB
VimL
51 lines
1.7 KiB
VimL
" Disable AutoComplPop.
|
|
let g:acp_enableAtStartup = 0
|
|
" Use neocomplcache.
|
|
let g:neocomplcache_enable_at_startup = 1
|
|
" Use smartcase.
|
|
let g:neocomplcache_enable_smart_case = 1
|
|
" Set minimum syntax keyword length.
|
|
let g:neocomplcache_min_syntax_length = 3
|
|
let g:neocomplcache_lock_buffer_name_pattern = '\*ku\*'
|
|
|
|
" Enable heavy features.
|
|
" Use camel case completion.
|
|
"let g:neocomplcache_enable_camel_case_completion = 1
|
|
" Use underbar completion.
|
|
"let g:neocomplcache_enable_underbar_completion = 1
|
|
|
|
" Define dictionary.
|
|
let g:neocomplcache_dictionary_filetype_lists = {
|
|
\ 'default' : '',
|
|
\ 'vimshell' : $HOME.'/.vimshell_hist',
|
|
\ 'scheme' : $HOME.'/.gosh_completions'
|
|
\ }
|
|
|
|
" Define keyword.
|
|
if !exists('g:neocomplcache_keyword_patterns')
|
|
let g:neocomplcache_keyword_patterns = {}
|
|
endif
|
|
let g:neocomplcache_keyword_patterns['default'] = '\h\w*'
|
|
|
|
" Map standard Ctrl-N completion to Cmd-Space
|
|
inoremap <D-Space> <C-n>
|
|
|
|
" Enable omni completion.
|
|
autocmd FileType css setlocal omnifunc=csscomplete#CompleteCSS
|
|
autocmd FileType html,markdown setlocal omnifunc=htmlcomplete#CompleteTags
|
|
autocmd FileType javascript setlocal omnifunc=javascriptcomplete#CompleteJS
|
|
autocmd FileType python setlocal omnifunc=pythoncomplete#Complete
|
|
autocmd FileType xml setlocal omnifunc=xmlcomplete#CompleteTags
|
|
|
|
" Enable heavy omni completion.
|
|
if !exists('g:neocomplcache_omni_patterns')
|
|
let g:neocomplcache_omni_patterns = {}
|
|
endif
|
|
let g:neocomplcache_omni_patterns.php = '[^. \t]->\h\w*\|\h\w*::'
|
|
let g:neocomplcache_omni_patterns.c = '[^.[:digit:] *\t]\%(\.\|->\)'
|
|
let g:neocomplcache_omni_patterns.cpp = '[^.[:digit:] *\t]\%(\.\|->\)\|\h\w*::'
|
|
|
|
" For perlomni.vim setting.
|
|
" https://github.com/c9s/perlomni.vim
|
|
let g:neocomplcache_omni_patterns.perl = '\h\w*->\h\w*\|\h\w*::'
|