Function: python-shell-completion-native-turn-on

python-shell-completion-native-turn-on is an interactive and byte-compiled function defined in python.el.gz.

Signature

(python-shell-completion-native-turn-on &optional MSG)

Documentation

Turn on shell native completions.

With argument MSG show deactivation message.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defun python-shell-completion-native-turn-on (&optional msg)
  "Turn on shell native completions.
With argument MSG show deactivation message."
  (interactive "p")
  (python-shell-with-shell-buffer
    (setq-local python-shell-completion-native-enable t)
    (python-shell-completion-native-turn-on-maybe msg)))