Add a hotkey for commenting out the current line or lines on the /play page#91160
Merged
alexey-milovidov merged 1 commit intoClickHouse:masterfrom Dec 13, 2025
Conversation
Contributor
|
Workflow [PR], commit [2cac495] Summary: ❌
|
Contributor
Author
|
@Fgrtue thanks for moving this to the test stage - anything I need to do to get the test failures above resolved? They seem unrelated to my change (from what I can tell at least...) |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds keyboard shortcut support for commenting and uncommenting code in the Web UI query editor. Users can now press Ctrl+/ (or Cmd+/ on Mac) to toggle SQL comments on selected lines.
Key Changes:
- Implements a new keyboard event handler for
Ctrl+/orCmd+/that comments/uncomments the currently selected line(s) - Uses SQL comment syntax (
--) with intelligent handling of already-commented lines - Preserves user selection after the operation for easy workflow
Contributor
|
Hi @OpenGLShaders! Thank you for your contribution. |
alexey-milovidov
approved these changes
Dec 13, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changelog category (leave one):
Changelog entry (a user-readable short description of the changes that goes into CHANGELOG.md):
Ctrl+/(orCmd+/on Mac), making it easier to temporarily disable parts of your query while testing.