File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11{
2- "id" : " obsidian -gotoheading" ,
2+ "id" : " oin -gotoheading" ,
33 "name" : " Go To Heading" ,
44 "version" : " 0.1.0" ,
55 "minAppVersion" : " 1.4.11" ,
Original file line number Diff line number Diff 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 } ,
You can’t perform that action at this time.
0 commit comments