How can I open a new read-only text file in tab and insert some formatted text in that file using the Visual Studio Code API?
I didnt find any example regarding this to add simple text
Following is my code that opens some untitled file.
var setting: vscode.Uri = vscode.Uri.parse("untitled:" + "C:\summary.txt");
vscode.workspace.openTextDocument(setting).then((a: vscode.TextDocument) => {
vscode.window.showTextDocument(a, 1, false);
}, (error: any) => {
console.error(error);
debugger;
});
Please give the simple example that can be added to these lines to add the text. As the official examples are little complex.
The following should give you the idea
...
var setting: vscode.Uri = vscode.Uri.parse("untitled:" + "C:\summary.txt");
vscode.workspace.openTextDocument(setting).then((a: vscode.TextDocument) => {
vscode.window.showTextDocument(a, 1, false).then(e => {
e.edit(edit => {
edit.insert(new vscode.Position(0, 0), "Your advertisement here");
});
});
}, (error: any) => {
console.error(error);
debugger;
});
...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With