Sublime Forum

Command Palette not showing plugin commands

#1

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

1 Like

#2

Maybe all packages are disabled? Check the console.

0 Likes

#3

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.

0 Likes

#4

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.

0 Likes