All Projects → deathaxe → sublime-commands

deathaxe / sublime-commands

Licence: MIT license
Adds all default commands to the command pallet

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to sublime-commands

sublime-import-helper
A Sublime Text Plugin that helps you to import your modules.
Stars: ✭ 69 (+283.33%)
Mutual labels:  sublime-text, sublime-package
Sublime Ava
Snippets for AVA
Stars: ✭ 41 (+127.78%)
Mutual labels:  sublime-text, sublime-package
Sublime zk
A SublimeText3 package featuring ID based wiki style links, and #tags, intended for zettelkasten method users. Loaded with tons of features like inline image display, sophisticated tag search, note transclusion features, support for note templates, bibliography support, support for multiple panes, etc. to make working in your Zettelkasten a joy 😄.
Stars: ✭ 408 (+2166.67%)
Mutual labels:  sublime-text, sublime-package
sublime-text
Subime Text 相关资源收集整理
Stars: ✭ 62 (+244.44%)
Mutual labels:  sublime-text, sublime-package
Themr
A UI theme selector for Sublime Text.
Stars: ✭ 112 (+522.22%)
Mutual labels:  sublime-text, sublime-package
CSSFontFamily
CSSFontFamily is a Sublime Text plugin with a collection of font stacks autocomplete.
Stars: ✭ 15 (-16.67%)
Mutual labels:  sublime-text, sublime-package
Sublimeallautocomplete
Extend Sublime autocompletion to find matches in all open files of the current window
Stars: ✭ 906 (+4933.33%)
Mutual labels:  sublime-text, sublime-package
Assembly-Syntax-Definition
This is the greatest syntax definition of All Time
Stars: ✭ 23 (+27.78%)
Mutual labels:  sublime-text, sublime-package
Carbonsublime
🚀 A Sublime Text 3 Plugin for Carbon. (https://carbon.now.sh)
Stars: ✭ 104 (+477.78%)
Mutual labels:  sublime-text, sublime-package
Packagesync
Sync sublime text packages & user settings across devices.
Stars: ✭ 63 (+250%)
Mutual labels:  sublime-text, sublime-package
sublime-profiles
Profile Switcher for Sublime Text
Stars: ✭ 59 (+227.78%)
Mutual labels:  sublime-text, sublime-package
Editorconfig Sublime
Sublime Text plugin for EditorConfig - Helps developers maintain consistent coding styles between different editors
Stars: ✭ 1,749 (+9616.67%)
Mutual labels:  sublime-text, sublime-package
sublime-live-server
🌍️ Launch a Development Server directly from Sublime Text
Stars: ✭ 49 (+172.22%)
Mutual labels:  sublime-text, sublime-package
Chromerepl
A Sublime Text plugin to execute JavaScript in Google Chrome
Stars: ✭ 347 (+1827.78%)
Mutual labels:  sublime-text, sublime-package
Sublime-Pretty-Shell
🐚 Shell Script Formatter / Syntax Checker (Powered by shfmt)
Stars: ✭ 28 (+55.56%)
Mutual labels:  sublime-text, sublime-package
Processing Sublime
A Sublime Text package for the programming language Processing
Stars: ✭ 447 (+2383.33%)
Mutual labels:  sublime-text, sublime-package
sublime-text-theme-switcher-menu
Painless theme selection in Sublime Text ⚡
Stars: ✭ 18 (+0%)
Mutual labels:  sublime-text, sublime-package
zephir-sublime
Sublime Text syntax highlighting for for Zephir
Stars: ✭ 41 (+127.78%)
Mutual labels:  sublime-text, sublime-package
Sublimelinter Contrib Xo
SublimeLinter plugin for XO
Stars: ✭ 53 (+194.44%)
Mutual labels:  sublime-text, sublime-package
Schemr
A color scheme selector for Sublime Text.
Stars: ✭ 140 (+677.78%)
Mutual labels:  sublime-text, sublime-package

Sublime Commands

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.

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"
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].