1
2

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.

【Mac】VS codeでCommand+zで戻しすぎた際の対処(Command+y設定方法)

Posted at

よく知られているように、コードを一つ戻す時はCommand+zというショートカットが有ります。

この逆は?というとCommand+yがあると思うのですがmacではvscodeの初期状態ではこちらは使うことができないです。

その際の方法を下に示します。簡単で便利!

まずvscode上でCommand+shift+Pを押します。
下のようにバーが出てくると思います。

スクリーンショット 2020-12-25 13.31.31.png

下でopen keyboard shortcut(json)というものを探します。
keybまで入力すると出てくると思います。

スクリーンショット 2020-12-25 13.33.55.png

開くとこのような[]
のみのjsonコードが出てくるのでそこで以下を[]の間に入れます。

{
    "key": "cmd+y",
    "command": "redo",
    "when": "editorTextFocus"
}

#下のような形で入れたら大丈夫です。

スクリーンショット 2020-12-25 13.38.16.png

これで保存したら設定完了です。
試してみると無事使えることがわかります。

お疲れ様でした。

1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?