├── .czrc ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── .gitignore ├── .husky └── commit-msg ├── .markdownlint-cli2.mjs ├── .markdownlint-cli2.mts ├── .npmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── commitlint.config.ts ├── cspell.json ├── eslint.config.mts ├── manifest.json ├── package.json ├── src ├── InvalidCharacterAction.ts ├── Plugin.ts ├── PluginSettings.ts ├── PluginSettingsManager.ts ├── PluginSettingsTab.ts ├── PluginTypes.ts └── main.ts ├── tsconfig.json └── versions.json /.czrc: -------------------------------------------------------------------------------- 1 | { 2 | "path": "./node_modules/cz-conventional-changelog" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.markdownlint-cli2.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/.markdownlint-cli2.mjs -------------------------------------------------------------------------------- /.markdownlint-cli2.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/.markdownlint-cli2.mts -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/commitlint.config.ts -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/cspell.json -------------------------------------------------------------------------------- /eslint.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/eslint.config.mts -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/package.json -------------------------------------------------------------------------------- /src/InvalidCharacterAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/src/InvalidCharacterAction.ts -------------------------------------------------------------------------------- /src/Plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/src/Plugin.ts -------------------------------------------------------------------------------- /src/PluginSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/src/PluginSettings.ts -------------------------------------------------------------------------------- /src/PluginSettingsManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/src/PluginSettingsManager.ts -------------------------------------------------------------------------------- /src/PluginSettingsTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/src/PluginSettingsTab.ts -------------------------------------------------------------------------------- /src/PluginTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/src/PluginTypes.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/src/main.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnaoumov/obsidian-smart-rename/HEAD/versions.json --------------------------------------------------------------------------------