diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-24 16:12:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-24 16:12:15 +0800 |
commit | 79f32c20f03965e2733a8c778b8e3478acf9467f (patch) | |
tree | ba75c2b069204fa95045ea9b2b9f5b44fe9a9fc5 /src/nvim/edit.c | |
parent | a4e4609d62c38b7b949e5c8079dfa5f10803bdcd (diff) | |
parent | 9ac44c7f5daf28cd155942dbc697b51c6b3afdc0 (diff) | |
download | rneovim-79f32c20f03965e2733a8c778b8e3478acf9467f.tar.gz rneovim-79f32c20f03965e2733a8c778b8e3478acf9467f.tar.bz2 rneovim-79f32c20f03965e2733a8c778b8e3478acf9467f.zip |
Merge pull request #19921 from zeertzjq/vim-8.2.3937
vim-patch:8.2.{3937,3944}: Insert mode completion refactoring
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index a06cef82a2..545f3c0d9a 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -5654,7 +5654,7 @@ static char_u *do_insert_char_pre(int c) return res; } -bool can_cindent_get(void) +bool get_can_cindent(void) { return can_cindent; } |