Replaces the default Obsidian caret with a smooth and round one. Works only with enabled Vim mode during editing.
- Smooth caret which stops blinking after 20 iterations.
- Update the
manifest.json
with a new version number, such as1.0.1
, and the minimum Obsidian version required for your latest release. - Update the
versions.json
file with"new-plugin-version": "minimum-obsidian-version"
so older versions of Obsidian can download an older version of your plugin that's compatible. - Tag the commit with a new version. Use the exact version number, don't include a prefix
v
. See here for an example: https://github.com/obsidianmd/obsidian-sample-plugin/releases
You can simplify the version bump process by running
npm version patch
,npm version minor
ornpm version major
after updatingminAppVersion
manually inmanifest.json
. The command will bump version inmanifest.json
andpackage.json
, and add the entry for the new version toversions.json
- Clone this repo.
pnpm install
to install dependenciespnpm dev
to start compilation in watch mode.
- Copy over
main.js
,styles.css
,manifest.json
to your vaultVaultFolder/.obsidian/plugins/your-plugin-id/
.