ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

sub​Drush

by kostajh ST3

Drush integration for Sublime Text 3 to facilitate Drupal development.

Details

  • 2014.03.05.14.19.35
  • github.​com
  • github.​com
  • 10 years ago
  • 1 hour ago
  • 11 years ago

Installs

  • Total 1K
  • Win 469
  • Mac 591
  • Linux 383
Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6 Mar 5 Mar 4 Mar 3 Mar 2 Mar 1 Feb 29 Feb 28 Feb 27 Feb 26 Feb 25 Feb 24 Feb 23 Feb 22 Feb 21 Feb 20 Feb 19 Feb 18 Feb 17 Feb 16 Feb 15 Feb 14
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

subDrush (Sublime Drush plugin)

This is plugin for Sublime Text 3 (ST3) that exposes a subset of Drush functionality to facilitate Drupal development.

This is not an attempt to bring the entirety of Drush into Sublime Text. Instead the idea is that there are some commands that can be executed easily from within ST, such as clearing caches, getting values of variables, enabling or disabling modules and themes, etc. Such commands typically don't require numerous options and usually do not require additional user input to run. These kinds of commands will be added to subDrush - for other Drush commands, use your terminal.

Supported Commands

Command Description Type
cache-clear Clear a specific cache bin core
cache-clear all Clear all caches core
core-status Provides a birds-eye view of the Drupal installation core
watchdog-show Displays the 10 most recent watchdog entries core
variable-get Displays the value of a Drupal variable core
cron Invokes cron for open Drupal directory core
php-eval Evaluates selected text in the bootstrapped Drupal site core
php-script Executes open buffer as PHP script after Drupal bootstrap core
pm-list Show a list of available extensions (modules and themes) core
updatedb Run update.php on site core
alias-edit Edit the Drush aliases (current site or choose from list) custom
Clear Sublime Drush cache Clears Sublime Drush internal cache custom

See the issue queue for commands that are in progress.

Usage

This plugin works best when you have a Drupal directory open in ST3, or a directory immediately below your Drupal root. This allows subDrush to know about the local Drupal environment, and lets you interact with the local Drupal site's database.

For example, suppose your site directory structure looks like this:

/path/to/repo/docroot   <-- Where Drupal core is
/path/to/repo/resources <-- Miscellaneous scripts
/path/to/repo/tests     <-- Any tests you've written, etc

In Sublime Text 3, if you go to File -> Open and open up /path/to/repo or /path/to/repo/docroot this plugin will work fine, and will be able to accurately identify the Drupal root to pass to Drush.

If you want, you can also open a single file in ST3 (for example, /path/to/repo/docroot/modules/color/color.module), and subDrush will identify the Drupal root by using the drush dd command.

Open up the command palette (Ctrl + Shift + P), type drush to see the commands.

Feel free to create your own key bindings as none are provided by this plugin.

Requirements

  • Sublime Text 3 (Build 3033 or later)
  • Only Mac OS 10.8 and Linux (specifically Arch Linux) are known to have been tested. Windows should work fine though.

Drush

The latest stable release of Drush comes bundled with this plugin. By default, subDrush will use its own bundled version of Drush. However, if you prefer to use another version of Drush (for example, if you are developing with Drupal 8 and need Drush 7), then check out Preferences > Package Settings > subDrush > Settings - Default for instructions on how to use an alternate version of Drush. Drush 5 is not supported.

Drupal

Some commands don't work consistently with Drupal 6 (for example, php-script and php-eval). All commands are tested against Drupal 7.

Installation

Use Sublime Package Control and search for subDrush. Alternatively, clone this repository into the Packages directory - see the Sublime Text 3 docs for more information.

Credits

This plugin was written and is maintained by Kosta Harlan with support from DesignHammer Media Group.

The ThreadProgress class is borrowed from wbond's Sublime Package Control plugin.

License

A Sublime Text 3 Plugin that integrates with Drush

Copyright © 2013 Kosta Harlan

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.