Drush
A simple package to run Drupal drush from Sublime Text editor.
Details
Installs
- Total 1K
- Win 491
- Mac 486
- Linux 318
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Sublime Text 2/3 Drush Package
A simple package to run Drupal drush from Sublime Text editor.
Screenshots
Open command bar with alt
+shift
+d
(Windows)
Drush results
For a complete list of drush commands, please visit the official site.
Installation
Easiest way to install the plugin is to use Package Control.
Alternatively you can clone with git directly into Packages
directory in the Sublime Text application settings area. The directory name must be Drush
without quotes.
Using Git
Go to your Sublime Text Packages
directory and clone the repository using the command below:
git clone https://github.com/vaanwd/sublime_drush "Drush"
Download Manually
- Download the files using the GitHub .zip download option
- Unzip the files and rename the folder to
Drush
- Copy the folder to your Sublime Text
Packages
directory
Usage
Sublime Drush is a simple plugin that allows execution of drush commands from Sublime Text Editor.
To use, you must enable input console with alt
+ shift
+ d
(Win / Linux) or shift
+ super
+ d
(Mac).
Note: You may have to add a symlink if your drush command isn't installed to /usr/bin/
or /usr/sbin/
* sudo ln -s /path/to/your/drush /usr/bin/drush
From the Sublime menu Preferences
->Package Settings
->Drush
->Settings - User
you can set the path to drush utility and other arguments.
For example you can set answer "yes"
to all questions required by drush adding:
"drush_args": "--yes",
To run a command on save, add the following:
"exec_on_save_command": "cc all"
You can also set the arguments used by drush for each Sublime project accesed from Sublime menu Project
->Edit Project
.
An example for PROJECT.sublime-project:
{
"folders":
[
{
"path": "/E/UwAmp/www/drupal7"
}
],
"settings":
{
"Drush":
{
"drush_args": "--uri=http://d7.com"
}
}
}
NOTE: You should avoid introducing identical parameters in Drush.sublime-settings file and PROJECT.sublime-project to avoid incorrect operations.