Function: smie-backward-sexp-command

smie-backward-sexp-command is an interactive and byte-compiled function defined in smie.el.gz.

Signature

(smie-backward-sexp-command N)

Documentation

Move backward through N logical elements.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/smie.el.gz
;;; Miscellaneous commands using the precedence parser.

(defun smie-backward-sexp-command (n)
  "Move backward through N logical elements."
  (interactive "^p")
  (smie-forward-sexp-command (- n)))