Is it possible to map to a single key press to two commands executed sequentially?
i.e.
{ “keys”: “super+shift+e”], “command”: “slurp_find_string”, “command”: “show_panel”, “args”: {“panel”: “find_in_files”} },
Tries ‘select text under cursor, bring up the Fin in project’, by merging:
{ “keys”: “super+e”], “command”: “slurp_find_string” },
{ “keys”: “super+shift+f”], “command”: “show_panel”, “args”: {“panel”: “find_in_files”} },
It doesn’t work by the way.
If key mapping doesn’t work, could I do a custom macro for this?