1
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】git管理外のファイルを検索対象にしたい

Last updated at Posted at 2020-12-24

#初めに
私は普段VSCodeで開発を行っているんですが、唐突にこんなことを思いました。

「普段意識していないけど、フレームワークの中身ってどんな風に動いてるんだ…?」

そこで「Ctrl+PやCtrl+Shift+F(Windowsの場合)」でファイル検索をしようとしたところ、あることに気が付きました。
フレームワークのファイルが引っかからん!

#原因

VSCodeはデフォルトで.gitignoreファイルと.ignoreファイルを検索から除外する設定がオンだから!
※「Ctrl」+「,」(Windowsの場合)で設定画面を開くことができ、「機能-検索」に該当の設定が存在します。
search0.png

確かに検索のたびにフレームワーク等のGit管理外ファイルが引っかかったら鬱陶しいですよね。

#解決方法
今回の目的はフレームワークの処理を検索することだったので、こちらのチェックを外してしまいましょう!
search1.png

すると、VSCodeの設定を司るsetting.jsonファイルが更新されました。
search2.png

あとは実際に検索してみて…
search3.png

おっけーーーーーい!!

#まとめ
今回のように検索の設定はもちろんですが、編集したら自動でファイルを保存してくれる設定や、特定のファイル編集の際行末尾の空白を自動で削除する設定(マークダウンのときだけ設定できるんだ…!となりました。)等、開発効率を上げる設定はたくさんあります。
こちらの記事を書きながら「自分ももっと調べなきゃ…!」と感じました。

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