1
0

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.

VS Code でファイル検索したあとに、検索結果の一覧にfocusするショートカット

Last updated at Posted at 2021-01-19

VS Codeの数あるショートカットから、知られていなさそうだけど、自分が便利に使っているものを紹介します。

よく使う機能の中に、workspace内の全ファイルで検索があるのではないでしょうか?私は息を吸うように、⇧⌘Fで全文検索しています。

⇧⌘Fの検索結果となる該当ファイルを開く時、キーボードから手を離さず開きたいのですが、みなさんはどうしているでしょうか?

Focus Next Search Result

デフォルトのkey bindingを眺めると、F4を押すことで検索結果のファイルを開けることがわかりました。
https://code.visualstudio.com/docs/getstarted/keybindings#_search

次々と検索結果のファイルを開きたい場合は、このショートカットは適していそうですが、自分の場合は検索結果の一覧で、開くファイルを目で確認してから開きたいというモチベーションがありました。検索結果の一覧へfocusできるショートカットがあれば、やりたいことが実現できそうです。

Search: Focus List

ということで、探してみるとズバリ Search: Focus List というCommandがありました。https://github.com/microsoft/vscode/issues/53696

image

私はこのCommandにショートカットを割り当て

  • 検索後にショートカットで、検索結果一覧へfocus
  • 開きたいファイルを一覧から目星をつけて、Enterでそのファイルへfocus移動
  • もう一度、検索結果一覧に戻りたいときに、ショートカットで検索結果一覧へfocus

このような形で検索ライフを過ごしています。他に便利な方法があれば教えてください。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?