mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
window: Skip backslash only if followed by space
This commit is contained in:
parent
34904efd9d
commit
ce17037e3e
@ -4918,7 +4918,7 @@ file_name_in_line (
|
||||
len = 0;
|
||||
while (vim_isfilec(ptr[len]) || (ptr[len] == '\\' && ptr[len + 1] == ' ')
|
||||
|| ((options & FNAME_HYP) && path_is_url((char *)ptr + len))) {
|
||||
if (ptr[len] == '\\') {
|
||||
if (ptr[len] == '\\' && ptr[len + 1] == ' ') {
|
||||
// Skip over the "\" in "\ ".
|
||||
++len;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user