Function: sh-end-of-command

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

Signature

(sh-end-of-command)

Documentation

Move point to successive ends of commands.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sh-script.el.gz
(defun sh-end-of-command ()
  ;; FIXME: Redefine using SMIE.
  "Move point to successive ends of commands."
  (interactive)
  (if (re-search-forward sh-end-of-command nil t)
      (goto-char (match-end 1))))