Fix review issues: naming convention, copyright notice and UI text case

This commit is contained in:
Hiroo Takizawa 2025-03-23 16:24:48 +09:00
parent cf4a606460
commit 877f89318e
4 changed files with 9 additions and 11 deletions

View file

@ -1,4 +1,4 @@
Copyright (C) 2020-2025 by Dynalist Inc.
Copyright (C) 2025 by takitsuba
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.

View file

@ -1,4 +1,4 @@
# Obsidian Auto Bullet
# Auto Bullet
This plugin automatically inserts bullet points ("- ") when you type spaces or tabs at the beginning of a line in Obsidian.
@ -49,4 +49,4 @@ This plugin is inspired by the automatic bullet point feature in [Cosense](https
## License
Released under the MIT License.
See [LICENSE](LICENSE).

View file

@ -196,7 +196,7 @@ class AutoBulletSettingTab extends PluginSettingTab {
containerEl.empty();
new Setting(containerEl)
.setName('Half-width Space')
.setName('Half-width space')
.setDesc('Insert bullet points when you press a half-width space at the beginning of a line')
.addToggle(toggle => toggle
.setValue(this.plugin.settings.enableHalfWidthSpace)
@ -206,7 +206,7 @@ class AutoBulletSettingTab extends PluginSettingTab {
}));
new Setting(containerEl)
.setName('Full-width Space')
.setName('Full-width space')
.setDesc('Insert bullet points when you press a full-width space at the beginning of a line')
.addToggle(toggle => toggle
.setValue(this.plugin.settings.enableFullWidthSpace)
@ -226,7 +226,7 @@ class AutoBulletSettingTab extends PluginSettingTab {
}));
new Setting(containerEl)
.setName('Customize Home Key')
.setName('Customize home key')
.setDesc('Move cursor after bullet point (- ) when pressing Home or Ctrl+A in a bullet line')
.addToggle(toggle => toggle
.setValue(this.plugin.settings.customizeHomeKey)

View file

@ -6,7 +6,5 @@
"description": "Automatically inserts bullet points when you type spaces or tabs at the beginning of a line.",
"author": "takitsuba",
"authorUrl": "https://github.com/takitsuba",
"fundingUrl": "",
"isDesktopOnly": false,
"hasSettings": true
"isDesktopOnly": false
}