Function: eshell-bol

eshell-bol is an interactive and byte-compiled function defined in esh-mode.el.gz.

Signature

(eshell-bol)

Documentation

Go to the beginning of line, then skip past the prompt, if any.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defun eshell-bol ()
  "Go to the beginning of line, then skip past the prompt, if any."
  (interactive)
  (beginning-of-line)
  (and eshell-skip-prompt-function
       (funcall eshell-skip-prompt-function)))