1
0
mirror of https://git.decapod.one/brethil/dotfiles synced 2024-11-22 03:21:30 +01:00

ipython: enable extra_open_editor_shortcuts

Allows opening the editor using `v`.

Note that pressing F2 also opens the editor
This commit is contained in:
bretello 2024-07-30 11:15:32 +02:00
parent 101e4fe00c
commit f414792552
Signed by: brethil
GPG Key ID: 876AAC6290170FE7

View File

@ -3,3 +3,4 @@ config = get_config()
config.TerminalInteractiveShell.editing_mode = "vi" config.TerminalInteractiveShell.editing_mode = "vi"
config.TerminalInteractiveShell.mouse_support = True # prevents from selecting text config.TerminalInteractiveShell.mouse_support = True # prevents from selecting text
config.TerminalInteractiveShell.true_color = True config.TerminalInteractiveShell.true_color = True
config.TerminalInteractiveShell.extra_open_editor_shortcuts = True