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
Add ability to detect if the current editor has word wrap turned on. Otherwise editor.setDecoration() is broken by putting items at the end of the wrapped line, instead of at the end of the first line. Example extension.
Example code: const hasWordWrap: boolean = (editor as vscode.TextEditor).options.wordWrap;
Add ability to detect if the current editor has word wrap turned on. Otherwise editor.setDecoration() is broken by putting items at the end of the wrapped line, instead of at the end of the first line. Example extension.
Example code:
const hasWordWrap: boolean = (editor as vscode.TextEditor).options.wordWrap;
Semi-related:
Add wordwrap indicator
Add support for language-aware word wrap
The text was updated successfully, but these errors were encountered: