Android Studio IBus Workaround

When I start Android Studio it gives the following warning:

"Your system uses the IBus daemon, which is known to cause intermittent keyboard issues in the IDE. See known issues for suggested workarounds."

I would like to use workaround # 2 found at http://tools.android.com/knownissues/ibus , but I have no idea what that means:

"$ XMODIFIERS =. / Bin / studio.sh"

Should I add this line to the config file somewhere?

Edit: This link has been added to the knownissues / ibus page. He has some useful information, I think.

+3


source to share


1 answer


This is what I did:

  • a studio_no_ibus.sh

    script is created in the directory android-studio

    with this content:
#!/bin/bash
#
# ---------------------------------------------------------------------
# Disable IBus input in Android Studio.
# ---------------------------------------------------------------------
#

pushd `dirname $0` > /dev/null
DIR=`pwd`
popd > /dev/null

XMODIFIERS= $DIR/bin/studio.sh

      



  • $ chmod +x studio_no_ibus.sh

    (if you are in the directory android-studio

    )

This way you can start Android Studio with IBus disabled by running script $ ./studio_no_ibus.sh

.

+5


source







All Articles