Function: antlr-v4-mode

antlr-v4-mode is an autoloaded, interactive and byte-compiled function defined in antlr-mode.el.gz.

Signature

(antlr-v4-mode)

Documentation

Major mode for editing ANTLR v4 grammar files.

In addition to any hooks its parent mode antlr-mode might have run, this mode runs the hook antlr-v4-mode-hook, as the final or penultimate step during initialization.

Probably introduced at or before Emacs version 31.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/antlr-mode.el.gz
;;;###autoload
(define-derived-mode antlr-v4-mode antlr-mode
  "Antlr" ; use this in the menubar, see below for the mode line
  "Major mode for editing ANTLR v4 grammar files."
  :syntax-table nil
  :abbrev-table nil
  (set (make-local-variable 'antlr-tool-version) 'antlr-v4))