Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/samuelsimoes/sublime-text-2-favorite-folders
- Owner: samuelsimoes
- Created: 2013-03-02T16:08:50.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-03-06T18:52:58.000Z (almost 12 years ago)
- Last Synced: 2024-04-16T00:52:29.065Z (9 months ago)
- Language: Python
- Size: 187 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
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"],
]
}
}
}