Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/vs/editor/common/textModelGuides.ts')
-rw-r--r--src/vs/editor/common/textModelGuides.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/vs/editor/common/textModelGuides.ts b/src/vs/editor/common/textModelGuides.ts
index 7b63ee6b4d1..01789ed6b0c 100644
--- a/src/vs/editor/common/textModelGuides.ts
+++ b/src/vs/editor/common/textModelGuides.ts
@@ -52,8 +52,11 @@ export class IndentGuide {
* It starts at visibleColumn and continues until endColumn.
*/
public readonly horizontalLine: IndentGuideHorizontalLine | null,
+ /**
+ * If set (!= -1), only show this guide for wrapped lines that don't contain this model column, but are after it.
+ */
public readonly forWrappedLinesAfterColumn: number | -1,
- public readonly forWrappedLinesBeforeColumn: number | -1
+ public readonly forWrappedLinesBeforeOrAtColumn: number | -1
) {
if ((visibleColumn !== -1) === (column !== -1)) {
throw new Error();