Function: antlr-indent-command

antlr-indent-command is an interactive and byte-compiled function defined in antlr-mode.el.gz.

Signature

(antlr-indent-command &optional ARG)

Documentation

Indent the current line or insert tabs/spaces.

With optional prefix argument ARG or if the previous command was this command, insert ARG tabs or spaces according to indent-tabs-mode(var)/indent-tabs-mode(fun). Otherwise, indent the current line with antlr-indent-line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/antlr-mode.el.gz
(defun antlr-indent-command (&optional arg)
  "Indent the current line or insert tabs/spaces.
With optional prefix argument ARG or if the previous command was this
command, insert ARG tabs or spaces according to `indent-tabs-mode'.
Otherwise, indent the current line with `antlr-indent-line'."
  (interactive "*P")
  (if (or arg (eq last-command 'antlr-indent-command))
      (insert-tab arg)
    (let ((antlr-indent-comment (and antlr-indent-comment t))) ; dynamic
      (antlr-indent-line))))