mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
fix(mappings): fix check for cpo-B inverted in completion
This commit is contained in:
parent
dea311b33d
commit
df666521ac
@ -1167,7 +1167,7 @@ static char *translate_mapping(char_u *str, int cpo_flags)
|
|||||||
garray_T ga;
|
garray_T ga;
|
||||||
ga_init(&ga, 1, 40);
|
ga_init(&ga, 1, 40);
|
||||||
|
|
||||||
bool cpo_bslash = !(cpo_flags&FLAG_CPO_BSLASH);
|
bool cpo_bslash = cpo_flags & FLAG_CPO_BSLASH;
|
||||||
|
|
||||||
for (; *str; str++) {
|
for (; *str; str++) {
|
||||||
int c = *str;
|
int c = *str;
|
||||||
|
Loading…
Reference in New Issue
Block a user