Function: evil-goto-column
evil-goto-column is an interactive and byte-compiled function defined
in evil-commands.el.
Signature
(evil-goto-column &optional COUNT)
Documentation
Go to column COUNT on the current line.
Columns are counted from zero.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
;; ceci n'est pas une pipe
(evil-define-motion evil-goto-column (count)
"Go to column COUNT on the current line.
Columns are counted from zero."
:type exclusive
(move-to-column (or count 0)))