Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/samuelsimoes/sublime-text-2-favorite-folders

Plugin to help you navigate through the favorite folders on your project, you can also exclude, create, rename and move folders and files.
https://github.com/samuelsimoes/sublime-text-2-favorite-folders

Last synced: about 2 months ago
JSON representation

Plugin to help you navigate through the favorite folders on your project, you can also exclude, create, rename and move folders and files.

Awesome Lists containing this project

README

        

#Sublime Text 2 Favorite Folders Navigator

Plugin to help you navigate through the favorite folders on your project, you can also exclude, create, rename and move folders and files.

In projects using Magento or something like, for example, this can be very useful once the file working tree is giant and many folders has the same name, but in differents places.

!['Bookmakerd Folders List'](https://raw.github.com/samuelsimoes/Sublime-Text-2-Favorite-Folders/master/images_example/list_favorite_folders.png)

!['Bookmakerd Folders List'](https://raw.github.com/samuelsimoes/Sublime-Text-2-Favorite-Folders/master/images_example/list_edit.png)

You need declare in to .sublime-project wich folders you want be bookmarked inside an array with key "folders", the three items should follow the format: **["Absolute Path to Folder", "Title of Bookmark", "Description of Bookmarked Folder"]**

You can set a regular expression to filter folders setting the key **excluded_dir_patterns**

**.sublime-project example in Mac OS or Linux**

```json
{
"folders": [
{
"path": "/Users/samuel/magento_project"
}
],
"settings":
{
"FavoriteFolders":
{
"excluded_dir_patterns": ".git|.sass-cache|.DS_Store",
"folders": [
["/Users/samuel/magento_project/app/design/frontend/default/my_teme", "My Themes Files", "Files of my theme, lol"],
["/Users/samuel/magento_project/skin/frontend/default/my_theme", "My Themes Assets", "Assets of my Theme"]
]
}
}
}
```

**.sublime-project example in Windows**

```json
{
"folders": [
{
"path": "/C:/Users/samuel/magento_project"
}
],
"settings":
{
"FavoriteFolders":
{
"excluded_dir_patterns": ".git|.sass-cache|.DS_Store",
"folders": [
["C:\\Users\\samuel\\magento_project\\app\\design\\frontend\\default\\my_teme", "My Themes Files", "Files of my theme, lol"],
]
}
}
}