We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f087caa commit df32d7aCopy full SHA for df32d7a
src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/gutterIndicatorView.ts
@@ -284,7 +284,7 @@ export class InlineEditsGutterIndicator extends Disposable {
284
transition: 'rotate 0.2s ease-in-out',
285
}
286
}, [
287
- renderIcon(Codicon.arrowRight) // TODO: allow setting css here, is this already supported?
+ this._tabAction.map(v => v === 'accept' ? renderIcon(Codicon.keyboardTab) : renderIcon(Codicon.arrowRight))
288
])
289
]),
290
])).keepUpdated(this._store);
0 commit comments