LoginSignup
7
4

More than 5 years have passed since last update.

VSCodeのExplorerからファイルを除外するにはfiles.exclude

Last updated at Posted at 2018-07-27

files.excludeというのがそれらしい。(参考:https://code.visualstudio.com/docs/getstarted/settings

Rユーザであれば、デフォルトに加えてknitrのキャッシュディレクトリとか.Rproj.userとかそのへんを入れておくとよさそう。

    "files.exclude": {
        // knitr cache
        "**/*_cache": true,

        // RStudio cache
        ".Rproj.user": true,

        // R files
        ".Rhistory": true
    }
7
4
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
7
4