From f414792552c1ee50bd7df58e83b709e8df991970 Mon Sep 17 00:00:00 2001 From: bretello Date: Tue, 30 Jul 2024 11:15:32 +0200 Subject: [PATCH] ipython: enable extra_open_editor_shortcuts Allows opening the editor using `v`. Note that pressing F2 also opens the editor --- ipython/profile_default/ipython_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ipython/profile_default/ipython_config.py b/ipython/profile_default/ipython_config.py index 89b92ec..e2629ae 100644 --- a/ipython/profile_default/ipython_config.py +++ b/ipython/profile_default/ipython_config.py @@ -3,3 +3,4 @@ config = get_config() config.TerminalInteractiveShell.editing_mode = "vi" config.TerminalInteractiveShell.mouse_support = True # prevents from selecting text config.TerminalInteractiveShell.true_color = True +config.TerminalInteractiveShell.extra_open_editor_shortcuts = True