From a1a852dee1f2ae44bb906709ea1412917e3ddd0c Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Fri, 5 May 2023 16:55:48 -0700 Subject: [PATCH] Remove explicit tab complete from Python REPL This is apparently default behavior now. --- .config/pythonrc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.config/pythonrc b/.config/pythonrc index 03249dd..9860579 100644 --- a/.config/pythonrc +++ b/.config/pythonrc @@ -3,14 +3,9 @@ try: except ImportError: print("Module readline not available.") else: - # Add tab completion - import rlcompleter - readline.parse_and_bind("tab: complete") - # Don't write history on exit readline.write_history_file = lambda *args: None - # Try to install rich's prettification stuff try: from rich import pretty