a better bookmark system for SublimeText
Let's face it: sublime text's bookmark system sucks. rant It doesn't support named bookmarks. It doesn't save bookmark statuses, and it is just terrible to use overall. /rant.
This is a replacement for sublime text's bookmark functionality. It's slicker and easier to use, and is persistent.
Note: As of now, This is only for Sublime Text 3.
- Named bookmarks
- Bookmarks are saved across sessions
- Goto any bookmark in the project
- Add any number of bookmarks (not just 12).
- Project based bookmarks (bookmarks are stored per-project and bookmarks can be navigated on a per-project basis)
With the Package Control plugin: The easiest way to install SublimeBookmarks is through Package Control, which can be found at this site: http://wbond.net/sublime_packages/package_control
Once you install Package Control, restart Sublime Text and bring up the Command Palette (Command+Shift+P
on OS X, Control+Shift+P
on Linux/Windows). Select "Package Control: Install Package", wait while Package Control fetches the latest package list, then select SublimeBookmarks when the list appears. The advantage of using this method is that Package Control will automatically keep SublimeBookmarks up to date with the latest version.
Without Git: Download the latest source from GitHub <https://github.com/bollu/SublimeBookmark/tree/st3>
and copy the whole directory into the Packages directory.
With Git: Clone the repository in your Sublime Text Packages directory, located somewhere in user's "Home" directory::
git clone -b st3 https://github.com/bollu/sublimeBookmark.git
###Adding Bookmarks###
Go to a line you wish to bookmark. Press ctrl + shift + P
on Windows / Linux or cmd + shift + P
on Mac and type Add Bookmark
. This opens up a panel where you can type the name of your bookmark. Once you're done naming your shiny new bookmark, hit Enter
. You should see a tiny yellow triangle next to your line. you're done!
###Accessing Bookmarks###
Press ctrl + shift + P
on Windows / Linux or cmd + shift + P
on Mac and select Goto Bookmark
. This will bring up a list of all bookmarks. Type in the bookmark name you want to go to and press Enter
to go to the bookmark
###Removing Bookmarks###
Press ctrl + shift + P
on Windows / Linux or cmd + shift + P
on Mac and select Remove Bookmark
. Type the name of the bookmark you want to remove and press Enter
. This will remove the bookmark
To remove all bookmarks, select the option Remove All Bookmarks (Clear Bookmarks)
. This will clear all bookmarks. This can not be undone.
###Some TODO Stuff:###
- Port to Sublime Text 2
Add an option to only show bookmarks belonging to current project(Nope, it now fully supports project-based bookmark management!)
###To Help###
Just fork my repo and send a pull request. I'll gladly accept :)