My TextMate page
by Hans-Jörg Bibiko
To install it simply download the Xcode template
/Developer/Library/Xcode/Project Templates/Application Plug-in
The TMGoToLastEdit plug-in installs a new menu item “Go to Last Edit ⌥⌘J” at the bottom of TextMate's Navigation sub-menu. By using
a Undo/Redo or Redo/Undo approach (which will be detected automatically) on the current document this command will place the caret
to the last edit position.
GoToLastEditMenuItem.nib with the “Interface Builder” (part of the Developer Kit). This NIB file is located inside of the plug-in
(Show Package Contents in Finder):→ Resources → English.lproj → GoToLastEditMenuItem.nib.Under Construction
The Hypersearch bundle provides the ability to search for a pattern within the entire project, or within a given selection of files and/or folders, or within the current document based on the Oniguruma syntax.
It will list all occurrences within one line of the search pattern as an HTML page with hyperlinks linked to their positions.
The front end is based on the Ruby code written by Henrik Nyh. Instead of using grep as search tool I used onigrep which I wrote as a grep-like command line tool using the regular expression search engine Oniguruma (version 5.8.0) by K. Kosako original.
onigrep can also be used as standalone command tool. (For more details onigrep --help).
onigrep is a pure UTF-8 regexp search engine written C which also supports ignore case for all Unicode character like Greek, Cyrillic, etc.
This bundle allows you to generate snippets out of a text document very easily, esp. for temporarily often used snippets. After installation it only contains one command: "Create New Scratch Snippet". This command takes a selection which contains the snippet (last line := tab trigger = name of the new snippet) and installs a new snippet into the "SCRATCH SNIPPETS" bundle (scope is set to the current one automatically, but this can be changed easily). After doing that the new snippet is ready for usage.
A demo movie is here available (1.2MB).
The TMTOOLS plug-in is a conglomeration of system commands which provide the user with advanced functionality to interact with TextMate.
TMTOOLS plug-in calls undocumented TextMate functions without an appropriate API. It is strongly recommend to use that plug-in for private scripting only!More details here.
TextMate CSS design