Function: edt-tab-insert

edt-tab-insert is an interactive and byte-compiled function defined in edt.el.gz.

Signature

(edt-tab-insert NUM)

Documentation

Insert tab character at cursor position.

Argument NUM is the number of tabs to insert.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
;;;
;;; TAB INSERT
;;;

(defun edt-tab-insert (num)
  "Insert tab character at cursor position.
Argument NUM is the number of tabs to insert."
  (interactive "*p")
  (edt-check-prefix num)
  (while (> num 0)
    (insert ?\t)
    (setq num (1- num))))