Signet Bookmarks
Enhanced bookmarks plugin for Sublime Text with persistence and selectable traversal range.
Details
Installs
- Total 26
- Win 14
- Mac 8
- Linux 4
Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 11 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Signet Bookmarks
Sublime Text plugin for enhanced bookmarks. Bookmark
and Mark
are already well used so
this is signet
from the French:
“Petit ruban ou filet qu'on insère entre les feuillets d'un livre pour marquer l'endroit que l'on veut retrouver.”
Built for ST4 on Windows. Linux and OSX should be ok but are minimally tested - PRs welcome.
Features
- Persisted per project to
...\Packages\User\SignetBookmarks\SignetBookmarks.store
. - Next/previous traverses just the current file or all files in project.
Commands and Menus
Command | Description | Args |
---|---|---|
sbot_toggle_signet | Toggle signet at row | |
sbot_goto_signet | Goto next/previous signet | where: next OR prev |
sbot_clear_all_signets | Clear all signets in project |
There is no default Context.sublime-menu
file in this plugin.
Add the commands you like to your own User\Context.sublime-menu
file. Typical entries are:
{ "caption": "Signet",
"children":
[
{ "caption": "Toggle Signet", "command": "sbot_toggle_signet" },
{ "caption": "Next Signet", "command": "sbot_goto_signet", "args": { "where": "next" } },
{ "caption": "Previous Signet", "command": "sbot_goto_signet", "args": { "where": "prev" } },
{ "caption": "Clear All Signets", "command": "sbot_clear_all_signets" }
]
}
Or they could go in your User\Main.sublime-menu
file under Goto
.
{
"id": "goto",
"children":
[
{
"id": "signets",
"caption": "Signets",
"children":
[
{ "caption": "Toggle Signet", "command": "sbot_toggle_signet" },
{ "caption": "Next Signet", "command": "sbot_goto_signet", "args": { "where": "next" } },
{ "caption": "Previous Signet", "command": "sbot_goto_signet", "args": { "where": "prev" } },
{ "caption": "Clear Signets", "command": "sbot_clear_signets" },
]
},
]
}
You may find it useful to replace the builtin bookmark key bindings with the new ones
because you shouldn't need both. In User\Default (Windows or Linux).sublime-keymap
file:
{ "keys": ["ctrl+f2"], "command": "sbot_toggle_signet" },
{ "keys": ["f2"], "command": "sbot_goto_signet", "args": { "where": "next" } },
{ "keys": ["shift+f2"], "command": "sbot_goto_signet", "args": { "where": "prev" } },
{ "keys": ["ctrl+shift+f2"], "command": "sbot_clear_signets" },
Settings
Setting | Description | Options |
---|---|---|
scope | Scope name for gutter icon | any valid - default is region.redish |
nav_all_files | Traverse extent | true=all project files OR false=just current file |
Notes
sbot_common.py
contains miscellaneous common components primarily for internal use by the sbot family. This includes a very simple logger primarily for user-facing information, syntax errors and the like. Log file is in$APPDATA\Sublime Text\Packages\User\SignetBookmarks\SignetBookmarks.log
.