{"id":16662684,"url":"https://github.com/leotaku/flycheck-aspell","last_synced_at":"2026-04-09T14:36:47.830Z","repository":{"id":56366952,"uuid":"188679008","full_name":"leotaku/flycheck-aspell","owner":"leotaku","description":"Spell check in Emacs using Flycheck/Flymake and Aspell","archived":false,"fork":false,"pushed_at":"2025-01-25T21:02:28.000Z","size":343,"stargazers_count":43,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-16T06:32:55.152Z","etag":null,"topics":["aspell","emacs","flycheck","spellcheck"],"latest_commit_sha":null,"homepage":"","language":"Emacs Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/leotaku.png","metadata":{"files":{"readme":"README-FLYCHECK.md","changelog":null,"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}},"created_at":"2019-05-26T12:17:13.000Z","updated_at":"2025-01-25T21:02:32.000Z","dependencies_parsed_at":"2024-10-27T11:47:53.534Z","dependency_job_id":"ef9afb4e-7d09-4b3e-bd43-7621c2d822ef","html_url":"https://github.com/leotaku/flycheck-aspell","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leotaku%2Fflycheck-aspell","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leotaku%2Fflycheck-aspell/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leotaku%2Fflycheck-aspell/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leotaku%2Fflycheck-aspell/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leotaku","download_url":"https://codeload.github.com/leotaku/flycheck-aspell/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243950063,"owners_count":20373658,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["aspell","emacs","flycheck","spellcheck"],"created_at":"2024-10-12T10:38:35.716Z","updated_at":"2026-04-09T14:36:42.794Z","avatar_url":"https://github.com/leotaku.png","language":"Emacs Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"# flycheck-aspell\n\n[![GitHub License](https://img.shields.io/github/license/leotaku/flycheck-aspell?logo=none\u0026style=flat)](https://spdx.org/licenses/GPL-3.0-or-later.html)\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/leotaku/flycheck-aspell/check.yml?logo=none\u0026style=flat)](https://github.com/leotaku/flycheck-aspell/actions)\n[![flycheck-aspell on MELPA](https://melpa.org/packages/flycheck-aspell-badge.svg)](https://melpa.org/#/flycheck-aspell)\n\n## Basic usage\n\nFor natively supported modes, register your preferred checkers with Flycheck and then start `flycheck-mode` in the buffer you would like to spell-check.\n\n```emacs-lisp\n;; Ensure `flycheck-aspell' is available\n(require 'flycheck-aspell)\n;; If you want to check TeX/LaTeX/ConTeXt buffers\n(add-to-list 'flycheck-checkers 'tex-aspell-dynamic)\n;; If you want to check Markdown/GFM buffers\n(add-to-list 'flycheck-checkers 'markdown-aspell-dynamic)\n;; If you want to check HTML buffers\n(add-to-list 'flycheck-checkers 'html-aspell-dynamic)\n;; If you want to check XML/SGML buffers\n(add-to-list 'flycheck-checkers 'xml-aspell-dynamic)\n;; If you want to check Nroff/Troff/Groff buffers\n(add-to-list 'flycheck-checkers 'nroff-aspell-dynamic)\n;; If you want to check Texinfo buffers\n(add-to-list 'flycheck-checkers 'texinfo-aspell-dynamic)\n;; If you want to check comments and strings for C-like languages\n(add-to-list 'flycheck-checkers 'c-aspell-dynamic)\n;; If you want to check message buffers\n(add-to-list 'flycheck-checkers 'mail-aspell-dynamic)\n```\n\nIf you want to enable spell checking for a mode that is not in the above list, you should define and register an additional checker for that mode as seen below.\n\n``` emacs-lisp\n;; Because Aspell does not support Org syntax, the user has\n;; to define a checker with the desired flags themselves.\n(flycheck-aspell-define-checker \"org\"\n  \"Org\" (\"--add-filter\" \"url\")\n  (org-mode))\n(add-to-list 'flycheck-checkers 'org-aspell-dynamic)\n```\n\nIt might be wise to skim the [Flycheck docs](https://www.flycheck.org/en/latest/) to learn how to best use and configure Flycheck.\n\n## Other configuration snippets\n\nYou may also want to advice `ispell-pdict-save` to refresh flycheck when inserting new entries into your local dictionary.\nThis way highlighting instantly updates when you add a previously unknown word.\n\n```emacs-lisp\n(advice-add #'ispell-pdict-save :after #'flycheck-maybe-recheck)\n(defun flycheck-maybe-recheck (_)\n  (when (bound-and-true-p flycheck-mode)\n   (flycheck-buffer)))\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleotaku%2Fflycheck-aspell","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleotaku%2Fflycheck-aspell","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleotaku%2Fflycheck-aspell/lists"}