How to edit a native build system in Sublime Text 2?

前端 未结 4 1108
野的像风
野的像风 2020-12-28 16:36

Ok this is very trivial question, but just cannot find answer anywhere.

I know there must be a JSON file with all the build systems somewhere, but I just cannot find

4条回答
  •  感情败类
    2020-12-28 16:59

    As dbw said, basically you should make a copy of default setting file to your User folder and edit it to override default one. And on ST3 most default setting files are packaged, use PackageResourceView will make your work easier.

    For example edit default ST3 python buid setting on Windows:

    • ctrl+alt+p, type "prv" and select "open" to call PackageResourceView's open.
    • select "python" > "Python.sublime-build"
    • notice default file path is "...\Sublime Text 3\Packages\Python\Python.sublime-build", so create a user copy to Users "\AppData\Roaming\Sublime Text 3\Packages\Python\Python.sublime-build" and edit it.

提交回复
热议问题