From 5143b62a07bf9c909085b9efbdeac0c711af3664 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Thu, 11 Jul 2019 17:10:56 +0200 Subject: [PATCH] Add kakoune to the list of editors --- kitty/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/utils.py b/kitty/utils.py index 80d354c3a..94f7b5bf1 100644 --- a/kitty/utils.py +++ b/kitty/utils.py @@ -415,7 +415,7 @@ def get_editor(): import shlex ans = os.environ.get('EDITOR') if not ans or not exe_exists(shlex.split(ans)[0]): - for q in ('vim', 'nvim', 'vi', 'emacs', 'micro', 'nano', 'vis'): + for q in ('vim', 'nvim', 'vi', 'emacs', 'kak', 'micro', 'nano', 'vis'): r = exe_exists(q) if r: ans = r