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
@@ -4262,6 +4264,7 @@ class InlineEditorSuggest extends BaseEditorOption<EditorOption.inlineSuggest, I
4262
4264
enabled: true,
4263
4265
useMixedLinesDiff: 'forStableInsertions',
4264
4266
useInterleavedLinesDiff: 'never',
4267
+
renderSideBySide: 'auto',
4265
4268
useGutterIndicator: true,
4266
4269
codeShifting: true,
4267
4270
useMultiLineGhostText: true
@@ -4313,6 +4316,16 @@ class InlineEditorSuggest extends BaseEditorOption<EditorOption.inlineSuggest, I
4313
4316
default: defaults.edits.codeShifting,
4314
4317
description: nls.localize('inlineSuggest.edits.codeShifting',"Controls whether showing a suggestion will shift the code to make space for the suggestion inline."),
4315
4318
},
4319
+
'editor.inlineSuggest.edits.renderSideBySide': {
4320
+
type: 'string',
4321
+
default: defaults.edits.renderSideBySide,
4322
+
description: nls.localize('inlineSuggest.edits.renderSideBySide',"Controls whether larger suggestions can be shown side by side."),
4323
+
enum: ['auto','never'],
4324
+
enumDescriptions: [
4325
+
nls.localize('editor.inlineSuggest.edits.renderSideBySide.auto',"Larger suggestions will show side by side if there is enough space, otherwise they will be shown bellow."),
4326
+
nls.localize('editor.inlineSuggest.edits.renderSideBySide.never',"Larger suggestions are never shown side by side and will always be shown bellow."),
0 commit comments