Skip to content
This repository was archived by the owner on Dec 8, 2020. It is now read-only.

config: Do not treat RLS as a special case for running cargo in terminal #361

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/components/configuration/Configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,6 @@ export class Configuration {
}

public shouldExecuteCargoCommandInTerminal(): boolean {
// When RLS is used any cargo command is executed in an integrated terminal.
if (this.mode() === Mode.RLS) {
return true;
}
const configuration = Configuration.getConfiguration();
const shouldExecuteCargoCommandInTerminal = configuration['executeCargoCommandInTerminal'];
return shouldExecuteCargoCommandInTerminal;
Expand Down