From 9962ac27038392f483a0c8025f35f7359a9326f7 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 23 Apr 2018 10:54:04 +0530 Subject: [PATCH] ... --- kitty/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kitty/utils.py b/kitty/utils.py index f47a4eb8d..b5985593a 100644 --- a/kitty/utils.py +++ b/kitty/utils.py @@ -115,6 +115,8 @@ def command_for_open(program='default'): program = to_cmdline(program) if program == ['default']: cmd = ['open'] if is_macos else ['xdg-open'] + else: + cmd = program return cmd