Ctrl+Shift+E inerts special characters into file instead of showing Explore Pane in VS Code
Ctrl+Shift+E inerts special characters into file instead of showing Explore Pane in VS Code
In visual studio code, I prefer having the "Activity Bar" hidden and use the key combinations Ctrl+Shift
and E,F,G
or X
to reach the individual panes.
Ctrl+Shift
E,F,G
X
When I am in the Search pane (revealed with Ctrl+Shift+F
) with focus on the editor, I hit Ctrl+Shift+E
with the intention of reaching the Explorer pane; instead of exposing the Explorer pane, code inserts the character e
with a black underline.
Ctrl+Shift+F
Ctrl+Shift+E
e
Now, I suppose this is some feature to insert special characters into editors but, Ctrl+Shift+E
as a shortcut for this seems little too conspicuous don't you think? especially when it is already been used for something else?
Ctrl+Shift+E
I'm not sure when this behavior was changed but I remember that it used to work earlier. I there a way by which I can disable this special character insertion feature and restore order?
1 Answer
1
Okay, it took some time to narrow down this issue. It appears, GTK3 reserves the key combination Ctrl+Shift+E to insert Emoji.
Good news is, this feature has been removed in GTK version 3.24. You can update your GTK version to fix this issue.
Thanks for contributing an answer to Stack Overflow!
But avoid …
To learn more, see our tips on writing great answers.
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
maybe this is a feature of windows for entering unicode sequences ? That's why you have the black underline, it waits for another input to group this character with
– Ciprian Tomoiagă
Sep 11 '18 at 9:49