{"id":26923799,"url":"https://github.com/kotaindah55/animated-cursor","last_synced_at":"2026-04-30T19:32:06.149Z","repository":{"id":285569813,"uuid":"958574927","full_name":"kotaindah55/animated-cursor","owner":"kotaindah55","description":"Simple yet smooth animated cursor.","archived":false,"fork":false,"pushed_at":"2025-08-01T20:47:14.000Z","size":5532,"stargazers_count":9,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-01T22:37:44.607Z","etag":null,"topics":["animated-cursor","obsidian","obsidian-md","obsidian-plugin","smooth-cursor"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kotaindah55.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOGS.txt","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-01T12:24:08.000Z","updated_at":"2025-08-01T20:47:17.000Z","dependencies_parsed_at":"2025-07-03T00:19:14.417Z","dependency_job_id":"3cc3c134-1f3b-4406-ae30-a5ad7c5a5f3f","html_url":"https://github.com/kotaindah55/animated-cursor","commit_stats":null,"previous_names":["kotaindah55/animated-cursor"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/kotaindah55/animated-cursor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kotaindah55%2Fanimated-cursor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kotaindah55%2Fanimated-cursor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kotaindah55%2Fanimated-cursor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kotaindah55%2Fanimated-cursor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kotaindah55","download_url":"https://codeload.github.com/kotaindah55/animated-cursor/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kotaindah55%2Fanimated-cursor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32475192,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["animated-cursor","obsidian","obsidian-md","obsidian-plugin","smooth-cursor"],"created_at":"2025-04-02T01:42:40.436Z","updated_at":"2026-04-30T19:32:06.143Z","avatar_url":"https://github.com/kotaindah55.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Animated Cursor - Obsdian Plugin\n\n![latest-version] ![current-downloads] ![current-stars] ![open-issues]\n\nGive your cursor a simple, yet smooth, move animation. Inspired by Microsoft Office and VSCode smooth cursor.\n\n![animated-cursor.gif](./docs/assests/animated-cursor.gif)\n\n\u003e [!WARNING]\n\u003e \n\u003e Read **caveat** section below before installing this plugin!\n\n## 🚀 Features\n\n- Move and blink animation for the cursor.\n- Work on both hovering page preview and canvas.\n- Support multi-cursor.\n- Adjustable cursor speed and blink duration (via [Style Settings][style-settings] plugin).\n\n## 🎨 What makes it different?\n\n- **Works as native cursor**. This plugin patch existing Obsidian cursor, avoiding any unintended calculations. The same plugin before creates another cursor instance, yet still let Obsidian calculate its own cursor.\n- **Hardly relies on [CodeMirror][] API**. It's the secret of the consistency of the cursor behavior. Thus, it doesn't face any meaningful problems with multi-cursor, canvas, etc.\n\n## 📦 Installation\n\n- Manual\n    - Create a folder named `animated-cursor` under `YOUR_VAULT_NAME/.obsidian/plugins`.\n    - Place `manifest.json`, `main.js`, and `style.css` from the latest release into the folder.\n    - Enable it through the \"Community plugin\" setting tab.\n- In-app\n    - Open settings.\n    - Choose \"Community plugins\" setting tab.\n    - Turn off \"Restricted mode\" if it was enabled before.\n    - Click \"Browse\" at \"Community plugins\" item.\n    - Type \"Animated Cursor\" in the search box.\n    - Install and enable it.\n- Using [BRAT][].\n\n## ✍️ Usage\n\nSimply move the cursor by pressing arrow keys, clicking or dragging using your mouse. The cursor will stop blinking while it's moving.\n\n## ⚙️ Adjustment\n\nVia [Style Settings][style-settings] plugin you can:\n- adjust the cursor speed in miliseconds,\n- adjust the blink rate in miliseconds,\n- set the blink count in a sequence,\n- toggle infinity blinking.\n\nAdditionally, in the \"Animated Cursor\" plugin settings, you have an option to make the cursor move slightly more smoothly:\n- If turned on, move transition uses `transform` property, but the cursor seems to appear blurry.\n- If turned off, it uses `top` and `left` properties.\n\n\u003e [!Note]\n\u003e\n\u003e You can disable the blink by adjust the blink count to zero.\n\n## ⚠️ Caveat\n\nBecause this plugin uses DOM to draw the cursor, it could -_probably_- **cost expensive performance** due to frequently layout recomputation, especially when you repeatedly move the cursor.\n\n## 🐞 Known Bugs\n\n- Buggy multi-cursors on the table.\n- ~~Flicker/jitter effect occurs when the cursor is continously moved by holding the arrow keys.~~\n- ~~Weird behavior when move the cursor outside the table.~~\n\nFeel free to let me know if you find any bugs...\n\n## ©️ Attribution\n\nThis plugin includes some of the source codes developed by [Marijnh Haverbeke][marijnh] and the others at [CodeMirror][], with some modifications. All their works are licensed under MIT.\n\n## 🙏 Acknowledgment\n\nThanks to:\n- [VSCode](https://github.com/microsoft/vscode) for the smooth cursor concept.\n- [CodeMirror][], [Marijnh][], and its community.\n\n[CodeMirror]: https://codemirror.net\n[Marijnh]: https://github.com/marijnh\n[style-settings]: https://github.com/mgmeyers/obsidian-style-settings\n[BRAT]: https://github.com/TfTHacker/obsidian42-brat\n\n[latest-version]: https://img.shields.io/github/manifest-json/v/kotaindah55/animated-cursor?label=version\u0026link=https%3A%2F%2Fgithub.com%2Fkotaindah55%2Fanimated-cursor%2Freleases\n[current-downloads]: https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fgithub.com%2Fobsidianmd%2Fobsidian-releases%2Fraw%2Frefs%2Fheads%2Fmaster%2Fcommunity-plugin-stats.json\u0026query=%24.animated-cursor.downloads\u0026label=downloads\u0026color=green\n[current-stars]: https://img.shields.io/github/stars/kotaindah55/animated-cursor?style=flat\u0026link=https%3A%2F%2Fgithub.com%2Fkotaindah55%2Fanimated-cursor%2Fstargazers\n[open-issues]: https://img.shields.io/github/issues-search?query=repo%3Akotaindah55%2Fanimated-cursor%20is%3Aopen\u0026label=open%20issues\u0026color=red\u0026link=https%3A%2F%2Fgithub.com%2Fkotaindah55%2Fanimated-cursor%2Fissues\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkotaindah55%2Fanimated-cursor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkotaindah55%2Fanimated-cursor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkotaindah55%2Fanimated-cursor/lists"}