From f67ebf85eaf3abc718292bb77fd7d12620fff427 Mon Sep 17 00:00:00 2001 From: Laxmikant Kishor Mokadam <8169825+lkmokadam@users.noreply.github.com> Date: Mon, 9 Jul 2018 17:36:59 -0400 Subject: [PATCH] Update CscopeExecutor.ts --- src/CscopeExecutor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CscopeExecutor.ts b/src/CscopeExecutor.ts index 7bf5452..b746955 100644 --- a/src/CscopeExecutor.ts +++ b/src/CscopeExecutor.ts @@ -122,7 +122,7 @@ export default class CscopeExecutor { const cscopeExecConfig = { cwd: this.exec_path + '/cscope', env: process.env}; - const ret = spawnSync("cscope", ['-b', '-q', '-k'], cscopeExecConfig); + const ret = spawnSync("cscope", ['-b', '-q', '-k', '-R'], cscopeExecConfig); return true; }