We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ctrl+Shift+C, type command and execute errors to this message:
shell_cmd or cmd is required
This change resolved it for me:
--- a/Default (Windows).sublime-keymap +++ b/Default (Windows).sublime-keymap @@ -1,5 +1,5 @@ [ - {"keys": ["ctrl+shift+c"], "command": "shell_prompt"}, + {"keys": ["ctrl+shift+c"], "command": "shell_prompt", "args": { "cmd": ["cmd.exe"] } }, {"keys": ["ctrl+shift+x"], "command": "shell_prompt", "args": { "run_previous": true } }, {"keys": ["shift+ctrl+alt+c"], "command": "subprocess_in_cwd", "args": { "cmd": ["cmd.exe"]
The text was updated successfully, but these errors were encountered:
Hmm... I haven't seen that error before and unfortunately I don't have a Window machine to test on.
I'm hesitant to add your change to the repo because the shell_prompt command isn't designed to take a cmd argument...
shell_prompt
cmd
Sorry, something went wrong.
I had the same problem on macOS Sierra, fixed it with {"keys": ["super+shift+c"], "command": "shell_prompt", "args": { "cmd": ["/usr/bin/sh"] } }
{"keys": ["super+shift+c"], "command": "shell_prompt", "args": { "cmd": ["/usr/bin/sh"] } }
No branches or pull requests
Ctrl+Shift+C, type command and execute errors to this message:
This change resolved it for me:
The text was updated successfully, but these errors were encountered: