private async setDiffCommand()

in src/controller/diffController.ts [61:71]


  private async setDiffCommand() {
    try {
      const input = DiffView.promptDiffCommand();
      const config = vscode.workspace.getConfiguration("assay");
      await config.update("diffTool", input, true);
      return input;
    } catch {
      console.error("No diff command provided.");
      return undefined;
    }
  }