Closed runarberg closed 7 years ago
Apparently \s is any whitespace character (including newline), not \s
\s
https://www.gnu.org/software/emacs/manual/html_node/elisp/Regexp-Backslash.html
\\s- and [[:space:]] are also equivalent.
\\s-
[[:space:]]
Apparently
\s
is any whitespace character (including newline), not\s
https://www.gnu.org/software/emacs/manual/html_node/elisp/Regexp-Backslash.html