We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69c608c commit 8a61dbeCopy full SHA for 8a61dbe
1 file changed
tools/watch/api.go
@@ -182,9 +182,10 @@ func EntryPoint(root *cli.Command) {
182
if err != nil {
183
return 1, err
184
}
185
+ config_paths := utils.Map(resolve_path, args[2:])
186
if err = watch_for_kitty_config_changes(
187
func() error { return signal_kitty_to_reload_config(kitty_pid) },
- time.Millisecond*time.Duration(debounce_time_ms), args[2:]); err != nil {
188
+ time.Millisecond*time.Duration(debounce_time_ms), config_paths); err != nil {
189
190
191
return 0, nil
0 commit comments