Enhance flyspelling.
* org.el (org-additional-option-like-keywords): Add keywords. (org-additional-option-like-keywords-for-flyspell): New constant to use with flyspell. (org-mode-flyspell-verify): Use the dedicated constant and don't check `org-startup-options'. Thanks to Bjarte Johansen for bringing this up.
This commit is contained in:
parent
9f66ab1d84
commit
4c2c6dba7b
15
lisp/org.el
15
lisp/org.el
|
@ -11195,20 +11195,32 @@ This function can be used in a hook."
|
|||
"BEGIN:" "END:"
|
||||
"ORGTBL" "TBLFM:" "TBLNAME:"
|
||||
"BEGIN_EXAMPLE" "END_EXAMPLE"
|
||||
"BEGIN_VERBATIM" "END_VERBATIM"
|
||||
"BEGIN_QUOTE" "END_QUOTE"
|
||||
"BEGIN_VERSE" "END_VERSE"
|
||||
"BEGIN_CENTER" "END_CENTER"
|
||||
"BEGIN_SRC" "END_SRC"
|
||||
"BEGIN_RESULT" "END_RESULT"
|
||||
"BEGIN_lstlisting" "END_lstlisting"
|
||||
"NAME:" "RESULTS:"
|
||||
"HEADER:" "HEADERS:"
|
||||
"CATEGORY:" "COLUMNS:" "PROPERTY:"
|
||||
"CAPTION:" "LABEL:"
|
||||
"SETUPFILE:"
|
||||
"STARTUP:"
|
||||
"OPTIONS:"
|
||||
"INCLUDE:"
|
||||
"BIND:"
|
||||
"MACRO:"))
|
||||
|
||||
(defconst org-additional-option-like-keywords-for-flyspell
|
||||
(delete-dups
|
||||
(split-string
|
||||
(mapconcat (lambda(k) (replace-regexp-in-string
|
||||
"_\\|:" " "
|
||||
(concat k " " (downcase k) " " (upcase k))))
|
||||
org-additional-option-like-keywords " ") " +" t)))
|
||||
|
||||
(defcustom org-structure-template-alist
|
||||
'(
|
||||
("s" "#+BEGIN_SRC ?\n\n#+END_SRC"
|
||||
|
@ -21796,7 +21808,8 @@ To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
|
|||
(not (get-text-property pos 'org-no-flyspell))
|
||||
(not (member word org-todo-keywords-1))
|
||||
(not (member word org-all-time-keywords))
|
||||
(not (member word org-additional-option-like-keywords)))))
|
||||
(not (member word (mapcar 'car org-startup-options)))
|
||||
(not (member word org-additional-option-like-keywords-for-flyspell)))))
|
||||
|
||||
(defun org-remove-flyspell-overlays-in (beg end)
|
||||
"Remove flyspell overlays in region."
|
||||
|
|
Loading…
Reference in New Issue