Variable: python-skeleton-autoinsert

python-skeleton-autoinsert is a customizable variable defined in python.el.gz.

Value

nil

Documentation

Non-nil means template skeletons will be automagically inserted.

This happens when pressing "if<SPACE>", for example, to prompt for the if condition.

Source Code

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

(defcustom python-skeleton-autoinsert nil
  "Non-nil means template skeletons will be automagically inserted.
This happens when pressing \"if<SPACE>\", for example, to prompt for
the if condition."
  :type 'boolean
  :safe 'booleanp)