You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be useful for extension developers to get a range of visible positions (or lines) in the editor.
This would be useful when the extension is dealing with the visual aspect of the VSCode since the extension does not need to update the visual on invisible area.
For example, Guides needs to update its indentation guide lines but this has impact the extension performance (spywhere/vscode-guides#6) due to a calculation on whole file which cause the lag on the VSCode. With this API, Guides can now update only visible area, reduce the necessity of update the invisible area which can improve the performance a lot.
The text was updated successfully, but these errors were encountered:
It would be useful for extension developers to get a range of visible positions (or lines) in the editor.
This would be useful when the extension is dealing with the visual aspect of the VSCode since the extension does not need to update the visual on invisible area.
For example, Guides needs to update its indentation guide lines but this has impact the extension performance (spywhere/vscode-guides#6) due to a calculation on whole file which cause the lag on the VSCode. With this API, Guides can now update only visible area, reduce the necessity of update the invisible area which can improve the performance a lot.
The text was updated successfully, but these errors were encountered: