Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[vscode] cleanup command names #699

Merged
merged 1 commit into from
May 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions editor/code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,27 +92,27 @@
},
{
"command": "coq-lsp.goals",
"title": "Coq LSP: Show Goals at Point"
"title": "Coq LSP: Show Goals at point"
},
{
"command": "coq-lsp.document",
"title": "Coq LSP: Display current Coq document in JSON format"
"title": "Coq LSP: Serialize document to JSON"
},
{
"command": "coq-lsp.save",
"title": "Coq LSP: Save .vo file for the current buffer"
},
{
"command": "coq-lsp.trim",
"title": "Coq LSP: Request the server to trim caches and compact memory (useful to try reduce memory comsumption)"
"title": "Coq LSP: Free memory"
},
{
"command": "coq-lsp.sentenceNext",
"title": "Coq LSP: try to jump to next Coq sentence"
"title": "Coq LSP: Try to jump to next Coq sentence"
},
{
"command": "coq-lsp.sentencePrevious",
"title": "Coq LSP: try to jump to previous Coq sentence"
"title": "Coq LSP: Try to jump to previous Coq sentence"
},
{
"command": "coq-lsp.heatmap.toggle",
Expand Down