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

Visual Studio Codeで最近開いたファイルに移動するコマンド

Last updated at Posted at 2016-03-12

軽量かつGitなどのdiffが見やすいのでVisual Studio Codeを使っています。
そこそこ大きなライブラリを開く際に開いたことのあるファイルへの移動がしたかったので調べました。

以下の"command"を修正すると自分好みのkeybindingで移動できるようになります。ちなみにデフォルトはctrl+tabという近すぎて押しにくい配置・・!

keyboardbindigs.json
[
  ...,

  {
    "key": "ctrl+u", // 最近開いたファイルの一覧を表示
    "command": "workbench.action.openPreviousEditor"
  },
  {
    "key": "ctrl+u", // ファイル一覧の移動
    "command": "workbench.action.quickOpenNavigateNext",
    "when": "inQuickOpen"
  }

  ...,
]

Visual Studio CodeはMarkdownのプレビュー機能といい、おしゃれなEditorですね!

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?