Tell Sublime Text to ignore everything in .gitignore?

后端 未结 3 1223
遇见更好的自我
遇见更好的自我 2021-02-01 00:37

Vim has this great plugin to convert the current project\'s .gitignore into a syntax understandable by Vim and from there exclude all those files from opening.

3条回答
  •  庸人自扰
    2021-02-01 01:13

    You can get a list of all the ignored files with

    git ls-files --others -i --exclude-standard

    and then add this to your file_exclude_patterns in Sublime Text as bheklilr suggested.

提交回复
热议问题