mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-23 16:58:09 +02:00
Fix #8205
This commit is contained in:
@@ -111,6 +111,14 @@ func main(_ *cli.Command, opts_ *Options, args []string) (rc int, err error) {
|
||||
if err = set_diff_command(conf.Diff_cmd); err != nil {
|
||||
return 1, err
|
||||
}
|
||||
switch conf.Color_scheme {
|
||||
case Color_scheme_light:
|
||||
use_light_colors = true
|
||||
case Color_scheme_dark:
|
||||
use_light_colors = false
|
||||
case Color_scheme_auto:
|
||||
use_light_colors = false
|
||||
}
|
||||
init_caches()
|
||||
defer func() {
|
||||
for tdir := range remote_dirs {
|
||||
|
||||
Reference in New Issue
Block a user