diff options
author | w0rp <devw0rp@gmail.com> | 2020-08-29 20:45:45 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2020-08-29 20:45:45 +0100 |
commit | 33202a39f57a9cf75aed5896764976d56cb1ac7a (patch) | |
tree | c9491c535ce1300de6ade974ffbb7f1d320c0b11 | |
parent | 303bed6ec131f4046980f0508355d0f4043c9e3a (diff) | |
download | ale-33202a39f57a9cf75aed5896764976d56cb1ac7a.zip |
#2107 - Recommend <C-c> instead, which avoids autocmd functions
-rw-r--r-- | doc/ale.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ale.txt b/doc/ale.txt index f7fae380..d45cada7 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -477,7 +477,7 @@ function in your |vimrc| file to force insert completion instead, like so: > endif " Exit and re-enter insert mode, and use insert completion - return "\<Esc>a\<C-n>" + return "\<C-c>a\<C-n>" endfunction inoremap <silent> <C-n> <C-R>=SmartInsertCompletion()<CR> |