Skip to content

Commit da1831a

Browse files
committed
lower case command names
1 parent 8549da2 commit da1831a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/obsidian/src/main.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -258,15 +258,15 @@ export default class MetaBindPlugin extends Plugin implements IPlugin {
258258
addCommands(): void {
259259
this.addCommand({
260260
id: 'open-docs',
261-
name: 'Open Docs',
261+
name: 'Open docs',
262262
callback: () => {
263263
window.open('https://mprojectscode.github.io/obsidian-meta-bind-plugin-docs/', '_blank');
264264
},
265265
});
266266

267267
this.addCommand({
268268
id: 'open-playground',
269-
name: 'Open Playground',
269+
name: 'Open playground',
270270
callback: () => {
271271
void this.activateView(MB_PLAYGROUND_VIEW_TYPE);
272272
},
@@ -282,7 +282,7 @@ export default class MetaBindPlugin extends Plugin implements IPlugin {
282282

283283
this.addCommand({
284284
id: 'open-button-builder',
285-
name: 'Open Button Builder',
285+
name: 'Open button builder',
286286
callback: () => {
287287
this.internal.openButtonBuilderModal({
288288
onOkay: (config): void => {
@@ -297,7 +297,7 @@ export default class MetaBindPlugin extends Plugin implements IPlugin {
297297

298298
this.addCommand({
299299
id: 'copy-command-id',
300-
name: 'Select and Copy Command ID',
300+
name: 'Select and copy command id',
301301
callback: () => {
302302
this.internal.openCommandSelectModal(command => {
303303
void window.navigator.clipboard.writeText(command.id);

0 commit comments

Comments
 (0)