-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
featureProduct featureProduct feature
Description
Problem
Users who don't know the keyboard shortcuts have no visible way to execute SQL from the editor. The only options are the command palette or right-click context menu, both requiring multiple clicks.
Proposal
Add two icon buttons to the editor title bar (top-right of editor tabs) for .exasol-sql files:
- Execute (
$(play)) — runs the statement at cursor (same asCmd+Enter) - Execute Script (
$(run-all)) — runs all statements in the file (same asCmd+Alt+Enter)
Implementation
Package.json contributes.menus additions only — no code changes needed:
"editor/title": [
{
"command": "exasol.executeQuery",
"when": "editorLangId == exasol-sql",
"group": "navigation"
},
{
"command": "exasol.executeScript",
"when": "editorLangId == exasol-sql",
"group": "navigation"
}
]Both commands already exist with icons ($(play) and $(run-all)).
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
featureProduct featureProduct feature