├── .gitignore ├── README.markdown ├── TEAforCoda.py ├── setup.py └── src ├── Contents └── Resources │ ├── CodaPlugInsController.h │ └── English.lproj │ ├── TEAEnterAbbreviation.nib │ ├── designable.nib │ └── keyedobjects.nib │ ├── TEAMirroredTagEntry.nib │ ├── designable.nib │ └── keyedobjects.nib │ ├── TEAPrefixSuffixEntry.nib │ ├── designable.nib │ └── keyedobjects.nib │ └── TextActions.plist └── Support ├── Library ├── TEASheetLoader.py ├── html_replace.py ├── persistent_re.py ├── tea_actions.py ├── zen_editor.py └── zencoding │ ├── __init__.py │ ├── filters │ ├── __init__.py │ ├── comment.py │ ├── escape.py │ ├── format-css.py │ ├── format.py │ ├── haml.py │ ├── html.py │ └── xsl.py │ ├── html_matcher.py │ ├── stparser.py │ ├── zen_actions.py │ ├── zen_core.py │ ├── zen_editor.py │ └── zen_settings.py └── Scripts ├── TEAGoto.py ├── TEAInsertSnippet.py ├── TEASnippetWithWord.py ├── TEATrim.py ├── TEAUpdateImageSize.py ├── TEAWrapInLink.py ├── TEAWrapText.py ├── TEAWrapWithAbbreviation.py └── TEAZenActions.py /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/README.markdown -------------------------------------------------------------------------------- /TEAforCoda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/TEAforCoda.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/setup.py -------------------------------------------------------------------------------- /src/Contents/Resources/CodaPlugInsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Contents/Resources/CodaPlugInsController.h -------------------------------------------------------------------------------- /src/Contents/Resources/English.lproj/TEAEnterAbbreviation.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Contents/Resources/English.lproj/TEAEnterAbbreviation.nib/designable.nib -------------------------------------------------------------------------------- /src/Contents/Resources/English.lproj/TEAEnterAbbreviation.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Contents/Resources/English.lproj/TEAEnterAbbreviation.nib/keyedobjects.nib -------------------------------------------------------------------------------- /src/Contents/Resources/English.lproj/TEAMirroredTagEntry.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Contents/Resources/English.lproj/TEAMirroredTagEntry.nib/designable.nib -------------------------------------------------------------------------------- /src/Contents/Resources/English.lproj/TEAMirroredTagEntry.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Contents/Resources/English.lproj/TEAMirroredTagEntry.nib/keyedobjects.nib -------------------------------------------------------------------------------- /src/Contents/Resources/English.lproj/TEAPrefixSuffixEntry.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Contents/Resources/English.lproj/TEAPrefixSuffixEntry.nib/designable.nib -------------------------------------------------------------------------------- /src/Contents/Resources/English.lproj/TEAPrefixSuffixEntry.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Contents/Resources/English.lproj/TEAPrefixSuffixEntry.nib/keyedobjects.nib -------------------------------------------------------------------------------- /src/Contents/Resources/English.lproj/TextActions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Contents/Resources/English.lproj/TextActions.plist -------------------------------------------------------------------------------- /src/Support/Library/TEASheetLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/TEASheetLoader.py -------------------------------------------------------------------------------- /src/Support/Library/html_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/html_replace.py -------------------------------------------------------------------------------- /src/Support/Library/persistent_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/persistent_re.py -------------------------------------------------------------------------------- /src/Support/Library/tea_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/tea_actions.py -------------------------------------------------------------------------------- /src/Support/Library/zen_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/zen_editor.py -------------------------------------------------------------------------------- /src/Support/Library/zencoding/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Support/Library/zencoding/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/zencoding/filters/__init__.py -------------------------------------------------------------------------------- /src/Support/Library/zencoding/filters/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/zencoding/filters/comment.py -------------------------------------------------------------------------------- /src/Support/Library/zencoding/filters/escape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/zencoding/filters/escape.py -------------------------------------------------------------------------------- /src/Support/Library/zencoding/filters/format-css.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/zencoding/filters/format-css.py -------------------------------------------------------------------------------- /src/Support/Library/zencoding/filters/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/zencoding/filters/format.py -------------------------------------------------------------------------------- /src/Support/Library/zencoding/filters/haml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/zencoding/filters/haml.py -------------------------------------------------------------------------------- /src/Support/Library/zencoding/filters/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/zencoding/filters/html.py -------------------------------------------------------------------------------- /src/Support/Library/zencoding/filters/xsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/zencoding/filters/xsl.py -------------------------------------------------------------------------------- /src/Support/Library/zencoding/html_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/zencoding/html_matcher.py -------------------------------------------------------------------------------- /src/Support/Library/zencoding/stparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/zencoding/stparser.py -------------------------------------------------------------------------------- /src/Support/Library/zencoding/zen_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/zencoding/zen_actions.py -------------------------------------------------------------------------------- /src/Support/Library/zencoding/zen_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/zencoding/zen_core.py -------------------------------------------------------------------------------- /src/Support/Library/zencoding/zen_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/zencoding/zen_editor.py -------------------------------------------------------------------------------- /src/Support/Library/zencoding/zen_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Library/zencoding/zen_settings.py -------------------------------------------------------------------------------- /src/Support/Scripts/TEAGoto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Scripts/TEAGoto.py -------------------------------------------------------------------------------- /src/Support/Scripts/TEAInsertSnippet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Scripts/TEAInsertSnippet.py -------------------------------------------------------------------------------- /src/Support/Scripts/TEASnippetWithWord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Scripts/TEASnippetWithWord.py -------------------------------------------------------------------------------- /src/Support/Scripts/TEATrim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Scripts/TEATrim.py -------------------------------------------------------------------------------- /src/Support/Scripts/TEAUpdateImageSize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Scripts/TEAUpdateImageSize.py -------------------------------------------------------------------------------- /src/Support/Scripts/TEAWrapInLink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Scripts/TEAWrapInLink.py -------------------------------------------------------------------------------- /src/Support/Scripts/TEAWrapText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Scripts/TEAWrapText.py -------------------------------------------------------------------------------- /src/Support/Scripts/TEAWrapWithAbbreviation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Scripts/TEAWrapWithAbbreviation.py -------------------------------------------------------------------------------- /src/Support/Scripts/TEAZenActions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeche/tea-for-coda/HEAD/src/Support/Scripts/TEAZenActions.py --------------------------------------------------------------------------------