Function: evil-delete-backward-char-and-join

evil-delete-backward-char-and-join is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-delete-backward-char-and-join COUNT)

Documentation

Delete previous character and join lines.

If point is at the beginning of a line then the current line will be joined with the previous line if and only if evil-backspace-join-lines.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-delete-backward-char-and-join (_count)
  "Delete previous character and join lines.
If point is at the beginning of a line then the current line will
be joined with the previous line if and only if
`evil-backspace-join-lines'."
  (interactive "p")
  (if (or evil-backspace-join-lines (not (bolp)))
      (call-interactively #'delete-backward-char)
    (signal 'beginning-of-line nil)))