Skip to content

Commit 8e50c4d

Browse files
committed
feat: open help documentation to the side by default
1 parent 6e52b1a commit 8e50c4d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
3.93 KB
Loading

src/commands/help.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,10 @@ Key settings:
166166
content: helpText,
167167
language: 'markdown',
168168
});
169-
await vscode.window.showTextDocument(doc);
169+
await vscode.window.showTextDocument(doc, {
170+
preview: false,
171+
viewColumn: vscode.ViewColumn.Beside,
172+
});
170173
},
171174
);
172175

0 commit comments

Comments
 (0)