Function: vera-electric-pound

vera-electric-pound is an interactive and byte-compiled function defined in vera-mode.el.gz.

Signature

(vera-electric-pound ARG)

Documentation

Insert # and indent as directive it first character of line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vera-mode.el.gz
(defun vera-electric-pound (arg)
  "Insert `#' and indent as directive it first character of line."
  (interactive "*P")
  (self-insert-command (prefix-numeric-value arg))
  (unless arg
    (save-excursion
      (backward-char)
      (skip-chars-backward " \t")
      (when (bolp)
	(delete-horizontal-space)))))