Revert macros to ...! name convention (elisp doesn't like @...)
This commit is contained in:
parent
b64d5554e3
commit
33c88d4f82
125 changed files with 877 additions and 880 deletions
|
@ -1,6 +1,6 @@
|
|||
;;; feature/spellcheck/config.el
|
||||
|
||||
(@def-package flyspell ; built-in
|
||||
(def-package! flyspell ; built-in
|
||||
:commands flyspell-mode
|
||||
:init
|
||||
(add-hook 'text-mode-hook 'flyspell-mode)
|
||||
|
@ -9,25 +9,25 @@
|
|||
ispell-list-command "--list"
|
||||
ispell-extr-args '("--dont-tex-check-comments"))
|
||||
|
||||
(@map :map flyspell-mode-map
|
||||
(map! :map flyspell-mode-map
|
||||
:localleader
|
||||
:n "s" 'flyspell-correct-word-generic
|
||||
:n "S" 'flyspell-correct-previous-word-generic))
|
||||
|
||||
|
||||
(@def-package flyspell-correct
|
||||
(def-package! flyspell-correct
|
||||
:commands (flyspell-correct-word-generic
|
||||
flyspell-correct-previous-word-generic))
|
||||
|
||||
|
||||
(@def-package flyspell-correct-popup
|
||||
(def-package! flyspell-correct-popup
|
||||
:after flyspell-correct
|
||||
:config
|
||||
(setq flyspell-popup-correct-delay 0.8)
|
||||
(define-key popup-menu-keymap [escape] 'keyboard-quit))
|
||||
|
||||
|
||||
(@def-package flyspell-correct-helm :after flyspell-correct)
|
||||
(def-package! flyspell-correct-helm :after flyspell-correct)
|
||||
|
||||
|
||||
(@def-package flyspell-correct-ivy :after flyspell-correct)
|
||||
(def-package! flyspell-correct-ivy :after flyspell-correct)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue