Function: viper-goto-mark-and-skip-white
viper-goto-mark-and-skip-white is an interactive and byte-compiled
function defined in viper-cmd.el.gz.
Signature
(viper-goto-mark-and-skip-white ARG)
Documentation
Go to mark and skip to first non-white character on line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/viper-cmd.el.gz
(defun viper-goto-mark-and-skip-white (arg)
"Go to mark and skip to first non-white character on line."
(interactive "P")
(let ((char (read-char))
(com (viper-getCom arg)))
(viper-goto-mark-subr char com t)))