1
0
mirror of https://git.decapod.one/brethil/dotfiles synced 2024-11-22 11:31:30 +01:00
dotfiles/ipython/profile_default/ipython_config.py
bretello f414792552
ipython: enable extra_open_editor_shortcuts
Allows opening the editor using `v`.

Note that pressing F2 also opens the editor
2024-07-30 11:16:04 +02:00

7 lines
277 B
Python

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