Skip to content

Commit

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

related #4782
  • Loading branch information
fannheyward committed Nov 10, 2023
1 parent e3f91b5 commit 36508bb
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 36508bb

Please sign in to comment.