I tried the standard "Hello, World!" Sublime Text 3 custom plugin steps, using several sources:
- https://leanpub.com/writing-sublime-plugins/read#helloworld
- https://docs.sublimetext.io/guide/extensibility/plugins/
- http://www.sublimetext.com/docs/plugin-basics
But I kept running into a problem: the directory where ST was prompting me to save my new plugin .py file was:
/Users/[Username]/Library/Application Support/Sublime Text 3/Packages/User/
So I made
/Users/[Username]/Library/Application Support/Sublime Text 3/Packages/User/HelloWorld/
and
/Users/[Username]/Library/Application Support/Sublime Text 3/Packages/User/HelloWorld/hello_world.py
...but this wouldn't load, and I couldn't run its commands.
However, when I put the file here:
/Users/[Username]/Library/Application Support/Sublime Text 3/Packages/User/hello_world.py
...it loaded fine.