Function: evil-delete-indentation

evil-delete-indentation is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-delete-indentation)

Documentation

Delete all indentation on current line.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(defun evil-delete-indentation ()
  "Delete all indentation on current line."
  (interactive)
  (save-excursion
    (move-beginning-of-line nil)
    (delete-region (point) (progn (skip-chars-forward " \t") (point)))))