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
Currently there is a very annoying bug with ; style comments — autocompletion doesn't turn itself off because it doesn't recognize the last caret position as a comment.line.ahk scope
(so, it's only turned off when you edit comments since then you move away from the end of the line)
changing <string>(^\s*|\s+)(;)(.*)$</string>
to <string>(^\s*|\s+)(;)(.*)(\n?)$</string>
fixes it for me, so I'll submit a patch, though not 100% certain this is the proper fix
The text was updated successfully, but these errors were encountered:
Currently there is a very annoying bug with
;
style comments — autocompletion doesn't turn itself off because it doesn't recognize the last caret position as acomment.line.ahk
scope(so, it's only turned off when you edit comments since then you move away from the end of the line)
changing
<string>(^\s*|\s+)(;)(.*)$</string>
to
<string>(^\s*|\s+)(;)(.*)(\n?)$</string>
fixes it for me, so I'll submit a patch, though not 100% certain this is the proper fix
The text was updated successfully, but these errors were encountered: