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.

[VSCode] 任意のキーを押したときに『◯◯ was pressed. Wating for second key of chord』とエラーが出るのを解決する

Last updated at Posted at 2020-09-22

はじめに

下記の環境で任意のキーを打った際に出るエラー
『◯◯ was pressed. Wating for second key of chord』
を解決します。

MacOS Catalina (Ver10.15.6)
VSCode (Ver1.49.1)

問題の原因/解決法

キーボードバインド(キーボードショートカットの割当)が被っている箇所があるため。

例えば今回スペースキーを打った際に『{Space} was pressed. Wating for second key of chord』と出ていたとしましょう。

まず、『コマンドパレット』を開き(cmd + Shift + p)、そこから『keyboard』と打ってOpen keyboard shortcutsを選択してください。
スクリーンショット 2020-09-22 14.05.07.png

次にkeyboard shortcutsの右上のファイルマークを押してkeybinding.jsonを開きます。
※下記画像の赤丸部分
image.png

// Empty
[
  {
    "key": "space e",
    "command": "code-runner.run"
  },
  {
    "key": "ctrl+alt+n",
    "command": "-code-runner.run"
  }
]

keybinding.jsonの中でアラートの出ているキーがないか探してみてください。
今回だと『"key": "space e",』が問題だとわかります。

// Empty
[
  {
    "key": "ctrl+alt+n",
    "command": "-code-runner.run"
  }
]

最後にVSCodeを再起動すれば完了です。

本日は以上です。

参考記事

VSCodeを初期化したがキーを押すと『{Space} was pressed. Wating for second key of chord』と出るのを解決したい/スタックオーバーフロー筆者質問

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?