Function: eshell-bol-ignoring-prompt

eshell-bol-ignoring-prompt is an interactive and byte-compiled function defined in em-prompt.el.gz.

Signature

(eshell-bol-ignoring-prompt ARG)

Documentation

Move point to the beginning of the current line, past the prompt (if any).

With argument ARG not nil or 1, move forward ARG - 1 lines first (see move-beginning-of-line for more information).

Probably introduced at or before Emacs version 30.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/em-prompt.el.gz
(defun eshell-bol-ignoring-prompt (arg)
  "Move point to the beginning of the current line, past the prompt (if any).
With argument ARG not nil or 1, move forward ARG - 1 lines
first (see `move-beginning-of-line' for more information)."
  (interactive "^p")
  (let ((inhibit-field-text-motion t))
    (move-beginning-of-line arg)))