From 5ba8ca2745c27607d5ede04332f1a1c6a88dcb33 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 12 Apr 2018 16:53:46 +0530 Subject: [PATCH] ... --- kitty/cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kitty/cli.py b/kitty/cli.py index 3f20de11a..616ad970d 100644 --- a/kitty/cli.py +++ b/kitty/cli.py @@ -47,8 +47,8 @@ If the environment variable "KITTY_CONFIG_DIRECTORY" is specified, that directory is always used and the above searching does not happen. If "/etc/xdg/kitty/kitty.conf" exists it is merged before (i.e. with lower -priority) than any user config files are merged. It can be used to specify -system-wide defaults for all users. +priority) than any user config files. It can be used to specify system-wide +defaults for all users. --override -o @@ -480,7 +480,7 @@ def parse_cmdline(oc, disabled, args=None): def options_spec(): if not hasattr(options_spec, 'ans'): options_spec.ans = OPTIONS.format( - appname=appname, macos_confpath='~/Library/Preferences/kitty/kitty.conf' if is_macos else '', + appname=appname, macos_confpath='~/Library/Preferences/kitty/kitty.conf, ' if is_macos else '', window_layout_choices=', '.join(all_layouts) ) return options_spec.ans