diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-02-25 23:03:14 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-03-01 20:02:10 -0500 |
commit | c40bb2de7ac5cfb3e2b6d45591f0fea8642be1cd (patch) | |
tree | e1d7f8e5037ce6c610fb61b814e7cbf31b902b34 /src/nvim/charset.c | |
parent | b376bb49b5a1f71b05389857f324bc6820ede747 (diff) | |
download | rneovim-c40bb2de7ac5cfb3e2b6d45591f0fea8642be1cd.tar.gz rneovim-c40bb2de7ac5cfb3e2b6d45591f0fea8642be1cd.tar.bz2 rneovim-c40bb2de7ac5cfb3e2b6d45591f0fea8642be1cd.zip |
vim-patch:8.1.0939: no completion for sign group names
Problem: No completion for sign group names.
Solution: Add completion for sign group names and buffer names. (Yegappan
Lakshmanan, closes vim/vim#3980)
https://github.com/vim/vim/commit/3678f65d43d10b36dc62738aab2f341fa1e18a32
Diffstat (limited to 'src/nvim/charset.c')
-rw-r--r-- | src/nvim/charset.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/charset.c b/src/nvim/charset.c index 0f9e2e23c0..f9d5adbc12 100644 --- a/src/nvim/charset.c +++ b/src/nvim/charset.c @@ -1570,6 +1570,7 @@ char_u* skiptohex(char_u *q) /// /// @return Pointer to the next whitespace or NUL character. char_u *skiptowhite(const char_u *p) + FUNC_ATTR_NONNULL_ALL { while (*p != ' ' && *p != '\t' && *p != NUL) { p++; |