ahkpp
ahkpp copied to clipboard
Autocomplete provides non-included functions
As a followup you seem to have included autocomplete, and because you haven't verified the function list for correctness, typing part of a function and (
will complete to an incorrect function. For example, in File A I have the func abc, and in file B, I've defined abcdefghij. Every time I type abc + (
I'll get the rest of the alphabet to j
. This is due to the fact that in file B, there are no includes, and file A and B are included in main.ahk. Therefore what should be valid behavior in AHK leads to annyances while typing.
Originally posted by @iseahound in https://github.com/mark-wiemer-org/ahkpp/issues/494#issuecomment-2336468305