Right now, vim-trailing-whitespace is complaining about the trailing space in the following line in my .vimrc:
set showbreak=↪\ \ \
However, the final space, after the third backslash, is part of the value that I am assigning to showbreak. Perhaps the whitespace-detection regexes should allow whitespace if it is preceded by a backslash?
/\s\+$/ " Current regex
/\\\@<!\s\+$/ " Proposed regex
Right now, vim-trailing-whitespace is complaining about the trailing space in the following line in my .vimrc:
However, the final space, after the third backslash, is part of the value that I am assigning to showbreak. Perhaps the whitespace-detection regexes should allow whitespace if it is preceded by a backslash?