]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix M-x completion-predicate under python-ts-mode
authorBasil L. Contovounesios <contovob@tcd.ie>
Wed, 17 May 2023 12:48:09 +0000 (13:48 +0100)
committerBasil L. Contovounesios <contovob@tcd.ie>
Wed, 17 May 2023 14:14:09 +0000 (15:14 +0100)
* lisp/progmodes/python.el (python--completion-predicate)
(python-shell--completion-predicate): Filter M-x completion based on
python-base-mode instead of python-mode.  This allows for
python-ts-mode as well (bug#63552).

lisp/progmodes/python.el

index bbabce80b4d03ec3c1d1363abfa3a5d0fb745c45..f810f1e2164457c0460a70f62cd377189691fb49 100644 (file)
@@ -4967,7 +4967,7 @@ the if condition."
 (defun python--completion-predicate (_ buffer)
   (provided-mode-derived-p
    (buffer-local-value 'major-mode buffer)
-   'python-mode))
+   'python-base-mode))
 
 (defmacro python-skeleton-define (name doc &rest skel)
   "Define a `python-mode' skeleton using NAME DOC and SKEL.
@@ -6791,7 +6791,7 @@ implementations: `python-mode' and `python-ts-mode'."
 (defun python-shell--completion-predicate (_ buffer)
   (provided-mode-derived-p
    (buffer-local-value 'major-mode buffer)
-   'python-mode 'inferior-python-mode))
+   'python-base-mode 'inferior-python-mode))
 
 ;; Commands that only make sense in the Python shell or when editing
 ;; Python code.