Fix passing message-format after -- in debugging

This commit is contained in:
Lukas Wirth 2024-07-06 17:01:40 +02:00
parent 8f69d98214
commit 7733403056
5 changed files with 15 additions and 11 deletions

View file

@ -10,7 +10,7 @@ export type RunnableEnvCfgItem = {
env: Record<string, string>;
platform?: string | string[];
};
export type RunnableEnvCfg = undefined | Record<string, string> | RunnableEnvCfgItem[];
export type RunnableEnvCfg = Record<string, string> | RunnableEnvCfgItem[];
export class Config {
readonly extensionId = "rust-lang.rust-analyzer";