mirror of
https://github.com/BoostIO/BoostNote-App.git
synced 2026-04-26 21:05:55 +03:00
[GH-ISSUE #695] Add spellcheck support #363
Labels
No labels
android 🤖
assigned to core 🦹
bug 🐛
documentation 📚
documentation 📚
duplicate 🚫
external issue 🔼
external issue 🔼
feature request 🌟
funded on issuehunt 💵
help wanted 🆘
improvement request 🔨
improvement request 🔨
ios 🍎
mobile 📱
needs investigation 🔬
needs more info ℹ️
needs specs 📐
plugin idea 🔌
plugin idea 🔌
poll 🗳️
pull-request
question ❓
rewarded on issuehunt 🎁
security issue 🔑
won’t fix ❌
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/BoostNote-App#363
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @zez9787 on GitHub (Nov 24, 2020).
Original GitHub issue: https://github.com/BoostIO/BoostNote-App/issues/695
Current behavior
The current version does not support spellcheck.
Expected behavior
It would nice to have spellcheck support as a feature toggle in preferences. This issue was already created on the regular version of BoostNote Issue Here.
Steps to reproduce
Type any misspelled word.
Environment
Desktop/Web
IssueHunt Summary
Backers (Total: $50.00)
Become a backer now!
Or submit a pull request to get the deposits!
Tips
@Rokt33r commented on GitHub (Aug 23, 2021):
Electron itself should provide a spellchecker now so we can enable it quite easily.
https://www.electronjs.org/docs/tutorial/spellchecker
@issuehunt-oss[bot] commented on GitHub (Sep 14, 2021):
@boostio has funded $50.00 to this issue.
@liu971227-sys commented on GitHub (Feb 15, 2026):
PR submitted: https://github.com/BoostIO/BoostNote-App/pull/1617
This implements the IssueHunt bounty request (spellcheck
support) by enabling Chromium spellchecker in the Electron app:
This
makes the built-in spellchecker available; editor behavior can still be controlled via app settings/attributes.
@nicepopo86-lang commented on GitHub (Feb 16, 2026):
I opened a PR for this: https://github.com/BoostIO/BoostNote-App/pull/1618\n\nIt enforces spellcheck attributes directly on the CodeMirror contenteditable input and keeps them in sync with the setting.
@nicepopo86-lang commented on GitHub (Feb 16, 2026):
Follow-up clarification: the PR keeps the spellcheck behavior synced with the settings toggle key general.enableSpellcheck by applying attributes directly on the CodeMirror contenteditable input.
@lmee commented on GitHub (Feb 16, 2026):
I read "Add spellcheck support" end-to-end and went through the full thread.
Problem I see: <!-- Issuehunt Badges --.
Root-cause hypothesis: a stale-state race between optimistic updates and confirmed data.
First patch plan: reproduce the issue against acceptance criteria, isolate the root cause in the relevant module, and submit a focused fix with regression tests.
If you want this path, I can share deterministic repro notes up front and then submit the minimal fix.