-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
[electron] Ctrl/Cmd+A does not select the content of the quick open item #2756
Labels
electron
issues related to the electron target
Comments
If I do |
It works from the browser, not with the electron example. Tested with 93fb9e7. |
kittaakos
pushed a commit
that referenced
this issue
Mar 14, 2020
From now on, when executing the `Undo`, `Redo`, and `Select All` command handlers, we do not focus the `current` editor but follow the following execution order: - Executes on the `current` editor if it has text focus. - Otherwise, if the `document.activeElement` is either an `input` or a `textArea`, executes the browser's built-in command on it. - Otherwise, executes on the `current` editor after setting the focus on it. Closes: #6428 Closes: #2756 Signed-off-by: Akos Kitta <kittaakos@typefox.io> rewrote it a bit. Signed-off-by: Akos Kitta <kittaakos@typefox.io> aligned name. Signed-off-by: Akos Kitta <kittaakos@typefox.io> s Signed-off-by: Akos Kitta <kittaakos@typefox.io>
kittaakos
pushed a commit
that referenced
this issue
Mar 14, 2020
From now on, when executing the `Undo`, `Redo`, and `Select All` command handlers, we do not focus the `current` editor but follow the following execution order: - Executes on the `current` editor if it has text focus. - Otherwise, if the `document.activeElement` is either an `input` or a `textArea`, executes the browser's built-in command on it. - Otherwise, executes on the `current` editor after setting the focus on it. Closes: #6428 Closes: #2756 Signed-off-by: Akos Kitta <kittaakos@typefox.io>
1 task
2 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This
Select All
functionality works in VS Code.The text was updated successfully, but these errors were encountered: