Hi,
Outliners are a good tool for organising many things.
I strive to keep everything in plain text.
The best outliner to my tastes that I've found so far is Vim's excellent outliner mode.
It does that vim 2-keystrokes-and-you've-rearranged-the-furniture thing to a tee (tea? T?). There's also a unix tool called hnb (not sure if it's on OS X):
http://hnb.sourceforge.net/Links/
My question is, does anyone here on this list use, or hope / intend to use, TextMate as an outliner? I mean, you could almost use the drawer alone, but that kind of inverts the plain text thing (plain file nodes, anyone?)
has anyone got any ideas on how TM could be scripted / used as-is / etc to facilitate use as an outliner? I only get to use TM / OS X at home (working on it though ..), so any advice from more practiced TM users appreciated.
cheers, David
I love outliners. I use OmniOutliner all the time (and used TAO before that).
I do sometimes use TM for a quick and dirty outline, just using tabs to mark levels. I wrote a bundle "Outliners" which exports a simple tab outline into various formats (HTML, Markdown, OPML, LaTeX... I forget what else) which is in the svn repository.
TM is not out of the box ready for outlining, but it has almost all of the needed functionality.
1. Folding could allow collapsing of outline pieces. I didn't follow the latest changes to folding technology, but it's possible that commands can either presently or in the future control folding so one could fold all items at a certain level.
2. Lines beginning with different tabs could be scoped as different levels and hence one could adjust the style sheet so lines began with bullets, etc. If the levels were defined in a nested way, i.e. outline.1, outline.1.1, etc., then I believe styles would even be inherited by sublevels cleanly.
3. Numbering could be done on a refresh basis, but I'm not sure it could be done live.
4. The big issue here is that there isn't currently a way for tabbed lines to be indented (i.e. lines always wrap to column 1). This is on Allan's To Do.
5. Commands to move bullets around the hierarchy seem straightforward to do, but would probably need to parse the whole document and would slow down with very large outlines. But I believe this would be very acceptable for 99% of documents.
6. Cloning seems much harder to do. Multiple columns seem like technically not an issue (tab delimiters), but likely a formatting disaster.
best wishes, Eric