Variable: python-forward-sexp-function

python-forward-sexp-function is a customizable variable defined in python.el.gz.

Value

python-nav-forward-sexp

Documentation

Function to use when navigating between expressions.

This variable was added, or its default value changed, in Emacs 28.1.

Probably introduced at or before Emacs version 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
;;; Navigation

(defcustom python-forward-sexp-function #'python-nav-forward-sexp
  "Function to use when navigating between expressions."
  :version "28.1"
  :type '(choice (const :tag "Python blocks" python-nav-forward-sexp)
                 (const :tag "CC-mode like" nil)
                 function))