144

Ctrl+Shift+U is a combined shortcut in Eclipse.

But when I press it, it shows up a u, just like input with an underline. I guess this shortcut has been declared by Ubuntu, so I can't use it.

I used to solve this problem by typing Caps Lock first.

Is there any better method?

Frank Cheng
  • 1,543

12 Answers12

162

Problem

The problem is that with the "Ibus" input method, "Ctrl-shift-u" is by default configured to the "Unicode Code Point" shortcut. You can try this: Type ctrl-shift-u, then an (underlined) u appears. If you then type a unicode code point number in hex (e.g. 21, the ASCII/unicode CP for !) and press enter, it is replaced with the corresponding character.

Example of ctr-shift-u

Solution (GUI)

This shortcut can be changed or disabled using the ibus-setup utility:

  1. Run ibus-setup from the terminal (or open IBus Preferences).
  2. Go to “Emoji”.
  3. Next to “Unicode code point:”, click on the three dots (i.e. ...).
  4. In the dialog, click “Delete”, then “OK”.
  5. Close the IBus Preferences window.

Ibus preferences window

Solution (CLI)

If you want to script this, the Unicode hotkey can also be disabled using gsettings like this:

gsettings set org.freedesktop.ibus.panel.emoji unicode-hotkey "@as []"
59

Found a way to unbind it on Ubuntu 13.10.

Go to Language Support on System Settings and change the Keyboard input method system to none

Then restart the system or just log out and log in.

31

Ubuntu 18.04 Solution

@ShmulikA's answer was close, but unfortunately, selecting "None" did not work for me. I can confirm the process below works in 18.04 as of April 2019.

  1. Open Search using Super key (aka WIN for folks like me)
  2. Type "language support" and hit ENTER

enter image description here

  1. Click the Keyboard input method system dropdown menu and select XIM

enter image description here

  1. Click Close
  2. Reboot

When I logged back in, I was able to set CTRL+SHIFT+U as a shortcut in Visual Studio Code.

Brown
  • 1,682
13

I use Ubuntu 18.10 and had trouble in a particular app (Intellij Idea).

In this askUbuntu answer, Kayvan Tehrani shows a setting that works for me in that setting. Set the XMODIFIERS to an empty string before running your application:

export XMODIFIERS=""
myapp.sh

In my case, myapp.sh was idea.sh, and I added the line inside the file:

#!/bin/sh
#
# ---------------------------------------------------------------------
# IntelliJ IDEA startup script.
# ---------------------------------------------------------------------
#
export XMODIFIERS=""
...

This way, my desktop shortcut still works.

XMODIFIERS apparently changes the way xim and ibus works, and when it's cleared, it disables the CTRL-SHIFT-U combo, allowing it to filter into the current app.

Thomas
  • 141
7

Try:

export GTK_IM_MODULE="gtk-im-context-simple"

and then run Eclipse from the same shell. Or if that doesn't work,

export GTK_IM_MODULE="xim"

