Skip to content

Commit 1f1bdca

Browse files
committed
Improve compliance with Obsidian guidelines
1 parent 6abca7b commit 1f1bdca

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"id": "obsidian-gotoheading",
2+
"id": "oin-gotoheading",
33
"name": "Go To Heading",
44
"version": "0.1.0",
55
"minAppVersion": "1.4.11",

src/main.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@ export default class GotoHeadingPlugin extends Plugin {
1414

1515
this.addCommand({
1616
id: "join-gotoheading-previous",
17-
name: "Go To Heading: Previous Heading",
17+
name: "Go To Heading: Previous heading",
1818
editorCallback: (editor: Editor, view: MarkdownView) => {
1919
this.goToRelativeHeading(editor, view, -1);
2020
}
2121
});
2222
this.addCommand({
2323
id: "join-gotoheading-next",
24-
name: "Go To Heading: Next Heading",
24+
name: "Go To Heading: Next heading",
2525
editorCallback: (editor: Editor, view: MarkdownView) => {
2626
this.goToRelativeHeading(editor, view, 1);
2727
}
2828
});
2929
this.addCommand({
3030
id: "join-gotoheading-switcher",
31-
name: "Go To Heading: Open Switcher",
31+
name: "Go To Heading: Open switcher",
3232
editorCallback: (editor: Editor, view: MarkdownView) => {
3333
this.openHeadingSwitcher(editor, view);
3434
},

0 commit comments

Comments
 (0)