SkaceKamen / vscode-sqflint

SQF Language server extension
MIT License
19 stars 9 forks source link

Fix ext parser slowing down the whole plugin #150

Closed SkaceKamen closed 8 months ago

SkaceKamen commented 8 months ago

The "SingleRunner" is simple debounce. Due to the way everything is implemented, this caused every parse to take at least 200ms for no reason.

Decrease the timeout to 20ms and only trigger the ext parser when description.ext or *.hpp is modified.