immerrr / lua-mode

Emacs major mode for editing Lua
http://immerrr.github.io/lua-mode
GNU General Public License v3.0
314 stars 74 forks source link

Consider point as inside comment if it is inside "--" opener #181

Closed immerrr closed 3 years ago

immerrr commented 3 years ago

This PR tweaks all comment-related functions to return non-nil if point is between hyphens in the -- comment opener, e.g.

-|- my comment
 ^
 `-- point

Emacs's syntax-ppss only returns comment state if point is after both delimiters, because by design it does not look ahead.