Skip to content

Coda2 Plugin Developer Framework for plugins built with Python

Notifications You must be signed in to change notification settings

ZeusbasePython/coda-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

94 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Coda Plugin Skeleton

Coda Plugin Skeleton is a poorly named framework for writing Cocoa plugins for Coda using Python.

It provides a PyObjC bridge to the Cocoa plugin API, along with several convenience functions for dealing with text manipulation, menu generation, etc.

Building from source

In order to get anything useful out of Coda Plugin Skeleton, you will need to download and build the source:

git clone github.com/ZeusbasePython/coda-plugin.git
cd coda-plugin
python setup.py py2app

If you wish to create a development version, you can run this instead:

python setup.py py2app -A

This will create a normal version of your Coda plugin, but symlink all the internal files so that you don't have to rebuild the plugin to try out changes (you'll still need to relaunch Coda between changes, though).

Build Instructions

  1. Edit setup.py, enter your sweet new plugin name and details.

  2. Open CodaPlugin.py and rename the class inside. Because Coda doesn't run plugins in a sandbox, this class name can't be the same as any other plugin. Be sure to change the plugin_name member variable while you're in there.

  3. Edit src/Contents/Resources/English.lproj/PluginActions.plist to add your actions.

  4. Add corresponding action scripts to src/Support/Scripts. If your plugin needs additional libraries, drop them in src/Library and they'll be automatically included.

About

Coda2 Plugin Developer Framework for plugins built with Python

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 82.0%
  • Objective-C 18.0%