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, 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)
  ;; TODO: drop this command if there is a extra function for `indent-region'
  "Indent the current line or insert tabs/spaces.
With optional prefix argument ARG, insert ARG tabs or spaces according
to `indent-tabs-mode'.
Otherwise, indent the current line with `antlr-indent-line'."
  (interactive "*P")
  (if arg
      (insert-tab arg)
    (let ((antlr-indent-comment (and antlr-indent-comment t))) ; dynamic
      (antlr-indent-line))))