Please see the description from reddit
So what’s my problem ?
This doesn’t work either
{
“cmd”: ["/home/mika/.nvm/versions/node/v20.9.0/bin/node", “$file”],
“selector”: “source.js”,
“shell”: true,
“quiet”: false
}
As shell: True
is deprecated, does the following work for you?
{
"shell_cmd": "/home/mika/.nvm/versions/node/v20.9.0/bin/node \"$file\"",
"selector": "source.js",
}