Skip to content

samuelsimoes/sublime-text-2-favorite-folders

Repository files navigation

#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'

'Bookmakerd Folders List'

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

{
	"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

{
	"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"],
			]
		}
	}
}

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages