I showed you my source code, pls respond
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#+TITLE: Spelling #+AUTHOR: Christopher James Hayward #+EMAIL: chris@chrishayward.xyz
#+PROPERTY: header-args:emacs-lisp :tangle spelling.el :comments org #+PROPERTY: header-args :results silent :eval no-export :comments org
#+OPTIONS: num:nil toc:nil todo:nil tasks:nil tags:nil #+OPTIONS: skip:nil author:nil email:nil creator:nil timestamp:nil
Real time checking and one-shot methods to check and correct common spelling mistakes.
* Config
Configure ~ispell~[fn:1] as a back-end with ~flyspell~[fn:2] for real-time checking and highlighting of spelling mistakes.
#+begin_src emacs-lisp (use-package ispell :after org :custom (ispell-dictionary dotfiles/lang)) #+end_src
* Shortcuts
Toggle highlighting within buffer specific contexts with =SPC t s=:
#+begin_src emacs-lisp (dotfiles/leader "ts" '(flyspell-buffer :which-key "Spelling")) #+end_src
* Footnotes
[fn:1] https://gnu.org/software/ispell/
[fn:2] https://emacswiki.org/emacs/FlySpell
|