2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PhpStormバージョン2019.3で入力が不安定なときの対処

Posted at

現象

PhpStormのバージョン2019.3系で、キーボードからの入力が不安定になることがある。
具体的には次のような現象が頻発する。

  • ペーストが二重で実行される。
    • hogeをペーストすると hogehogeになるなど。
  • 素早く入力すると前の入力が後の入力にかき消される。
    • 結果 type と打ちたいのに eしか残らなかったりする。
  • 入力が二重に実行される。
    • aaaになってたり。
    • キーによるカーソル移動も同様。

この問題は2019.2でも指摘がされており、jdkのバージョン11の挙動が原因とされている。
解決としてはjdkのバージョン8を導入するというものがあり、この問題に対するIntellJによる公式回答にもなっている。
ただ2019.3系からは導入方法が異なっているようで、かつそれを解説している記事なども見当たらなかったためまとめておく。

対処法

jdk8をインストール > 適当に展開しておく

Preferences > Plugins > Choose Runtime をinstall
IDEの再起動求められるので再起動
image.png

Shift*2でショートカットメニューを開きchoose runtime > 表示されたアクションを実行
image.png

Choose Runtimeメニュー > 先程展開したjdkフォルダを指定してinstall

これで治るはず。

参考

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?