Hide files with certain extension in Sublime Text Editor?

前端 未结 2 1320
迷失自我
迷失自我 2020-12-04 07:20

is it possible to hide all the files with certain extension from the sidebar (lateral nav bar) in Sublime Text Editor 3?

2条回答
  •  庸人自扰
    2020-12-04 08:07

    You can also set them up per project and ignore folders, in your .sublime-project file, e.g.:

    {
        "folders": [{
            "path": ".",
            "folder_exclude_patterns": [".svn", "._d", ".metadata", ".settings"],
            "file_exclude_patterns": ["*.pyc", "*.pyo", ".project"]
        }]
    }
    

提交回复
热议问题