Variable: antlr-action-visibility
antlr-action-visibility is a customizable variable defined in
antlr-mode.el.gz.
Value
3
Documentation
Visibility of actions when command antlr-hide-actions is used.
If nil, the actions with their surrounding braces are hidden. If a number, do not hide the braces, only hide the contents if its length is greater than this number.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/antlr-mode.el.gz
;;;===========================================================================
;;; Hide/Unhide, Indent/Tabs
;;;===========================================================================
(defcustom antlr-action-visibility 3
"Visibility of actions when command `antlr-hide-actions' is used.
If nil, the actions with their surrounding braces are hidden. If a
number, do not hide the braces, only hide the contents if its length is
greater than this number."
:type '(choice (const :tag "Completely hidden" nil)
(integer :tag "Hidden if longer than" :value 3)))