1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-16 17:19:41 +00:00

(org-self-insert-command)

(orgtbl-self-insert-command, org-delete-char)
(org-delete-backward-char): Set the `flyspell-delayed' property.
This commit is contained in:
Carsten Dominik 2007-03-04 07:38:20 +00:00
parent 74b708cd18
commit 7373bc42b1

View File

@ -18767,6 +18767,13 @@ because, in this case the deletion might narrow the column."
(put 'org-delete-char 'delete-selection 'supersede)
(put 'org-delete-backward-char 'delete-selection 'supersede)
;; Make `flyspell-mode' delay after some commands
(put 'org-self-insert-command 'flyspell-delayed t)
(put 'orgtbl-self-insert-command 'flyspell-delayed t)
(put 'org-delete-char 'flyspell-delayed t)
(put 'org-delete-backward-char 'flyspell-delayed t)
;; How to do this: Measure non-white length of current string
;; If equal to column width, we should realign.