FeelingLucky is Sublime Text Plugin which can open the related files of id or class of designation in html files.
using Sublime Package Control, you can easily install the FeelingLucky.
Sublime Text 2 -> Preferences -> Package Control: Install Package
Download the latest source from GitHub and copy the SublimeFeelingLucky folder to your Sublime Text Packages dir.
Clone the repository in your Sublime Text Packages dir
$ cd Packages
$ git clone git@github.com:azzip/SublimeFeelingLucky.git
config.feelinglucky is required in project root dir.
Designation of .css, .sass, .js, .coffee target file.
- Command Palett
Make config.feelinglucky - Context Menu
Make config.feelinglucky - Command short cut
super+ctrl+e
{
"css": [
"style.css"
],
"sass": [],
"js": [
"index.js"
],
"coffee": []
}
Open Command Palette… feeling lucky
Tools -> Command Palette… -> feeling lucky
or
use Default.sublime-keymap
- css, sass :
ctrl+e - js, coffee :
ctrl+shift+e
[
{ "keys": ["ctrl+e"], "command": "feeling_lucky_css" },
{ "keys": ["ctrl+shift+e"], "command": "feeling_lucky_js" },
{ "keys": ["super+ctrl+e"], "command": "make_config_dot_feeling_lucky" }
]
v0.2.0 (2013/05/23) :
- Open
.js,.coffeefiles in new right panel.
