AdamNiederer / vue-html-mode

A major mode for editing vue templates
GNU General Public License v3.0
25 stars 3 forks source link

Use correct syntax class for whitespace #3

Closed runarberg closed 7 years ago

runarberg commented 7 years ago

Apparently \s is any whitespace character (including newline), not \s

https://www.gnu.org/software/emacs/manual/html_node/elisp/Regexp-Backslash.html

runarberg commented 7 years ago

\\s- and [[:space:]] are also equivalent.