Variable: TeX-fold-menu
TeX-fold-menu is a variable defined in tex.el.
Value
Large value
("Show/Hide"
["Fold Mode" TeX-fold-mode :style toggle :selected
(and (boundp 'TeX-fold-mode) TeX-fold-mode) :help
"Toggle folding mode"]
"-"
["Hide All in Current Buffer" TeX-fold-buffer :active
(and (boundp 'TeX-fold-mode) TeX-fold-mode) :help
"Hide all configured TeX constructs in the current buffer"]
["Hide All in Current Region" TeX-fold-region :active
(and (boundp 'TeX-fold-mode) TeX-fold-mode) :help
"Hide all configured TeX constructs in the marked region"]
["Hide All in Current Paragraph" TeX-fold-paragraph :active
(and (boundp 'TeX-fold-mode) TeX-fold-mode) :help
"Hide all configured TeX constructs in the paragraph containing point"]
["Hide All in Current Section" TeX-fold-section :active
(and (boundp 'TeX-fold-mode) TeX-fold-mode) :help
"Hide all configured TeX constructs in the section containing point"]
["Hide Current Macro" TeX-fold-macro :active
(and (boundp 'TeX-fold-mode) TeX-fold-mode) :help
"Hide the macro containing point"]
["Hide Current Environment" TeX-fold-env :visible
(not (eq major-mode 'plain-TeX-mode)) :active
(and (boundp 'TeX-fold-mode) TeX-fold-mode) :help
"Hide the environment containing point"]
["Hide Current Comment" TeX-fold-comment :active
(and (boundp 'TeX-fold-mode) TeX-fold-mode) :help
"Hide the comment containing point"]
"-"
["Show All in Current Buffer" TeX-fold-clearout-buffer :active
(and (boundp 'TeX-fold-mode) TeX-fold-mode) :help
"Permanently show all folded content again"]
["Show All in Current Region" TeX-fold-clearout-region :active
(and (boundp 'TeX-fold-mode) TeX-fold-mode) :help
"Permanently show all folded content in marked region"]
["Show All in Current Paragraph" TeX-fold-clearout-paragraph :active
(and (boundp 'TeX-fold-mode) TeX-fold-mode) :help
"Permanently show all folded content in paragraph containing point"]
["Show All in Current Section" TeX-fold-clearout-section :active
(and (boundp 'TeX-fold-mode) TeX-fold-mode) :help
"Permanently show all folded content in section containing point"]
["Show Current Item" TeX-fold-clearout-item :active
(and (boundp 'TeX-fold-mode) TeX-fold-mode) :help
"Permanently show the item containing point"]
"-"
["Hide or Show Current Item" TeX-fold-dwim :active
(and (boundp 'TeX-fold-mode) TeX-fold-mode) :help
"Hide or show the item containing point"])
Documentation
Menu definition for commands from tex-fold.el.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defvar TeX-fold-menu
'("Show/Hide"
["Fold Mode" TeX-fold-mode
:style toggle
:selected (and (boundp 'TeX-fold-mode) TeX-fold-mode)
:help "Toggle folding mode"]
"-"
["Hide All in Current Buffer" TeX-fold-buffer
:active (and (boundp 'TeX-fold-mode) TeX-fold-mode)
:help "Hide all configured TeX constructs in the current buffer"]
["Hide All in Current Region" TeX-fold-region
:active (and (boundp 'TeX-fold-mode) TeX-fold-mode)
:help "Hide all configured TeX constructs in the marked region"]
["Hide All in Current Paragraph" TeX-fold-paragraph
:active (and (boundp 'TeX-fold-mode) TeX-fold-mode)
:help "Hide all configured TeX constructs in the paragraph containing point"]
["Hide All in Current Section" TeX-fold-section
:active (and (boundp 'TeX-fold-mode) TeX-fold-mode)
:help "Hide all configured TeX constructs in the section containing point"]
["Hide Current Macro" TeX-fold-macro
:active (and (boundp 'TeX-fold-mode) TeX-fold-mode)
:help "Hide the macro containing point"]
["Hide Current Environment" TeX-fold-env
:visible (not (eq major-mode 'plain-TeX-mode))
:active (and (boundp 'TeX-fold-mode) TeX-fold-mode)
:help "Hide the environment containing point"]
["Hide Current Comment" TeX-fold-comment
:active (and (boundp 'TeX-fold-mode) TeX-fold-mode)
:help "Hide the comment containing point"]
"-"
["Show All in Current Buffer" TeX-fold-clearout-buffer
:active (and (boundp 'TeX-fold-mode) TeX-fold-mode)
:help "Permanently show all folded content again"]
["Show All in Current Region" TeX-fold-clearout-region
:active (and (boundp 'TeX-fold-mode) TeX-fold-mode)
:help "Permanently show all folded content in marked region"]
["Show All in Current Paragraph" TeX-fold-clearout-paragraph
:active (and (boundp 'TeX-fold-mode) TeX-fold-mode)
:help "Permanently show all folded content in paragraph containing point"]
["Show All in Current Section" TeX-fold-clearout-section
:active (and (boundp 'TeX-fold-mode) TeX-fold-mode)
:help "Permanently show all folded content in section containing point"]
["Show Current Item" TeX-fold-clearout-item
:active (and (boundp 'TeX-fold-mode) TeX-fold-mode)
:help "Permanently show the item containing point"]
"-"
["Hide or Show Current Item" TeX-fold-dwim
:active (and (boundp 'TeX-fold-mode) TeX-fold-mode)
:help "Hide or show the item containing point"])
"Menu definition for commands from tex-fold.el.")