8
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 5 years have passed since last update.

VSCodeで定義元にジャンプするショートカットを設定する

Posted at

手順

  1. cmd + shift + PPreferences: Open Keyboard Shortcuts(JSON) を開く
  2. 下記をペースト
[
    {
        "key": "cmd+d",
        "command": "editor.action.goToDeclaration",
        "when": "editorTextFocus"
    }
]

これで対象のキーカーソルが乗っているメソッド名の上で、 cmd + d を押下すると定義元にジャンプできます。

8
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
8
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?