GNU-devel ELPA - jit-spell

jit-spell

Description
Just-in-time spell checking
Latest
jit-spell-0.4.0.20240323.72834.tar (.sig), 2024-Mar-31, 40.0 KiB
Maintainer
Augusto Stoffel <arstoffel@gmail.com>
Atom feed
jit-spell.xml
Website
https://github.com/astoff/jit-spell
Browse ELPA's repository
CGit or Gitweb
Badge

To install this package from Emacs, use package-install or list-packages.

Full description

GNU ELPA

jit-spell is a spell-checking package for Emacs. It highlights all misspelled words in a window, just like a word processor or web browser does.

screenshot.png

Figure 1: Correcting a misspelling with jit-spell

This behavior is different from the built-in Flyspell package, which only checks words as the cursor moves over them. Moreover, unlike Flyspell, jit-spell communicates with the spell-checking subprocess entirely asynchronously, which can lead to a noticeable performance improvement.

jit-spell is part of GNU ELPA and can be installed with M-x package-install RET jit-spell RET.

1. Usage

To enable spell checking in a buffer, type M-x jit-spell-mode RET. To correct a misspelling, you can right-click the word (assuming you have context-menu-mode activated) or call the command jit-spell-correct-word, which uses the minibuffer to read a correction or accept the word.

To make your settings permanent, you may wish to add some variant of the following to your init file:

(add-hook 'text-mode-hook 'jit-spell-mode)
(add-hook 'prog-mode-hook 'jit-spell-mode)
(with-eval-after-load 'jit-spell
  (define-key jit-spell-mode-map (kbd "C-;") 'jit-spell-correct-word))

To pick a spell checker and dictionaries, jit-spell uses Emacs's built-in ispell support code. For instance, ispell-change-dictionary temporarily changes the dictionary of the current buffer. Try also M-x customize-group RET ispell RET to see a listing of all possible settings.

2. Major mode support

Often there are regions of the buffer that should be ignored for spell-checking purposes. In most cases, no additional configuration is necessary.

The simplest mechanism to make adjustments is the user option jit-spell-ignored-faces. Any word fontified with one of these faces in this list ignored by jit-spell. To find out which faces are present on a given character, you can use the describe-char command.

In all programming language modes, spell checking is restricted to comments, docstrings and strings. This can be modified by customizing the variable jit-spell-prog-mode-faces.

3. Contributing

Discussions, suggestions and code contributions are welcome! Since this package is part of GNU ELPA, contributions require a copyright assignment to the FSF.

Old versions

jit-spell-0.3.0.20240316.102941.tar.lz2024-Mar-169.27 KiB
jit-spell-0.3.0.20240301.183327.tar.lz2024-Mar-019.21 KiB
jit-spell-0.3.0.20230826.155115.tar.lz2023-Aug-269.21 KiB
jit-spell-0.3.0.20230330.165659.tar.lz2023-Mar-308.71 KiB
jit-spell-0.2.0.20230326.142342.tar.lz2023-Mar-268.72 KiB
jit-spell-0.2.0.20230319.101638.tar.lz2023-Mar-228.66 KiB
jit-spell-0.2.0.20230311.91341.tar.lz2023-Mar-118.47 KiB
jit-spell-0.1.0.20230309.120447.tar.lz2023-Mar-098.56 KiB
jit-spell-0.1.0.20230308.113033.tar.lz2023-Mar-088.51 KiB
jit-spell-0.1.0.20230305.122942.tar.lz2023-Mar-057.56 KiB