Choose folders to be ignored during search in VS Code

前端 未结 16 1025
既然无缘
既然无缘 2020-11-28 18:10

Right now when I use +O to search for files, the fuzzy matching appears to operate over all files in the current project. Unfortunately, this includes

16条回答
  •  渐次进展
    2020-11-28 18:34

    Create a file with .gitignore & put the folder or file name which one you want to ignore.

    to ignore everything below node_modules folder

    echo node_modules/ > .gitignore 
    

提交回复
热议问题