Add input box inside an editor between the code lines. #2401
-
I'm working on a functionality where using my extension, I want to add a input box kind of a UI inside the editor between editor lines. The way code lens do it. I tried multiple ways to do it, but failed with every approach.
for 4th option something like this. But failed to achieve this. import * as vscode from 'vscode'; export class InlineInputWidget implements vscode.Disposable {
} class InputBoxContentWidget implements vscode.ContentWidget {
} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Not possible. You can use code lense and decorations as you discovered. But you can not really render a full input box between the lines. |
Beta Was this translation helpful? Give feedback.
Not possible. You can use code lense and decorations as you discovered. But you can not really render a full input box between the lines.