on ubuntu 13.10 multiple hits on ctrl+tab makes my intellij 13 keyboard stuck (no key works)

10,620

Solution 1

workaround try this when it happens:

ibus-daemon -rd

http://youtrack.jetbrains.com/issue/IDEA-115661

http://youtrack.jetbrains.com/issue/IDEA-78860

Solution 2

Restarting ibus-deamon may cause issues with other applications¹ or even crash IntelliJ, according to IDEA-78860. However it also suggests there are 2 alternate solutions:

  • Disabling IBUS support for idea. This is done with an empty XMODIFIERS environment variable when starting IntelliJ. For example, add this at the beginning of idea.sh and restart IntelliJ:

    # workaround for https://youtrack.jetbrains.com/issue/IDEA-78860
    export XMODIFIERS=
    
  • Force IBUS to keep the order of events by setting IBUS_ENABLE_SYNC_MODE=1 for ibus-daemon². In my case I implemented it by adding the following to my ~/.xsessionrc (create the file if it does not exist) and restart my session:

    # workaround for https://youtrack.jetbrains.com/issue/IDEA-78860
    export IBUS_ENABLE_SYNC_MODE=1
    

(I actually did both so I don't know which one fixes it for me)

If this works for you, this has the advantage of fixing the problem once and for all, and you shouldn't have to restart ibus-daemon any more.

The only inconvenient is that you need to restart IntelliJ or even your whole session to apply it the first time.

¹ In my case dead keys didn't work any more afterwards in some applications like Skype.
² Apparently IBUS should have the sync mode enabled by default in a future release, see issue 1697 and the corresponding commit.

Share:
10,620

Related videos on Youtube

Jas
Author by

Jas

Updated on September 18, 2022

Comments

  • Jas
    Jas over 1 year

    I have to restart my intellij every like 20 minutes whenever I hit multiple times ctrl+tab. It looks like clicking this multiple time on my ubuntu 13.10 + intellij 13.01 makes my intellij stuck. on intellij 12 same OS everything is just fine. anyway to work around this?

    • Admin
      Admin about 10 years
      Same issue here, so annoying!
    • Admin
      Admin over 9 years
      IntelliJ 14.1 + Ubuntu 14.10 still affected, although ctrl+click works
  • Jatin
    Jatin almost 10 years
    The answer saved many hours of mine. hence awarding a bounty (in 24 hours)
  • Mohsen Kashi
    Mohsen Kashi over 9 years
    After using 'ibus-daemon -rd' only English works in IDEA and other languages stops working (for my case Persian)
  • Dmitry Ginzburg
    Dmitry Ginzburg over 9 years
    @MohsenKashi Yes, you should run setxkbmap after that to set languages correctly.