mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07: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;
|
||||
ga_init(&ga, 1, 40);
|
||||
|
||||
bool cpo_bslash = !(cpo_flags&FLAG_CPO_BSLASH);
|
||||
bool cpo_bslash = cpo_flags & FLAG_CPO_BSLASH;
|
||||
|
||||
for (; *str; str++) {
|
||||
int c = *str;
|
||||
|
Loading…
Reference in New Issue
Block a user