mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:8.1.1772: options test still fails on MS-Windows
Problem: Options test still fails on MS-Windows.
Solution: Check buffer-local value of 'completeslash'.
b78564d022
This commit is contained in:
parent
089f4f8e4a
commit
c203f89ace
@ -3192,8 +3192,9 @@ ambw_end:
|
|||||||
completeopt_was_set();
|
completeopt_was_set();
|
||||||
}
|
}
|
||||||
#ifdef BACKSLASH_IN_FILENAME
|
#ifdef BACKSLASH_IN_FILENAME
|
||||||
} else if (varp == &curbuf->b_p_csl) { // 'completeslash'
|
} else if (gvarp == &p_csl) { // 'completeslash'
|
||||||
if (check_opt_strings(p_csl, p_csl_values, false) != OK) {
|
if (check_opt_strings(p_csl, p_csl_values, false) != OK
|
||||||
|
|| check_opt_strings(curbuf->b_p_csl, p_csl_values, false) != OK) {
|
||||||
errmsg = e_invarg;
|
errmsg = e_invarg;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user