Just noticed this annoying emoji input ("Emoji Choice") popping up every time I press Ctrl+Shift+E in 18.04. I really need this shortcut to switch to the file explorer in Visual Studio Code but instead I only get the emoji input. Is there a way to disable this or at least change the shortcut? Don't want to change the VCS's shortcut because of this, I'm really used to it
Just a small hint: In case you don't find the IBus Preferences dialog, open a Terminal shell and type
A dialog like this will appear on your screen:
Turned out it was the new ibus version that included the emoji package, I was able to change the shortcut in the ibus settings.
For VS Code if installed via Ubuntu Snap you need an input method other than
ibus
.If you run VS Code from command line do:
You can also add an alias for that in .bashrc:
alias code='GTK_IM_MODULE="xim" code'
To configure the Dash launcher (assuming VS Code is installed using Snap):
/var/lib/snapd/desktop/applications/code_code.desktop
or~/.local/share/applications/code_code.desktop
, or bothGTK_IM_MODULE="xim"
toExec
commands:I was unable to make any fix related to
ibus
work, but addingto my
~/.profile
and restarting seems to have done the trick.