You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current regex requires a space after the module name, but I have Emacs clean up all trailing whitespace, so it can never find the module. I think "^module\\s-+\\\([a-zA-Z0-9\\\.]+\\\)\\b" (using word boundary rather than a space) will do the right thing. I also replace the space after “module” with \\s-+ to allow for arbitrary whitespace.
The text was updated successfully, but these errors were encountered:
The current regex requires a space after the module name, but I have Emacs clean up all trailing whitespace, so it can never find the module. I think
"^module\\s-+\\\([a-zA-Z0-9\\\.]+\\\)\\b"
(using word boundary rather than a space) will do the right thing. I also replace the space after “module” with\\s-+
to allow for arbitrary whitespace.The text was updated successfully, but these errors were encountered: