Cant press enter(select) with command in ST3 to activate.
When i manually pressing enter its working, but with command doesn’t work.
{"command": "select"}, {"command": "select", "args": {"select": true}}, {"command": "select", "context": "window"}, {"command": "select", "args": {"select": true}, "context": "window"},
No-one from this doesnt work in ST3 but work in ST4 normally.
Seams in ST3 is other args or context…
Is there are other option how press select? Or maybe somebody knows options?
What i used:
ImprovedMacros that give ability to use delay in multiple commands
and plugin selectuntil
{ "caption": "multiple_commands: Fold 1-2",
//"keys": "ctrl+alt+s",
"command": "run_multiple_commands",
"args": {
"commands":[
{"command": "unfold_all"},
{"command": "move", "args": {"by": "lines", "forward": true}},
{"command": "goto_indentation", "args": {"before": 0, "type": "lesser"}},
{"command": "select_until", "args": {"extend": true },"delay":200},
{"command": "insert_snippet","args": {"contents": "-/^(\\s{2}|\\s{1})([^\\s].*)\\$/"}, "context": "window","delay":200},
{"command": "select", "args": {"select": true}, "context": "window","delay":1000},
]}},