]> git.eshelyaron.com Git - emacs.git/commitdiff
Disable completion when PDB is active in Python Shell buffer
authorkobarity <kobarity@gmail.com>
Sun, 16 Oct 2022 09:15:22 +0000 (11:15 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 16 Oct 2022 09:15:30 +0000 (11:15 +0200)
* lisp/progmodes/python.el (python-shell-completion-at-point): Disable
completion in Python buffer when PDB is active in Python Shell buffer.
* test/lisp/progmodes/python-tests.el (python-shell-completion-pdb-1):
New test (bug#58562).

lisp/progmodes/python.el
test/lisp/progmodes/python-tests.el

index 0de76b0bde3c6f0db31a727736f9bd773a1b06ed..50f1e6752e4503024b93392d462f8fe7012cb810 100644 (file)
@@ -4102,7 +4102,10 @@ using that one instead of current buffer's process."
           (with-current-buffer (process-buffer process)
             (cond ((or (null prompt)
                        (and is-shell-buffer
-                            (< (point) (cdr prompt-boundaries))))
+                            (< (point) (cdr prompt-boundaries)))
+                       (and (not is-shell-buffer)
+                            (string-match-p
+                             python-shell-prompt-pdb-regexp prompt)))
                    #'ignore)
                   ((or (not python-shell-completion-native-enable)
                        ;; Even if native completion is enabled, for
index 9ad2d169308221d241e1db0d07268c0926e12c98..97dc17ce2931f42f9a5c2342e487799820d42180 100644 (file)
@@ -4427,6 +4427,23 @@ import abc
      (insert "abc.")
      (should (completion-at-point)))))
 
+(ert-deftest python-shell-completion-pdb-1 ()
+  "Should not complete PDB commands in Python buffer."
+  (skip-unless (executable-find python-tests-shell-interpreter))
+  (python-tests-with-temp-buffer-with-shell
+   "
+import pdb
+
+pdb.set_trace()
+print('Hello')
+"
+   (let ((inhibit-message t))
+     (python-shell-send-buffer)
+     (python-tests-shell-wait-for-prompt)
+     (goto-char (point-max))
+     (insert "u")
+     (should-not (nth 2 (python-completion-at-point))))))
+
 (ert-deftest python-shell-completion-native-1 ()
   (skip-unless (executable-find python-tests-shell-interpreter))
   (python-tests-with-temp-buffer-with-shell