Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ctrl+Shift+E inserts special characters into file instead of showing Explorer 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.

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.

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 being used for something else?

I'm not sure when this behavior was changed but I remember that it used to work earlier. Is there a way by which I can disable this special character insertion feature and restore order?

like image 483
sidcha Avatar asked Aug 27 '18 03:08

sidcha


People also ask

Why does Ctrl+Shift+e show the explorer in the editor?

If ctrl+shift+e consistently arrives from the OS as ctrl+shift+e, and sometimes it shows the explorer and sometimes it inserts symbols in the editor, then it is possible that you might have a keybinding customization for ctrl+shift+e. Can you please try to reproduce by disabling all extensions and removing your customizations from keybindings.json?

How to insert special characters using keyboard shortcuts?

Insert Special Characters Using Keyboard Shortcuts 1 Place your cursor where the special character should be inserted. 2 Select the appropriate key combination on your keyboard. More ...

What happened to the Ctrl+Shift+P keyboard shortcut in VS Code?

Closed 1 year ago. The keyboard shortcut for the command pallet ( Ctrl+Shift+P) has stopped working in VS Code. When I go to File -> Preferences -> Keyboad Shortcuts I can confirm that only the default keybindings are present for the Ctrl+Shift+P key combination.

How do I change the keyboard shortcuts in Visual Studio Code?

Visual Studio Keymap; Customize your keyboard shortcuts. Keyboard Shortcut: ⌘K ⌘S (Windows, Linux Ctrl+K Ctrl+S) You can search for shortcuts and add your own keybindings to the keybindings.json file. See more in Key Bindings for Visual Studio Code. Tune your settings


1 Answers

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.

like image 171
sidcha Avatar answered Sep 20 '22 11:09

sidcha