How can I set up working dir with ShellCommand? Zero information on the plugin page.
Is it not even implemented?
How can I set up working dir with ShellCommand? Zero information on the plugin page.
Is it not even implemented?
Try:
[
{
"keys": ["ctrl+enter"],
"command": "shell_command",
"args": {
"command": "cd /your/absolute/path/;ls -al",
}
}
]
There is some pretty complex logic in the package that determines the working dir of the launched process and the only thing you can provide via command arguments is the root_dir
parameter.