ispell-menu-map
ispell-menu-map is a variable defined in `
ispell.el
'.
Its value is shown
below.
- This variable may be risky if used as a file-local variable.
Documentation:
Key map for ispell menu.
Value:
(keymap
(ispell-buffer menu-item "Spell-Check Buffer" ispell-buffer :help "Check spelling of selected buffer")
(ispell-message menu-item "Spell-Check Message" ispell-message :visible
(eq major-mode 'mail-mode)
:help "Skip headers and included message text")
(ispell-region menu-item "Spell-Check Region" ispell-region :enable mark-active :help "Spell-check text in marked region")
(ispell-comments-and-strings menu-item "Spell-Check Comments" ispell-comments-and-strings :help "Spell-check only comments and strings")
(ispell-word menu-item "Spell-Check Word" ispell-word :help "Spell-check word at cursor")
(ispell-continue menu-item "Continue Spell-Checking" ispell-continue :enable
(and
(boundp 'ispell-region-end)
(marker-position ispell-region-end)
(equal
(marker-buffer ispell-region-end)
(current-buffer)))
:help "Continue spell checking last region")
(ispell-complete-word-interior-frag menu-item "Complete Word Fragment" ispell-complete-word-interior-frag :help "Complete word fragment at cursor")
(ispell-complete-word menu-item "Complete Word" ispell-complete-word :help "Complete word at cursor using dictionary")
(flyspell-mode menu-item "Automatic spell checking (Flyspell)" flyspell-mode :help "Check spelling while you edit the text" :button
(:toggle bound-and-true-p flyspell-mode))
(ispell-help menu-item "Help"
(lambda nil
(interactive)
(describe-function 'ispell-help))
:help "Show standard Ispell keybindings and commands")
(ispell-customize menu-item "Customize..."
(lambda nil
(interactive)
(customize-group 'ispell))
:help "Customize spell checking options")
(ispell-pdict-save menu-item "Save Dictionary"
(lambda nil
(interactive)
(ispell-pdict-save t t))
:help "Save personal dictionary")
(ispell-kill-ispell menu-item "Kill Process"
(lambda nil
(interactive)
(ispell-kill-ispell nil 'clear))
:enable
(and
(boundp 'ispell-process)
ispell-process
(eq
(ispell-process-status)
'run))
:help "Terminate Ispell subprocess")
(ispell-change-dictionary menu-item "Change Dictionary..." ispell-change-dictionary :help "Supply explicit dictionary file name")
"Spell")