Changes between Version 6 and Version 7 of TextMate


Ignore:
Timestamp:
Apr 21, 2006, 9:33:32 AM (18 years ago)
Author:
pb@…
Comment:

added screen shots, tweaked text

Legend:

Unmodified
Added
Removed
Modified
  • TextMate

    v6 v7  
     1= Using TextMate with Django =
     2
    13!TextMate is a popular text editor for OS X. http://macromates.com/
    24
    3 One of the most interesting features is the ability to define "snippets", abbreviations which can be expanded into larger blocks of text containing placeholders.
     5One of the most interesting features is the ability to define "snippets", abbreviations which can be expanded into larger blocks of text containing placeholders. TextMate organizes most of its features -- including snippets, macros, templates, and drag-and-drop behaviors -- into language-specific "bundles."
    46
    5 TextMate organizes most of its features, including snippets, macros, templates, and drag-and-drop behaviors, into language-specific "bundles."  There's a Django bundle, though it is not among the ones included with the application; you have to fetch it from the repository (instructions here: http://macromates.com/wiki/Main/Bundles). It handles both Django templates and Django Python code.
     7There's a Django bundle, though it's not among the ones included with the application; you have to fetch it from the repository (instructions here: http://macromates.com/wiki/Main/Bundles). It handles both Django templates and Django Python code. The bundle's Python snippets are built for the magic-removal branch of Django.
     8
     9The Django-Python syntax in particular is a work in progress, and suggestions and contributions are welcome.
     10
     11== Syntax coloring examples ==
     12
     13Stock HTML mode:
     14
     15http://e-scribe.com/img/django_textmate/templ_html.png
     16
     17Django template mode:
     18
     19http://e-scribe.com/img/django_textmate/templ_django.png
     20
     21Stock Python mode:
     22
     23http://e-scribe.com/img/django_textmate/code_python.png
     24
     25Django Python mode:
     26
     27http://e-scribe.com/img/django_textmate/code_django.png
Back to Top