Function: sh-beginning-of-command

sh-beginning-of-command is an interactive and byte-compiled function defined in sh-script.el.gz.

Signature

(sh-beginning-of-command)

Documentation

Move point to successive beginnings of commands.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sh-script.el.gz
;; various other commands

(defun sh-beginning-of-command ()
  ;; FIXME: Redefine using SMIE.
  "Move point to successive beginnings of commands."
  (interactive)
  (if (re-search-backward sh-beginning-of-command nil t)
      (goto-char (match-beginning 2))))