8 lines
359 B
Python
8 lines
359 B
Python
config.load_autoconfig(False)
|
|
config.set('tabs.tabs_are_windows', True)
|
|
config.set('tabs.show', 'never')
|
|
for mode in ['normal','insert','hint','passthrough','command','prompt','yesno','register']:
|
|
config.bind('<Cut>', 'fake-key -g <Ctrl-x>', mode)
|
|
config.bind('<Copy>', 'fake-key -g <Ctrl-c>', mode)
|
|
config.bind('<Paste>', 'fake-key -g <Ctrl-v>', mode)
|