3
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 1 year has passed since last update.

VSCodeの検索結果からシンボリックリンクを除外する

Last updated at Posted at 2022-01-27

デフォルトでは検索結果にシンボリックリンクも含まれる

$ touch foo.txt
$ echo "foo" >> foo.txt
$ ln -s foo.txt bar.txt 

Screen Shot 2022-01-27 at 18.11.18.png

検索結果からシンボリックリンクを除外する

settings.jsonに以下の1行を追加する。

settings.json
{
    // ...
    "search.followSymlinks": false,
    // ...
}

Screen Shot 2022-01-27 at 18.11.30.png

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