From ffae7f624ce3d7ad21fee2ca5a6f9ec23f557f27 Mon Sep 17 00:00:00 2001 From: Augusto Gunsch Date: Sat, 16 Jan 2021 18:11:59 -0300 Subject: [PATCH] Add 'e' binding --- config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config.py b/config.py index 774d966..4975da9 100644 --- a/config.py +++ b/config.py @@ -127,6 +127,9 @@ config.set('content.javascript.enabled', True, 'qute://*/*') # - ask config.set('content.notifications', False, 'https://www.reddit.com') +# Editor +config.set('editor.command', [ 'st', '-e', 'vim', '{file}' ]); + # When/how to show the scrollbar. # Type: String # Valid values: @@ -209,3 +212,4 @@ config.bind('M', 'hint links spawn mpv {hint-url}') config.bind('xb', 'config-cycle statusbar.show always never') config.bind('xt', 'config-cycle tabs.show always never') config.bind('xx', 'config-cycle statusbar.show always never;; config-cycle tabs.show always never') +config.bind('e', 'edit-url')