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
Some selected text values don't seem to trigger search when I open help
Reproduction steps
Steps to reproduce the behavior:
Select/highlight "potato" in some AHK file (including the quotes)
Open help
Expected behavior
Search for "potato" is made in help
Additional context
Help opens but keeps the previous search. This is because when we try to inject "potato" into the file, we get searchText := ""potato"" which in AHK is a syntax error.
Workaround: Don't select values that start or end with ".
thqby gets around this by searching via JS. Ref #78.
The text was updated successfully, but these errors were encountered:
Description
Some selected text values don't seem to trigger search when I open help
Reproduction steps
Steps to reproduce the behavior:
"potato"
in some AHK file (including the quotes)Expected behavior
Search for
"potato"
is made in helpAdditional context
Help opens but keeps the previous search. This is because when we try to inject
"potato"
into the file, we getsearchText := ""potato""
which in AHK is a syntax error.Workaround: Don't select values that start or end with
"
.thqby gets around this by searching via JS. Ref #78.
The text was updated successfully, but these errors were encountered: