Skip to content

Commit aeb8592

Browse files
authored
Merge pull request #588 from coq-community/commands-in-context-menu
Add commands in editor context menu.
2 parents d3b14f0 + af8f7d3 commit aeb8592

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

client/package.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,33 @@
287287
}
288288
],
289289
"menus": {
290+
"editor/context": [
291+
{
292+
"when": "resourceLangId == coq",
293+
"command": "extension.coq.interpretToPoint",
294+
"group": "navigation"
295+
},
296+
{
297+
"when": "resourceLangId == coq",
298+
"command": "extension.coq.query.check",
299+
"group": "queries"
300+
},
301+
{
302+
"when": "resourceLangId == coq",
303+
"command": "extension.coq.query.print",
304+
"group": "queries"
305+
},
306+
{
307+
"when": "resourceLangId == coq",
308+
"command": "extension.coq.query.search",
309+
"group": "queries"
310+
},
311+
{
312+
"when": "resourceLangId == coq",
313+
"command": "extension.coq.query.locate",
314+
"group": "queries"
315+
}
316+
],
290317
"view/title": [
291318
{
292319
"command": "extension.coq.addQueryTab",

0 commit comments

Comments
 (0)