Dear all,
I am using the following JSON command to combine two actions with a single key combo.
{"keys": ["super+enter"],
"command": "chain",
"args": {
"commands": [
["repl_transfer_current",{"scope": "lines"}],
["repl_transfer_current",{"scope": "lines", "action":"view_write"}]
]
}
}
I would like to send the code over to REPL from editor, then run it. I looked at this as a reference https://stackoverflow.com/questions/23312111/multiple-commands-with-args-under-1-hotkey-in-sublime-text-3 , everything seems fine, what I am doing wrong?
Thanks in advance!