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
@@ -3634,6 +3643,13 @@ class EditorPadding extends BaseEditorOption<EditorOption.padding, IEditorPaddin
3634
3643
minimum: 0,
3635
3644
maximum: 1000,
3636
3645
description: nls.localize('padding.bottom',"Controls the amount of space between the bottom edge of the editor and the last line.")
3646
+
},
3647
+
'editor.padding.maxEditorCanvasWidth': {
3648
+
type: 'number',
3649
+
default: 0,
3650
+
minimum: 0,
3651
+
maximum: 10000,
3652
+
description: nls.localize('padding.maxEditorCanvasWidth',"Controls the maximum width of the text area in pixels, excluding gutters, minimap, and scrollbar. Extra space is split evenly on either side of the text. Set to 0 to use the full available width.")
3637
3653
}
3638
3654
}
3639
3655
);
@@ -3647,7 +3663,8 @@ class EditorPadding extends BaseEditorOption<EditorOption.padding, IEditorPaddin
0 commit comments