Bookmarks
extensionThe Bookmarks
extension allows you keep track of files and files locations to easily go back to them when needed. This not only helps you to leave breadcrumbs as you debug or navigate your code, but also enables you to quickly switch between tasks as it is possible to save and restore all editors.
A bookmark is a reference to a document that is saved in the context of the current workspace (Workspace
), or independent from it (Global
). Absolute URI
s are used as location descriptors so any filesystem supported by VSCode can be bookmarked.
The UI, however, will adjust how bookmarks are displayed, e.g., calculating a relative path based on current workspace.
A bookmark's identity is tied to its URL, which always includes a one-based line number fragment (e.g., file://workspace/file.rb#L1
).
A folder is a container for bookmarks. As such, they are not related to the associated file-system structure.
The only constraint imposed by folders is that a given bookmark must be unique within it, i.e., you can add a bookmark to file://workspace/file.rb#L1
to every single folder, but only once per folder. Every bookmark is its own entity, so for example, if you change the display name on one of them, only the specific entry is updated.
The Bookmarks
View is the main UI component for this extension. It lists all your bookmarks in two different sections:
Global
: shows bookmarks that are always available, regardless of what current workspace is.Workspace
: shows bookmarks associated with the currently opened workspace, if any.You can change the display mode for the tree:
Name
: shows the file name and target line number. A path hint is shown as description.Path
: shows the file path relative the currently opened workspace The associated line number is shown as description.
There are two commands available to add a bookmark, Bookmarks: Bookmark Editor (Global)
and Bookmarks: Bookmark Editor (Workspace)
, both working on the currently active editor and adding a bookmark to the appropriate category.
When a bookmark is created via these commands, current line information is captured.
The following commands are exposed for other extensions to use: bookmarks.addBookmark.global
and bookmarks.addBookmark.workspace
. They take a single argument that is the path or URI to the file to bookmark.
Line information can be added by adding a fragment to the URI with the format: L<lineNumber>
, with lineNumber
being a 1-based index.
Editor can be dragged onto the right category, and they will be bookmarked (if they are not already). Additionally, it is also possible to drag items between categories to move them around. When a bookmark is created this way, no line information is captured.
There is a +
button available on every category node, Global
and Workspace
, that bookmarks the currently active editor.
There are two commands available: Bookmarks: Remove All (Global)
and Bookmarks: Remove All (Workspace)
.
The following commands are exposed for other extensions to use:
bookmarks.removeBookmark.global
and bookmarks.removeBookmark.workspace
. They take a single argument that is the path or URI to the file to remove.bookmarks.removeBookmarks.global
and bookmarks.removeBookmarks.workspace
. They take no argument and remove all bookmarks from corresponding category.There is a X
button next to each Bookmark, same as one per category and one on the tree view header that allow you to remove all bookmarks under the selected parent. Additionally, there is a Remove All
action on the drop down for each of the category nodes.
Assigning a custom display name to a bookmark affects how it is represented in the UI. This can be used to provide a meaningful such as Bug Location.
Under the Display Name
context menu for a given bookmark, use:
Update…
to update the display name.Remove
to remove any custom display name.Update the line number helps keeping bookmarks in-sync with changes to their targets or to fix an incorrect value. The benefit here will improve as bookmarks evolve and carry more metadata so editing this value is easier than just recreating the bookmark.
Under the Line Number
context menu for a given bookmark, use:
Update…
to update the line number.Attach text notes to a bookmark for reference. Text is displayed on the the bookmark's tooltip.
Under the Notes
context menu for a given bookmark, use:
Update…
to update the display name.Remove
to remove any custom display name.There are two commands, Bookmarks: Go to Next in Current Editor
and Bookmarks: Go to Previous in Current Editor
, that can be used to jump between bookmarks set in current editor.
The following commands are exposed for other extensions to use: bookmarks.navigate.next.editor
and bookmarks.navigate.previous.editor
. They take a single optional argument that is the path or URI to the file to navigate (it will be opened if needed).
Bookmarks are naturally expected to be rendered with markers on the corresponding editor gutter. This is support via the Bookmarks: Toggle In-Editor Markers
command but it is disabled by default due to VSCode #5923 which causes these markers to cover the breakpoint ones (unacceptable experience).
You can also use the Hide In-Editor Markers
and Show In-Editor Markers
actions on the Bookmarks
view menu.