Jump to content

TextMate

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Perceptes (talk | contribs) at 15:36, 30 September 2009 (→‎Community: Fixed grammatical error and linked to Ruby to match link for Rails.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

TextMate
Developer(s)Allan Odgaard (MacroMates)
Stable release
1.5.9 (1510) / August 29th, 2009
Repository
Operating systemMac OS X
Typetext editor
LicenseProprietary
Websitehttp://www.macromates.com/

TextMate is a general-purpose GUI text editor for Mac OS X created by Allan Odgaard. Its users are mostly programmers[1], though it has been used for screenwriting [2]. Notable features include declarative customizations, tabs for open documents, recordable macros, folding sections and snippets, shell integration, and an extensible bundle system.

History

In 2004, Allan Odgaard began the development of TextMate. TextMate 1.0 came out on 5 October 2004, after 5 months of development, followed by version 1.0.1 on 21 October 2004.[3][4][5] The release focused on implementing a small feature set well, and did not have a preference window or a toolbar, didn’t integrate FTP like BBEdit does, and had no options for printing.[6][7] At the beginning only a small number of programming languages were supported, as only a few “language bundles” had been created. Despite all that, some developers found this early and incomplete version of TextMate a welcome change to a market that was considered stagnated by the dominance of BBEdit.[8]

TextMate 1.0.2 came out on 10 December 2004. In the series of TextMate 1.1 betas, TextMate gained features: a preferences window with a GUI for creating and editing themes; a status bar with a symbol list; menus for choosing language and tab settings, and a “bundle editor” for editing language-specific customizations. On 6 January 2006, Odgaard released TextMate 1.5, the first “stable release” since 1.0.2.[9] Reviews were positive, and many reviewers who had previously criticised the program now endorsed it.[10]

TextMate continued to develop through mid-2006. On 8 August 2006, TextMate was awarded the Apple Design Award for Best Developer Tool, at Apple’s Worldwide Developers Conference in San Francisco, California, to “raucous applause.”[11] In February 2006, the TextMate blog expressed intentions for future directions, including improved project management, with a plug-in system to support remote file systems such as FTP, and revision control systems such as Subversion.[12] Those changes, however, have been slow to materialize. Throughout 2007, the core application changed only minimally, though its “language bundles” continued to advance.

Features

Nested scopes

TextMate allows users to create their own arbitrarily complex syntax highlighting modes by using a modified version of the Apple ASCII property list format to define language grammars. These grammars allow nesting rules to be defined using the Oniguruma regular expression library, and then assigned specific “scopes”: compound labels which identify them for coloration.

Therefore, each point of a document is assigned one or more scopes, which define where in the document the point is, how it should be colored, and what the behavior of TextMate should be at that point. For instance, the title of one of the links in the “External links” section has the scope:

text.html.mediawiki markup.list.mediawiki meta.link.inline.external.mediawiki string.other.link.title.external.mediawiki

This scope tells us that we are looking at a link title within a link within a list within a MediaWiki document.

TextMate themes can mark up any scope, at varying levels of precision. For instance, one theme may decide to color every constant (constant.*) identically, while another may decide that numerical constants (constant.numeric.*) should be colored differently than escaped characters (constant.character.escape.*). The nested scope syntax allows language authors and theme authors various levels of coverage, so that each one can choose to opt for simplicity or comprehensiveness, as desired.

Snippets

At their simplest, TextMate “snippets” are pieces of text which can be inserted into the document at the current location. More complicated behaviors are possible, based on a few useful generalizations of this idea. First, snippets can include one or more “tab stops”, which can be cycled through using the “tab” key. Second, the results of these tab stops can be dynamically changed in another portion of the snippet, as the user fills in the stop. Third, the snippets have access to TextMate environment variables such as current scope, current line number, or author name, and also have the ability to run inline shell scripts.

Bundles

TextMate language grammars, snippets, macros, commands, and templates can be grouped into “bundles” of functionality. Any snippet, macro, or command can be executed by pressing a keyboard shortcut, by typing a particular word and then pressing the “tab” key (so-called “tab triggers”), or by selecting the command from a menu. Tab triggers are particularly useful; the combination of tab triggers and snippets greatly eases coding in verbose languages, or languages with commonly-typed patterns.

Snippets, macros, and commands can be limited to a particular scope, so that for instance the “close html tag” command does not work in a python script, freeing up that keyboard shortcut to be used for something else. This allows individual languages, and even individual scopes, to override built-in commands such as “Reformat Paragraph” with more specialized versions. Even common key such as the return key and spacebar can be overridden to make coding seamless.

36 bundles ship with TextMate, but a Subversion repository contains 121 bundles, for everything from Markdown to blogging to MIPS assembly language.[13]

Project Management

Several documents or folders can be opened at once in a TextMate project window, which provides a drawer along its side listing file and folder names, and a series of tabs across the top. Search and replace can be undertaken across an entire project, and commands can interact with the selected files or folders in the drawer. Bundles for CVS, Subversion, darcs, and other revision control systems allow TextMate to manage versioned code.

Other features

TextMate has several other notable features:

  • Folding code sections can be used to hide areas of a document not currently being edited, for a more compact view of code structure or to avoid distraction. The sections to be folded can be selected by hand, or the structure of the document itself can be used to determine foldings.
  • Regular-expression–based search and replace speeds complicated text manipulations. TextMate uses the Oniguruma regular expression library developed by K. Kosako.[14]
  • A function pop-up provides a list of sections or functions in the current document.
  • Clipboard history allows users to cut many sections of text at once, and then paste them.
  • A column editing mode trivializes adding the same text to several rows of text, and is very useful for manipulating tabular data.
  • A WebKit-based HTML view window shows live updates as an HTML document is edited.

Limitations

TextMate does have a few limitations:

  • There is no support for variable-width or wide fonts, meaning that languages such as Chinese, Japanese, Korean, and others are not really supported, as their characters are wider than Latin characters.
  • There is no support for right-to-left languages such as Hebrew and Arabic.
  • Large (many megabyte) files or long lines (many KB) can slow TextMate considerably. Other editors have better support for large files.
  • TextMate has no built-in support for (S)FTP. There are some workarounds mentioned at the TextMate Wiki. [15]
  • Because TextMate is not tightly coupled to a scripting language, as Emacs is to elisp, it is impossible for users to have complete control over the behavior of some built-in commands such as those which indent sections of text or those which move columns around; however, many useful actions can be accomplished with TextMate’s macros and commands. Allan Odgaard explained his thoughts on the subject in an email to the TextMate mailing list.[16]
  • No built-in HTML validator — because TextMate uses the W3C validator for HTML validation, users must be online to validate HTML.
  • No support for split views
  • Lacks intelligent undo functionality.

Community

TextMate has a large and active community of users, dozens of whom contribute to the open-source bundle subversion repository. The TextMate wiki has many hints and tips, feature suggestions, and links to external resources. The mailing list has medium traffic, but with a relatively high signal-to-noise ratio. A ticket system exists for filing bug reports and feature requests, and an IRC channel (#textmate) is usually active.

TextMate users write code in many dozens of programming languages, and bundles have been written to support these. Most bundles are supported by primary users - for instance the Ruby and Ruby on Rails bundles are supported by core developers for these languages libraries such as David Heinemeier Hansson, Rails’ creator.

Awards

TextMate 1.5 won the Apple Design Award for best developer tool in 2006.

Notes

  1. ^ See this poll at the TextMate wiki for most commonly used languages.
  2. ^ Screencasts — TextMate
  3. ^ David Hansson. “TextMate 1.0 is finally here!”, TextMate Blog, 5 October 2004.
  4. ^ Allan Odgaard. “Profiles/Allan Odgaard” on the TextMate wiki, 20 November 2005.
  5. ^ David Hansson. “TextMate 1.0.1 emerges after nine betas”, TextMate Blog, 21 October 2005.
  6. ^ Matt Willmore. “TextMate 1.0.1 Review: A Checkmate for TextMate?”, Maczealots.com, 8 October 2004.
  7. ^ Michael “drunkenbatman” Bell. “TextMate: The Missing Editor for OS X”, Drunkenblog, 4 November 2004.
  8. ^ Kimbro Staken. “A cool new text editor - TextMate - Mac OS X”, Inspirational Technology, 6 October 2004.
  9. ^ Allan Odgaard. “TextMate 1.5”, TextMate Blog, 6 January 2006.
  10. ^ Rui Carmo. “Third Time’s The Charm”, Tao of Mac, 8 January 2006.
  11. ^ John Gruber. “ADA: TextMate 1.5.2”, Daring Fireball Linked List, 8 August 2006.
  12. ^ Allan Odgaard. “Future Directions”, TextMate Blog, 15 February 2006.
  13. ^ For information on getting more bundles, see the relevant section in the TextMate manual.
  14. ^ "20 Regular Expressions". TextMate. Retrieved 2009-04-28.
  15. ^ How to edit files from my FTP Server as a TextMate project. TextMate Wiki - FAQ: Projects
  16. ^ Allan Odgaard. “Re: Changing cursor position from command”. TextMate mailing list. 14 February 2007.

Further reading

See Also