From 3453fe0fa90a3644c72703171e66455ef40a3ed6 Mon Sep 17 00:00:00 2001 From: IdanL Date: Wed, 11 Dec 2024 22:47:50 +0200 Subject: [PATCH] change command and setting to sentence case --- components/Settings.ts | 2 +- main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/Settings.ts b/components/Settings.ts index f95d193..74c2893 100644 --- a/components/Settings.ts +++ b/components/Settings.ts @@ -41,7 +41,7 @@ export default class RedirectSettingsTab extends PluginSettingTab { }); new Setting(containerEl) - .setName("Delete the _forwards Folder") + .setName("Delete the _forwards folder") .setDesc( "Before uninstalling the plugin, manually delete the `_forwards` folder to remove unnecessary files. This cannot be undone." ) diff --git a/main.ts b/main.ts index bfae939..e2a3a11 100644 --- a/main.ts +++ b/main.ts @@ -169,7 +169,7 @@ export default class RedirectPlugin extends Plugin { this.addCommand({ id: "paste-redirect-syntax", - name: "Paste Redirect Syntax onto Selection", + name: "Paste redirect syntax onto selection", editorCallback: (editor, view) => { const selection = editor.getSelection(); editor.replaceSelection(`::>[[${selection}]]`);