mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
Prompt users to test with extensions disabled (#165203)
This commit is contained in:
@@ -1036,7 +1036,13 @@ function getReportIssueArgsForError(
|
||||
];
|
||||
|
||||
if (globalPlugins.length) {
|
||||
sections.push(`**Global TS Server Plugins**\n\n` + globalPlugins.map(plugin => `- \`${plugin.name}\``).join('\n'));
|
||||
sections.push(
|
||||
[
|
||||
`**Global TypeScript Server Plugins**`,
|
||||
`❗️ Please test with extensions disabled. Extensions are the root cause of most TypeScript server crashes`,
|
||||
globalPlugins.map(plugin => `- \`${plugin.name}\``).join('\n')
|
||||
].join('\n\n')
|
||||
);
|
||||
}
|
||||
|
||||
if (logPath) {
|
||||
|
||||
Reference in New Issue
Block a user