I added support for some more valid (if unusual) Perl quoting.
* added <> delimiters for q, qq, qw, qx, m
* allow whitespace before delimiters (broken for s///)
* fixed s[][]
* fixed s()()
I'm a little confused by string.regexp.replaceXXX. Was it intended to replace string.regexp.replace.perl?
Hello there :]
I was always annoyed by this black line in the "Go To Symbol" toolbox :
Damit, it should be gray like in the "Select Bundle Item" toolbox !

In order to fix this, just put the "SymbolChooser.nib" file there :
/Applications/TextMate.app/Contents/Resources/English.lproj/
Confirm the replacement, restart TextMate and enjoy.
Urbanose
Hi,
I've thrown together a language grammar for spotting clichés in text
(attached). I've based the regexp pattern on the list[1] at the Plain
English campaign website. Incidentally, I was prompted to browse the
Plain English website when I read this in the latest release notes:
> When setting shellVariables as a scope dependent preference, it will eclipse
> only those settings (with less specific scope selector) that sets a variable
> also being set by the one with the more specific scope selector.
:-)
I need some advice though, because I've never tried writing a language
grammar before:
1) is the scope text.plain the best one to extend? The intention is
that this grammar is applied to all English text
2) Can I extend text.plain so my grammar gets used when "Plain Text"
is selected in the language selector? At the moment I have to select
"Check for Clichés"
3) Is the name of the selector OK? I chose "meta.cliche"
4) I originally tried the selector name "meta.cliché" but the fonts &
colours highlighting didn't work with that name. I had to drop the
accent. Bug?
Thanks
Jon
[1]: http://www.plainenglish.co.uk/cliches.htm
Hello all,
I've tried creating my own template which consists of two files (a
header & an implementation). It all works fine but when I execute the
template one the implementation file opens up & shows up in the
browser although the header physically exists in the folder -> so I
have to reopen the project to make it show up. I've duplicated my
template from the Singleton Obj-C template and I can't figure it out
why it is misbehaving. Any hints are greatly appreciated.
Kind regards,
M
Hi All,
I'm getting the following error when I use the subversion bundle.
I've not used it for a while but it used to be working fine. Any clues?
/Library/Application Support/TextMate/Bundles/Subversion.tmbundle/
Support/format_status.rb:22:in `require': no such file to load -- /
Users/jebw/Library/Application Support/TextMate/Support/bin/
Builder.rb (LoadError) from /Library/Application Support/TextMate/
Bundles/Subversion.tmbundle/Support/format_status.rb:22
Thanks
---
Jeremy Wilkins
Ibex Internet Ltd
Parkside Business Park
Parkside Rd.
Kendal
Cumbria
LA9 7EN
Tel: 0845 226 8342
Fax: 08718 729374
http://www.ibexinternet.co.uk/
Hi all,
I was wondering about this:
http://e-texteditor.com/blog/2006/textmate_on_windows
Is the account given on the site fully correct? Does anyone see any issues?
Just thought I would ask before I jumped to any conclusions.
-Eric
Hi all,
I'm having a problem with my HTML bundles behavior concerning single
tags and HTML completion. When I use the snippet for inserting a tag,
it inserts the tags properly, but does not automatically include the
trailing slash for single tags like <br> and <meta>. It also doesn't
work when I specify the doctype as XHTML. Has anyone else had this
trouble or has it been previously addressed? I was wondering if, since
the snippet in the bundle is written in Ruby, if the problem could be
with the version of Ruby I have installed on my system.
Thanks
-Ron
For those who care to check it out: http://blog.circlesixdesign.com/
2006/11/22/backpack-bundle-updated/
If you previously used the bundle, please note that you'll need to
run the "Change Backpack Account" command and re-enter your username
and API Key, as the storage mechanism for the key has changed for the
time being. Also note that the "Token" refers to the API Key (found
at the bottom of your "Account" page) and not your user password.
The changelog is included in the post, but I'll give the list of
features here so you can decide if you're interested ;-).
Features
* Stores your username and API key once and allows you to switch
accounts when necessary
Pages:
* Add and remove pages
Reminders:
* Create reminders from selected text or from scratch, using
“Minutes from now” or date picker
* Destroy a single reminder from a popup list
* Destroy multiple reminders from a multi-select dialog
* Select a reminder from a popup list and edit it
* See a list of upcoming reminders sorted by “Today”, “This
week” and “Future” (color coded)
Notes:
* Add selected text or document as a note, or edit a blank note.
Notes are added to a selected page (a page must be selected)
* View/Edit a note from a tree dialog, select a page->note->edit
note and save. Titles can be edited by double clicking. Only last
selected note is updated.
* Destroy note from similar dialog. Allows previewing of notes
so you don’t have to decide by title alone.
Account:
* Change your username and token at any time from a dialog.
I'm looking for ideas and suggestions (and take criticism well, when
it's politely offered).
Hi all -
I hadn't upgraded Textmate in quite a while and just recently did so
(I think I had 1.2, and I'm at 1.5 now - needed to do this to get the
GetBundle Bundle to work) and I noticed that the HTML (PHP) language
selection is gone - now either HTML or PHP is all red, rather than
both languages being colored correctly at the same time. I was
reading a little in the lists and see that PHP is more of a 'top
level' language now, but for those of us who have pages filled with
HTML and PHP I'd love to see these files colored that way they were
before.
For comparison, I have a HTML (ASP) bundle that seems to work like my
old HTML(PHP) bundle. I tried recreating my old bundle using the ASP
one as a guide, but no luck. Can this be remedied? Thanks.
ryan
Hi,
after my successful attempt to output a "designated" test url in
Safari, I'd now like to make a command which shows the rendered html
in a TextMate browser window. That is show _the actual html itself_,
not the browser-interpretation of that html.
My system of scripts and templates generate html. Now I like to see
that output html with nice code coloring in my favorite theme.
I see roughly two solutions: output the result of 'curl "$MY_URL"' in
a TextMate HTML browser window or create a new (html) document from
that output.
I would like the HTML Browser window variant much better.
For (1) because it keeps only one window –i.e. it refreshes itself
when it's already open, instead of opening a 2nd window–, (2) because
I won't be tempted to edit the output HTML, and (3) because when I
might become really smart –for which the changes are extremely slim,
based on previous records ;)– I might be able to give blocks of html
code a href to jump back to the specific code in the specific
template file (I just *love* the TODO bundle. It saved me so much
time. Life has become much more convenient :-))
My first problem is the with output of Apache restarting: it's not
quiet.
I need Apache to restart for all the last versions of my templates to
become effective, but the following code
echo "$PWD" | sudo -S apachectl $APACHE_CMD
(line 43 from apachectlUsingKeychain.sh in Apache Bundle Support
Folder) outputs "Password:", since sudo is asking for that. Is there
a way to make this statement quiet?
2nd, about the Create New Document variant. How to set the scope of
such a newly created document? Right now there is nothing indicating
to TextMate that is might be html, so the output stays unstyled.
Finally on to the core of this email: How to get HTML pretty printed
in a (HTML parsing) browser window?
I am looking at examples like pastie [1] or TextMate Theme Sourcerer
[2]. Are the solutions used in these web 2.0 projects also available
for my TextMate commands?
Best
dirk
[1]: http://pastie.caboo.se/
[2]: http://projects.serenity.de/textmate/codestyler/source.php