(This test only works entering running the export command and then Eclipse from the same shell command line, it won't change anything if you use a desktop shortcut or the Applications menu, or run Eclipse from a new shell.)

If either test works, you can make the change system-wide by adding it to /etc/environment, or per-user in ~/.gnomerc. (The export command doesn't go in those files, just a new line with GTK_IM_MODULE="xim" or GTK_IM_MODULE="gtk-im-context-simple".)

It sounds like this behavior comes from GTK's input mappings as described here.

... This is called preediting, and an input method may provide feedback about this process by displaying the intermediate composition states as preedit text. For instance, the default GTK+ input method implements the input of arbitrary Unicode code points by holding down the Control and Shift keys and then typing “U” followed by the hexadecimal digits of the code point. When releasing the Control and Shift keys, preediting ends and the character is inserted as text. Ctrl+Shift+u20AC for example results in the € sign.

GTK is used by a whole lot of common apps in Ubuntu, including Eclipse.

Glorfindel
  • 4,158
Steven K
  • 394
5

Changing the input method as PutzKipa explains actually fixes the problem.

However, I've failed to find any configuration panel under KDE ubuntu 14.04 to do the job, and the standard im-config utility seems broken. I finally succeeded by creating a file ~/.xinputrc that contains a single line:

run_im xim

then logout/login. This chooses xim as the input method (ibus is the default). If you remove your ~/.xinputrc, then im-config can list the input methods available, even if it fails to select one.

4

Ubuntu 18.04

Running into this problem on Ubuntu 18.04, I've tried all suggestion above, but unfortunately none of them worked. I ended up uninstalling the ibus package.

Background / sidenotes

I tried to disable IBus using

  1. the Language Support menu
  2. im-config (configures ~/.xinputrc)
  3. sudo im-config (configures /etc/X11/xinit/xinputrc)

I noticed however that no matter what config I tried, the ibus daemon was running everytime after I had rebooted.

jbvo
  • 41
  • 2
3

Ubuntu 14.04/18.04 Solution

Recently upgrade to 18.04 and fight my way to solve this issue.

  1. Open search using super key

  2. Go to language support

  3. Click Keyboard input method system dropdown menu and choose none

    Language Support Menu

  4. Don't forget to click - apply system-wide

  5. Close the window (won't activate until you do)

  6. Reboot (logout might be enough)

Credit goes to reverse issue on askubuntu - for some reason someone wants to enable this shortcut.

Pablo A
  • 1,733
ShmulikA
  • 139
3

To change it on terminal (instead of GUI), for example to Ctrl + Shift + Super + u:

# Get
gsettings get org.freedesktop.ibus.panel.emoji unicode-hotkey

Set

gsettings set org.freedesktop.ibus.panel.emoji unicode-hotkey "['<Control><Super><Shift>u']"

Pablo A
  • 1,733
2

For Ubuntu 18.04

I struggled with this problem for two days. I tried all the methods listed here earlier. And it looks like I came up with a solution. But it is very unstable and has bugs.

The basic idea is this: in the system settings, you can specify the command that is started by the Ctrl+Shift+U key combination.

Note: if you specify false as the command, the combination will not work at all.

However, we can specify the path to the script as the command, in which we will simulate pressing the same key combination.

To simulate keystrokes, I tried the xdotool (apt install xdotool) and the xte (apt install xautomation). Both options were unstable. However, xte turned out to be more flexible for me.

Example with xte

  • Create a file /home/username/shortcut.sh
  • Add permission to execute: chmod u+x /home/username/shortcut.sh
  • Specify the path to the script as a command for the Ctrl+Shift+U key combination in the keyboard settings

Here is an example script:

#!/bin/sh
# Make a small delay in order to have time to release the keys.
sleep 0.2

Simulate the release of just pressed keys, if they are still pressed.

xte 'keyup u' 'keyup Shift_L' 'keyup Control_L'

Hack: Caps_Lock is used so that the system does not intercept this combination.

You can try to remove it if it hinders you.

xte 'key Caps_Lock'

Simulate pressing a key combination

xte 'keydown Shift_L' 'keydown Control_L' 'key u'

Simulate releasing a key combination

xte 'keyup Shift_L' 'keyup Control_L'

Restore Caps_Lock to the previous state.

xte 'key Caps_Lock'

I tested this in PhpStorm 2018.2 EAP Build #PS-182.3458.35, and I can say that it works, but with some caveats:

  • this works slowly (on my rather old PC)
  • during the execution of the script, it is better not to press any keys
  • sometimes it may not work
  • sometimes it can enter an infinite loop. Therefore, it's better to add a check to the script that the script is already running.

In general, if you do not often use this combination, then this solution may suit you.

Pablo A
  • 1,733
Vadim
  • 159
2

If you don't need the system for entering non-Latin characters provided by iBus, uninstall it and reboot:

$ sudo apt remove ibus
$ sudo reboot
1

None of the solutions here worked for me. In the end I had to disable the daemon completely.

mv /bin/ibus-daemon /bin/ibus-daemon.bak

Then rebooted my computer.

It still does the Ctrl+Shift+U unicode thing in Terminal and Firefox.

But no longer does it in VS Code, Jetbrains Rider, DataGrip, or NotepadQQ.

Phill
  • 215