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

JS Var Shortcuts

by twolfson ALL

Insert and delete shortcuts for JavaScript variables in Sublime Text

Details

  • 0.1.3
  • github.​com
  • github.​com
  • 11 years ago
  • 13 minutes ago
  • 11 years ago

Installs

  • Total 1K
  • Win 705
  • Mac 184
  • Linux 145
Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 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
Windows 0 0 0 0 0 0 0 0 2 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 1 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 1 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-js-var-shortcuts Build status

Insert and delete shortcuts for JavaScript variables in Sublime Text

This was built for (1) quickly setting up and tearing down variables, (2) proof of concept for Sublime Text plugin testing framework.

Currently, only tear down is supported.

Deletion screencast

Getting Started

Requirements

You must have node installed on your machine. We use esprima to locate the var statements.

Installation

This package is available under JS Var Shortcuts inside of Package Control, a Sublime Text plugin that allows for easy management of other plugins.

If you prefer the manual route, you can install the script via the following command in the Sublime Text terminal (ctrl+`) which utilizes git clone.

import os; path=sublime.packages_path(); (os.makedirs(path) if not os.path.exists(path) else None); window.run_command('exec', {'cmd': ['git', 'clone', 'https://github.com/twolfson/sublime-js-var-shortcuts', 'JS Var Shortcuts'], 'working_dir': path})

Packages can be uninstalled via “Package Control: Remove Package” via the command pallete, ctrl+shift+p on Windows/Linux, command+shift+p on Mac.

Usage

By default, we bind variable deletion to ctrl+backspace on Windows/Linux, command+backspace on Mac. If no variables are selected, the default action (delete word on left) will be taken.

If you would like to add your own key binding, the deletion command is available as js_var_delete.

{
  "keys": ["ctrl+delete"],
  "command": "js_var_delete"
}

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Test via nosetests.

Donating

Support this project and others by twolfson via gittip.

Support via Gittip

License

Copyright © 2013 Todd Wolfson

Licensed under the MIT license.