From cca9786748737dd9ef68f6c3701df9f2545c6efb Mon Sep 17 00:00:00 2001 From: CismonX Date: Thu, 31 Dec 2020 14:33:15 +0800 Subject: [PATCH] Update "go to file" icon ID. --- src/contexts/folding_range.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contexts/folding_range.ts b/src/contexts/folding_range.ts index 1b19baf..5173925 100644 --- a/src/contexts/folding_range.ts +++ b/src/contexts/folding_range.ts @@ -154,7 +154,7 @@ export default class FoldingRangeContext { // Node identifier. if (result[1] !== undefined) { this.nodes.push(new vscode.CodeLens(lineNumToRange(lineNum), { - title: '$(search-goto-file) Goto node in preview', + title: '$(go-to-file) Goto node in preview', command: 'texinfo.preview.goto', arguments: [this.document, result[5]], }));