Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 895 Bytes

ubuntu下WebStorm无法输入中文.md

File metadata and controls

25 lines (21 loc) · 895 Bytes

你现在使用的输入法具体是什么?另外你是用 ibus 的吗? 在启动文件中输入

export XMODIFIERS="@im=ibus"
export GTK_IM_MODULE="ibus"
export QT_IM_MODULE="ibus"

然后启动 WebStorm 试试。 如果不行的话,你再换成下面的试试。

export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export XMODIFIERS=@im=fcitx

如果还不能解决,参考下面的链接操作一下

https://youtrack.jetbrains.com/issue/IDEA-246833

https://www.jetbrains.com/help/idea/switching-boot-jdk.html

https://confluence.jetbrains.com/pages/viewpage.action?pageId=173178989

以上方案由官方提供,亲测好用