I want a text expander feature like an intellisense that I could use where I can continually type until I pick the correct macro that I want.
In Script Editor, I use a lot of user libraries where I can't remember the exact handler name. So, I thought I'd create some text expander macros with the same trigger.
For example, when I type: "kb's<space>", I get a list of text expander macros.
- kb's pressCommandKey()
- kb's pressKey()
- kb's isDvorak()
I'd need to press the correct letter to trigger the specific macro in the list. This works fine, but it can be better.
What if there's a feature where I can continuously type the first few letters I can remember and narrow the list on that instead of triggering via a hotkey? So when I type "kb's<space>p" the macro list presented to me would be reduced to just:
- kb's pressCommandKey()
- kb's pressKey()
Instead of the macro list getting dismissed because the "p" is not among the assigned selection keys to the macro list.
It feels like it's a different app or something that can be implemented in Keyboard Maestro.