Sublime Text's command pallet misses most of the internal commands exposed by the main menu.
Packages like Missing Commands therefore provide all commands not located in Sublime Text's Default package.
This package provides a merged and hopefully complete Default.sublime-commands which is intended to be placed into the Default package.
As this package partially overwrites the Default.sublime-package package provided by Sublime Text out of the box, the original content will be completely hidden.
If you encounter any issues don't therefore blame the core devs but first try to remove this package.
The package author tries his best to keep up to date with the ongoing development but can't provide any warranty.
As this package is and will never be added to the official packagecontrol.io for official reasons, you need to add the following settings to your User/Package Control.sublime-settings if you want Package Control to keep this package up to date for you.
"repositories":
[
"https://github.com/deathaxe/sublime-commands"
],
"package_name_map":
{
"sublime-commands": "Default"
}
Save the settings file. Open command palette, select Package Control: Install Package, search for Default and install it.
If you want to use it to override ST's commands you'll need to clone this repo into Sublime Text's Packages path as Default
#!/usr/bin/env bash
cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/
git clone https://github.com/deathaxe/sublime-commands "Default"
cd ~/.config/sublime-text-3/Packages
git clone https://github.com/deathaxe/sublime-commands "Default"
cd "%APPDATA%\Sublime Text 3\Packages"
git clone https://github.com/deathaxe/sublime-commands "Default"