Skip to content

Commit 83b99ef

Browse files
committed
increase debounce timeout
1 parent f1acf0a commit 83b99ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/watcher/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type WorkspaceWatcher struct {
3131
func NewWorkspaceWatcher(client *lsp.Client) *WorkspaceWatcher {
3232
return &WorkspaceWatcher{
3333
client: client,
34-
debounceTime: 300 * time.Millisecond, // Configurable debounce duration
34+
debounceTime: 1000 * time.Millisecond, // Configurable debounce duration
3535
debounceMap: make(map[string]*time.Timer),
3636
}
3737
}

0 commit comments

Comments
 (0)