Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xuchunyang/flyspell-popup
Correcting words with Flyspell in popup menus
https://github.com/xuchunyang/flyspell-popup
Last synced: about 1 month ago
JSON representation
Correcting words with Flyspell in popup menus
- Host: GitHub
- URL: https://github.com/xuchunyang/flyspell-popup
- Owner: xuchunyang
- Created: 2015-06-28T13:08:44.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-29T08:18:42.000Z (over 7 years ago)
- Last Synced: 2024-10-16T01:46:21.362Z (3 months ago)
- Language: Emacs Lisp
- Size: 47.9 KB
- Stars: 36
- Watchers: 6
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
* flyspell-popup
[[http://stable.melpa.org/#/flyspell-popup][file:http://stable.melpa.org/packages/flyspell-popup-badge.svg]]
[[http://melpa.org/#/flyspell-popup][file:http://melpa.org/packages/flyspell-popup-badge.svg]]
[[http://www.gnu.org/licenses/gpl-3.0.html][file:http://img.shields.io/:license-gpl3-blue.svg]]*Correct the misspelled word in popup menu:*
[[./images/screenshot-1.png]]
** Usage
Call ~flyspell-popup-correct~ to correct misspelled word at point with a
Popup Menu. You might want to bind it to a short key, for example:#+BEGIN_SRC emacs-lisp
(define-key flyspell-mode-map (kbd "C-;") #'flyspell-popup-correct)
#+END_SRCYou can also enable ~flyspell-popup-auto-correct-mode~ to popup that Popup
Menu automatically with a delay (default 1.6 seconds):#+BEGIN_SRC emacs-lisp
(add-hook 'flyspell-mode-hook #'flyspell-popup-auto-correct-mode)
#+END_SRC