A plugin for displaying Favorites (list of frequently used documents) in the Sublime Text 3 editor.
While plugin functionality overlaps with some other similar ST3 plugins, it has a very strong distinction - it offers visual management of the Favorites' items.
Note the plugin was developed and tested against ST3 but not ST2.
Package Control
Not available yet: waiting for Sublime team approval.
You can install the pluging Package Control.
Manual
https://github.com/oleg-shilo/sublime-favorites.git
sublime-favorites
with Package Control. You can also install the plugin by cloning sublime-favorites
repository into your Packages folder or manually placing the download package there.
The plugin uses a dedicated view group on right side (favorites panel) to mimic a "side bar" containing the list of "favorite documents".
All visual elements in the panel can be double-clicked to invoke the default command associated with the element. Alternatively user can hover the mouse cursor over the item to trigger an interactive tooltip, which allows invoking multiple commands associated with the visual element.
To start working with Favorites just make the favorites panel visible (e.g. press cmd+shift+p
and type/select Favorites: Toggle Visibility
).
Alternatively, you can configure custom binding instead:
Open keymap menu
Preferences > Key Bindings > Default (...).sublime-keymap - User
Add mapping:
{ "keys": ["alt+f", "alt+f"], "command": "show_favorites" }
Toggle Visibility
Show/Hide favorites panel either with Command Palette or by the configured shortcut (e.g. [alt+f, alt+f]).
Add active document to favorites
Double-click the Add
command at the top of the panel.
Alternatively, hover over Add
command at the top of the panel and then click Add active view...
on the tooltip.
Remove the item (document) from the favorites.
Hover over the document item in the panel and then click Remove from...
on the tooltip.
Open the item (document)
Double-click the document item in the panel.
Alternatively, hover the document item in the panel and then click Open...
on the tooltip.
Edit Favorites data file directly
Double-click the Edit
command at the top of the panel.
Alternatively, hover over Edit
command at the top of the panel and then click Edit...
on the tooltip.
Project specific favorites The plugin maintains a separate list of favorites per project. It is merged with the global favorites if the project file is loaded into ST. The project favorites are always placed in the bottom section of the favorites panel. All per-project items can be dealt with (e.g. Add, Remove, edit) the same ways as global ones.
File aliases By default the items in the favorites panel appears with their file name listed. However if a custom name is more beneficial a file alias can be assigned to the item in the data file via "Edit favorites" command.
The format is simple: <file_alias>|<file_path>
:
shelloverlay|Q:\Extras\Utils\TortoiseIconOverlays.cs
Practically all functionality available via favorites panel is also available via Command Palette:
You can also configure plugin to:
Favorite Files
data file, flattening it and allowing to open files on double-click on the item in the Favorites panel.favorites.sublime-settings
{
"close_empty_group_on_closing_panel": true,
"show_in_new_group": true,
"favorite_files_integration_enabled": false
}