Skip to content

Instantly share code, notes, and snippets.

@pastacolsugo
Last active December 23, 2019 15:17
Show Gist options
  • Save pastacolsugo/fcb4294ccabe525b552c8badeefb9859 to your computer and use it in GitHub Desktop.
Save pastacolsugo/fcb4294ccabe525b552c8badeefb9859 to your computer and use it in GitHub Desktop.
Sublime Text 3 plugin development on MacOS

Sublime Text 3 plugin development on MacOS

(kinda) Useful resources

How to open ST3 console

ctrl + `

Where to place the User Package script

/Users/sugo/Library/Application Support/Sublime Text 3/Packages

It's written in console on startup: (note: 4th line)

startup, version: 3211 osx x64 channel: stable
executable: /Applications/Sublime Text.app/Contents/MacOS/Sublime Text
working dir: /
packages path: /Users/sugo/Library/Application Support/Sublime Text 3/Packages
state path: /Users/sugo/Library/Application Support/Sublime Text 3/Local
zip path: /Applications/Sublime Text.app/Contents/MacOS/Packages
zip path: /Users/sugo/Library/Application Support/Sublime Text 3/Installed Packages
ignored_packages: []
pre session restore time: 0.180809
using gpu buffer for window
startup time: 0.260496
environment variables loaded using: /bin/bash -l
.
.
.

Good explanation on how to get started

(https://sublime-text-unofficial-documentation.readthedocs.io/en/latest/extensibility/plugins.html)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment