Skip to content

Commit

Permalink
fix(handler): increase inlayHint render debounce (#4805)
Browse files Browse the repository at this point in the history
same as content change debounce

related #4782
  • Loading branch information
fannheyward authored Feb 21, 2024
1 parent a716465 commit ae9ddb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handler/inlayHint/buffer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export interface InlayHintConfig {
}

let srcId: number | undefined
const debounceInterval = getConditionValue(100, 10)
const debounceInterval = getConditionValue(150, 10)
const requestDelay = getConditionValue(500, 10)

// Extend the rendering range for better experience when scrolling
Expand Down

0 comments on commit ae9ddb7

Please sign in to comment.