Read more

How to fix: RubyMine occasionally no longer accepts keyboard input

Arne Hartherz
November 16, 2015Software engineer at makandra GmbH

From time to time, RubyMine suddenly did not accept any keyboard input and felt crashed, while mouse interaction was still possible. This apparently happens to all IntelliJ IDEs, especially on Ubuntu 14.04.

Illustration online protection

Rails professionals since 2007

Our laser focus on a single technology has made us a leader in this space. Need help?

  • We build a solid first version of your product
  • We train your development team
  • We rescue your project in trouble
Read more Show archive.org snapshot

I've managed to fix it by having a shell script that exports XMODIFIERS="" when launching RubyMine, like this:

#!/bin/sh
XMODIFIERS= /home/arne/rubymine/bin/rubymine.sh

It has been working reliably for me ever since, at least until RubyMine 8.

An alternate solution suggested on the Jetbrains issue tracker Show archive.org snapshot is setting IBUS_ENABLE_SYNC_MODE=1.

#!/bin/sh
IBUS_ENABLE_SYNC_MODE=1 /home/arne/rubymine/bin/rubymine.sh

This seems fix issues on RubyMine 8.


The benefit of an extra launcher file is that you can upgrade RubyMine and don't have to touch your launcher.

Tested on Ubuntu Mate 18.04

As the solutions above seem to handle a problem with IBus, you can try to disable IBus completely. IBus can be used to switch between keyboard input languages, but Mate still allows to switch languages/layouts in the Keyboard > Layouts settings.

Disable IBus:

  • Go to Mate Control Center > Language Support
  • Select none for Keyboard input method system (from IBus)
Posted by Arne Hartherz to makandra dev (2015-11-16 15:22)