Change Cmd-Space to Ctrl-Space for autocomplete

This commit is contained in:
Yan Pritzker
2015-06-02 19:03:09 -05:00
parent d316096428
commit d74ab05613
3 changed files with 7 additions and 6 deletions

View File

@@ -12,8 +12,8 @@ let g:neocomplete#max_list = 5
" Set minimum syntax keyword length.
let g:neocomplete#auto_completion_start_length = 3
" Map standard Ctrl-N completion to Cmd-Space
inoremap <D-Space> <C-n>
" Map standard Ctrl-N completion to Ctrl-Space
inoremap <C-Space> <C-n>
" This makes sure we use neocomplete completefunc instead of
" the one in rails.vim, otherwise this plugin will crap out.