deathaxe / sublime-commands

Adds all default commands to the command pallet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sublime Commands

Sublime Text's command palette 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.

Warning and Disclaimer

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.

Package Control

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.

Manual Setup

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

OSX
#!/usr/bin/env bash
cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/
git clone https://github.com/deathaxe/sublime-commands "Default"
Linux
cd ~/.config/sublime-text-3/Packages
git clone https://github.com/deathaxe/sublime-commands "Default"
Windows
cd "%APPDATA%\Sublime Text 3\Packages"
git clone https://github.com/deathaxe/sublime-commands "Default"

About

Adds all default commands to the command pallet

License:MIT License


Languages

Language:Python 100.0%