mirror of
https://github.com/neovim/neovim.git
synced 2026-07-17 06:31:16 +00: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:
@@ -3192,8 +3192,9 @@ ambw_end:
|
||||
completeopt_was_set();
|
||||
}
|
||||
#ifdef BACKSLASH_IN_FILENAME
|
||||
} else if (varp == &curbuf->b_p_csl) { // 'completeslash'
|
||||
if (check_opt_strings(p_csl, p_csl_values, false) != OK) {
|
||||
} else if (gvarp == &p_csl) { // 'completeslash'
|
||||
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;
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user