Skip to content

Commit 26a5030

Browse files
committed
Remove $cquery/derived
textDocument/implementation can be used instead.
1 parent de4272b commit 26a5030

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

package.json

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,6 @@
5757
"command": "cquery.base",
5858
"when": "resourceLangId == cpp",
5959
"group": "[email protected]"
60-
},
61-
{
62-
"command": "cquery.derived",
63-
"when": "resourceLangId == cpp",
64-
"group": "[email protected]"
6560
}
6661
],
6762
"view/title": [
@@ -136,11 +131,6 @@
136131
"category": "cquery",
137132
"command": "cquery.base"
138133
},
139-
{
140-
"title": "Show Derived",
141-
"category": "cquery",
142-
"command": "cquery.derived"
143-
},
144134
{
145135
"title": "Go to Tree View Entry",
146136
"category": "cquery",

src/extension.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,8 +352,6 @@ export function activate(context: ExtensionContext) {
352352
'cquery.callers', makeRefHandler('$cquery/callers'));
353353
commands.registerCommand(
354354
'cquery.base', makeRefHandler('$cquery/base', true));
355-
commands.registerCommand(
356-
'cquery.derived', makeRefHandler('$cquery/derived'));
357355
})();
358356

359357
// The language client does not correctly deserialize arguments, so we have a

0 commit comments

Comments
 (0)