All of a sudden, my command palette is not displaying commands for any of my plugins, just the default ones from Sublime. Has anyone else run into a similar problem? Any ideas how to solve it?
I am using Build 3114
All of a sudden, my command palette is not displaying commands for any of my plugins, just the default ones from Sublime. Has anyone else run into a similar problem? Any ideas how to solve it?
I am using Build 3114
I just had the same problem. This command was not working:
[
{ "caption": "Wrap Plus: Wrap Lines at 70 chars", "command": "wrap_line_plus", "args": { "width": 70 } }
]
It was because the command wrap_line_plus
was misspelled. It it is wrap_lines_plus
.
However sublime text showed nothing on the console every time I saved the file within the misspelled command.
Yes, ST unfortunately doesn’t tell you when it tried to run a command that doesn’t exist, unless it’s the target of a build system.