Skip to content

Commit 735a556

Browse files
committed
feat: open help documentation to the side by default
1 parent e096ada commit 735a556

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/commands/help.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,10 @@ Key settings:
140140
content: helpText,
141141
language: 'markdown',
142142
});
143-
await vscode.window.showTextDocument(doc);
143+
await vscode.window.showTextDocument(doc, {
144+
preview: false,
145+
viewColumn: vscode.ViewColumn.Beside,
146+
});
144147
},
145148
);
146149

0 commit comments

Comments
 (0)