Fixes #643
This commit is contained in:
@@ -7,6 +7,7 @@ release.
|
||||
_The changes below are not yet released “properly”. To them out early, check out [the docs on edge](https://community.silverbullet.md/t/living-on-the-edge-builds/27)._
|
||||
|
||||
* Tag pages: when you click on a #tag you will now be directed to a page that shows all pages, tasks, items and paragraphs tagged with that tag.
|
||||
* Action buttons (top right buttons) can now be configured, see [[SETTINGS]] how to do this.
|
||||
* Bug fixes:
|
||||
* Improved Ctrl/Cmd-click (to open links in a new window) behavior: now actually follow `@pos` and `$anchor` links.
|
||||
* Right-clicking links now opens browser native context menu again
|
||||
|
||||
@@ -17,7 +17,7 @@ The `editor` plug implements foundational editor functionality for SilverBullet.
|
||||
|
||||
## Navigation
|
||||
* {[Navigate: Home]}: navigate to the home (index) page
|
||||
* {[Navigate To page]}: navigate to the page under the cursor
|
||||
* {[Navigate: To This Page]}: navigate to the page under the cursor
|
||||
* {[Navigate: Center Cursor]}: center the cursor at the center of the screen
|
||||
* {[Navigate: Move Cursor to Position]}: move cursor to a specific (numeric) cursor position (# of characters from the start of the document)
|
||||
|
||||
|
||||
+19
-1
@@ -7,7 +7,25 @@ indexPage: "[[SilverBullet]]"
|
||||
# Load custom CSS styles from the following page, can also be an array
|
||||
customStyles: "[[STYLES]]"
|
||||
|
||||
# It is possible to override keyboard shortcuts and command priority
|
||||
# Hide the sync button
|
||||
hideSyncButton: false
|
||||
|
||||
# Configure the shown action buttons (top right bar)
|
||||
actionButtons:
|
||||
- icon: Home # Capitalized version of an icon from https://feathericons.com
|
||||
command: "{[Navigate: Home]}"
|
||||
description: "Go to the index page"
|
||||
- icon: Activity
|
||||
description: "What's new"
|
||||
command: '{[Navigate: To Page]("CHANGELOG")}'
|
||||
- icon: Book
|
||||
command: "{[Navigate: Page Picker]}"
|
||||
description: Open page
|
||||
- icon: Terminal
|
||||
command: "{[Open Command Palette]}"
|
||||
description: Run command
|
||||
|
||||
# Override keyboard shortcuts and command priority
|
||||
shortcuts:
|
||||
- command: "{[Stats: Show]}" # Using the command link syntax here
|
||||
mac: "Cmd-s" # Mac-specific keyboard shortcut
|
||||
|
||||
Reference in New Issue
Block a user