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
Describe the bug
A clear and concise description of what the bug is.
To Reproduce ./gwhisper 127.0.0.1 some.service ReadF + TAB still shows ReadFile ReadFileProperties ReadFanBut after adding an "i" I getReadFile`
as completion.
subsequent tabs complete as if "ReadFile" was selected.
The text was updated successfully, but these errors were encountered:
OK After detailed analysis I traced this down to several problems of the Grammar Injector and all elements calling it.
Grammar injector did parse grammar for a candidate first then the other candidate/winner continued parsing with the wrong grammar from the previous candidate. I temporarily fixed this by always injecting new grammar on each parse.
Grammar injector did not have enough information for injecting grammar for some candidates (i.e. from a concat child). I did not fix this, but it is not really visible
I reverted the fix for 1 again due to huge performance impact on slow network connections. Need to find a better solution.
this is still a problem. However it merely affects auto-completion the tool is still usable in those scenarios by explicitly typing the previously suggested name.
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
./gwhisper 127.0.0.1 some.service ReadF + TAB still shows
ReadFile ReadFileProperties ReadFanBut after adding an "i" I get
ReadFile`as completion.
subsequent tabs complete as if "ReadFile" was selected.
The text was updated successfully, but these errors were encountered: