mirror of
https://github.com/neovim/neovim.git
synced 2025-09-05 19:08:15 +00:00
fix(mappings): fix check for cpo-B inverted in completion
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user