diff options
author | w0rp <devw0rp@gmail.com> | 2020-08-29 17:36:25 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2020-08-29 17:36:25 +0100 |
commit | 25b572b3bf3cc0229ed836eb3fa80c4c74f2c247 (patch) | |
tree | 0a2a31c501d28e3ec6786bafc006129a80e26927 /autoload | |
parent | 6e2e51b154d526c1ab0b506bb2110b45421b7a06 (diff) | |
download | ale-25b572b3bf3cc0229ed836eb3fa80c4c74f2c247.zip |
Close #3205 - Avoid inserting completions by default
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/completion.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/completion.vim b/autoload/ale/completion.vim index 5035bbf0..c2cfd74a 100644 --- a/autoload/ale/completion.vim +++ b/autoload/ale/completion.vim @@ -5,7 +5,7 @@ scriptencoding utf-8 " The omnicompletion menu is shown through a special Plug mapping which is " only valid in Insert mode. This way, feedkeys() won't send these keys if you " quit Insert mode quickly enough. -inoremap <silent> <Plug>(ale_show_completion_menu) <C-x><C-o> +inoremap <silent> <Plug>(ale_show_completion_menu) <C-x><C-o><C-p> " If we hit the key sequence in normal mode, then we won't show the menu, so " we should restore the old settings right away. nnoremap <silent> <Plug>(ale_show_completion_menu) :call ale#completion#RestoreCompletionOptions()<CR> |