From 65fa718ecc130c60d0bf7e0304e3e772a08dd67d Mon Sep 17 00:00:00 2001 From: Charis Kyriakou Date: Fri, 13 Jan 2023 08:39:39 +0000 Subject: [PATCH] Renamed Run Query command --- extensions/ql-vscode/CHANGELOG.md | 2 ++ extensions/ql-vscode/README.md | 2 +- extensions/ql-vscode/package.json | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/extensions/ql-vscode/CHANGELOG.md b/extensions/ql-vscode/CHANGELOG.md index 917c04e7d22..f8891966ccd 100644 --- a/extensions/ql-vscode/CHANGELOG.md +++ b/extensions/ql-vscode/CHANGELOG.md @@ -2,6 +2,8 @@ ## [UNRELEASED] +- Renamed command "CodeQL: Run Query" to "CodeQL: Run Query on Selected Dababase". + ## 1.7.7 - 13 December 2022 - Increase the required version of VS Code to 1.67.0. [#1662](https://github.com/github/vscode-codeql/pull/1662) diff --git a/extensions/ql-vscode/README.md b/extensions/ql-vscode/README.md index d0b1fc84ed4..946e9e6e1b7 100644 --- a/extensions/ql-vscode/README.md +++ b/extensions/ql-vscode/README.md @@ -94,7 +94,7 @@ The instructions below assume that you're using the CodeQL starter workspace, or 1. Expand the `ql` folder and locate a query to run. The standard queries are grouped by target language and then type, for example: `ql/java/ql/src/Likely Bugs`. 1. Open a query (`.ql`) file. -1. Right-click in the query window and select **CodeQL: Run Query**. Alternatively, open the Command Palette (**Ctrl+Shift+P** or **Cmd+Shift+P**), type `Run Query`, then select **CodeQL: Run Query**. +1. Right-click in the query window and select **CodeQL: Run Query on Selected Database**. Alternatively, open the Command Palette (**Ctrl+Shift+P** or **Cmd+Shift+P**), type `Run Query`, then select **CodeQL: Run Query on Selected Database**. The CodeQL extension runs the query on the current database using the CLI and reports progress in the bottom right corner of the application. When the results are ready, they're displayed in the CodeQL Query Results view. Use the dropdown menu to choose between different forms of result output. diff --git a/extensions/ql-vscode/package.json b/extensions/ql-vscode/package.json index 2b045960128..4580f30cd90 100644 --- a/extensions/ql-vscode/package.json +++ b/extensions/ql-vscode/package.json @@ -320,7 +320,7 @@ }, { "command": "codeQL.runQuery", - "title": "CodeQL: Run Query" + "title": "CodeQL: Run Query on Selected Database" }, { "command": "codeQL.runQueryOnMultipleDatabases", @@ -1318,7 +1318,7 @@ }, { "view": "codeQLQueryHistory", - "contents": "Run the 'CodeQL: Run Query' command on a QL query.\n[Run Query](command:codeQL.runQuery)" + "contents": "Run the 'CodeQL: Run Query on Selected Database' command on a QL query.\n[Run Query](command:codeQL.runQuery)" }, { "view": "codeQLDatabases",