joplin-plugin-heading-navigator 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
A Joplin plugin that provides a simple overlay panel allowing you to navigate and filter headings in the markdown editor, inspired by sublime text's "go to symbol" function.
|
|
7
7
|
|
|
8
|
-

|
|
9
9
|
|
|
10
10
|
> [!important]
|
|
11
11
|
> This plugin only works in the markdown editor (editor view or split view). It does not work in the reading view or in the rich text editor. Codemirror 6 only, legacy editor is not supported.
|
|
@@ -19,7 +19,7 @@ In the markdown editor, click the Heading Navigator toolbar button, or use the a
|
|
|
19
19
|
|
|
20
20
|
You can navigate through headings using tab key (goes to next heading), shift tab key (goes to previous heading), arrow keys, or by scrolling and selecting a heading.
|
|
21
21
|
|
|
22
|
-
When selecting a heading with the keyboard, the editor will immediately scroll to the selected heading. Hitting enter in the dialogue (or clicking somewhere else) will close the dialogue.
|
|
22
|
+
When selecting a heading with the keyboard, the editor will immediately scroll to the selected heading. Hitting enter in the dialogue (or clicking somewhere else) will close the dialogue. Hitting escape will close the dialogue & return to your original scroll/cursor position.
|
|
23
23
|
|
|
24
24
|
You can filter the list of headings using the search filter at the top of the panel.
|
|
25
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-heading-navigator",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
|
|
6
6
|
"prepare": "npm run dist",
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "com.bwat47.heading-navigator",
|
|
4
4
|
"app_min_version": "3.3",
|
|
5
|
-
"version": "0.3.
|
|
5
|
+
"version": "0.3.1",
|
|
6
6
|
"name": "Heading Navigator",
|
|
7
7
|
"description": "Overlay panel to navigate through headings in the markdown editor using the keyboard",
|
|
8
8
|
"author": "bwat47",
|
|
@@ -48,6 +48,6 @@
|
|
|
48
48
|
"type": "codeMirrorPlugin"
|
|
49
49
|
}
|
|
50
50
|
],
|
|
51
|
-
"_publish_hash": "sha256:
|
|
52
|
-
"_publish_commit": "main:
|
|
51
|
+
"_publish_hash": "sha256:49ebee208dc57e1b0a768d9c07fc0fd4ae03587772998c4665fc9b912fefd5b1",
|
|
52
|
+
"_publish_commit": "main:1386909d72ae73df0ad7bac66ebbae3402a3fcb2"
|
|
53
53
|
}
|