Hello,
I am working on a site in ColdFusion and I would like to mitigate
this experience by using TextMate as my editor. I found broken links
to a once-existant bundle for Textmate, but I have not been able to
track it down. If anyone still has this or any other ColdFusion
bundle for TextMate, I would be most appreciative.
Thanks,
Eric O'Connell
IBA Webmaster
-
941-921-7443 x15
eric(a)bodytalksystem.com
www.bodytalksystem.com
Hi,
at the moment I have to write some code in ancient Fortran77 (don't ask ;-) ).
I am nearly going nuts about the fixed column structure a Fortran77 source
code has to (at least in my case) obey to:
column function
1 comment sign (c,*)
1-5 statement label
6 continuation sign if line wrap in previous line
7-72 actual code
The problem is that this fixed source form makes it very hard to work with any
special tab stop size, even with "Soft tabs" turned on as I don't need to
access any column between 1-5, but instead would like to go from 1 to 6 to 7
(and vice versa!).
In emacs I would be able to specifiy a tab stop list, i.e. a list with the
actual columns a tab should bring me to, e.g.: 6, 7, 11, 15, 19...
Is there any way to simulate something in Textmate? I am tired of adding and
deleting spaces manually in order to obey to that structure.
I apologize if this has already been discussed, a search in the WiKi and the
archives didn't bring up anything.
Bye,
Carsten
BTW: Congrats for the award Allan, TextMate really deserved it!
Hey guys,
I just started working with TM and its great. Given time, its going to
make my work much faster.
In my company we've created a large number of custom JSP taglibs. I
would like to be able to add those taglibs to the HTML bundle (or more
accurately create a new bundle from the HTML bundle for this). I was
trying to get my head around the language definitions and I got
hopelessly lost. Is there a tutorial somewhere that I can use to
figure out how to do this?
Thanks
Adam
In the midst of all the "this is why I don't switch", and "I switched
and love it" stories, I thought - as a brief interruption of the real
work on this list - I'd share my 5 lines. I am registered user #81. I
bought TextMate literally six hours after BBEdit, and haven't unpacked
BB since. In fact, if you take a look at the Codingmonkeys website,
you'll find my name there, as well, mentioned in one or two places.
Nonetheless, it's TextMate I stuck with. Since that day I purchased
it, I know what I did with it -
- wrote close to 120,000 lines of code (wc -l over my local repository)
- taught myself two new programming languages
- wrote two books
- a PhD thesis
- edited another book
- and co-wrote an article for a Sociological magazine based on the PhD
thesis that got me a rather prestigious award.
- wrote close to 5,000 weblog and wiki pages and entries
- wrote all my email
- wrangled a 41,000 line dataset for the thesis using Ruby and a
specialized bundle
- coded Flexbar (an addon for World of Warcraft, just about THE addon)
- and proposed marriage (don't ask)
there you have it. Not sure many Mac editors can claim they've been
used that versatilely.
Probably an easy question here. I'm trying to use the "Wrap selection
as link" HTML bundle, which has a key command of control-shift-L. I
copy a URL to my clipboard, wrap the text, and pressing those keys
does nothing. I even tried changing the shortcut, and it still didn't
work. Is there something I'm missing?
------------------------------------
Todd Dominey :: Dominey Design
http://domineydesign.com/http://slideshowpro.net/http://whatdoiknow.org/
howdy,
a while ago someone helped me setup the ctag stuff to work with the js
syntax i use:
On 11/30/05, Charilaos Skiadas <cskiadas(a)uchicago.edu> wrote: On Nov 30,
2005, at 3:54 PM, Jamal Johnson wrote:
> i've taken a look and to be honest i'm terrible with regexp's and
> could use some help. i'm trying to define a way to see objects in a
> certain format in my JS files:
>
> var CustomObject = Class.create();
> CustomObject.prototype = Object.extend( (new ViewObject()), {
> member1 : true,
> member2 : "someString",
> member3 : "anotherString",
>
> someFunction : function(){
> //doSomething
> },
>
> someOtherFunction : function(){
>
> }
> };
>
> so then in the tmCodeBrowser i'd see something like:
> Objects
> - CustomObject
> - member1
> - member2
> - member3
> - someFunction
> - someOtherFunction etc....
>
> something along those lines anyway. can one of you point me in a
> starting direction for howto setup the .ctags.tmcodebrowser file to
> do this for javascript files?
>
Try adding this to .ctags.tmcodebrowser
--langdef=javascript
--langmap=javascript:.js
--regex-javascript=/^(.*)
>
> .prototype *= *(.*)/-\1/o,object/
> --regex-javascript=/^[ \t]*(.*) *: (([^f]*)|(f[^u]*)|(fu[^n]*))[\t]*
> $/---var: \1/o,object/
> --regex-javascript=/^[ \t]*(.*) *: *function/---fun: \1/o,object/
>
> This might do something close to what you want. Just make sure to not
> ask TmCodeBrowser to sort things. With the simple regexp additions,
> you cannot recognize things in multiple lines, so there is no way of
> grouping the variable and function definitions with a particular
> object, this way at least visually they will be close to what you want.
>
> I believe that if one really wants to, one can write a parser and add
> it to the ctags source code and recompile, that is provided that Gerd
> Knops provides you the source code, or is willing to add the parser
> ofr you. I am guessing someone out there has already written a parser
> for javascript that maybe does what you want it to better, but I
> wouldn't know anything about it.
>
> I was under the impression that tmcodebrowser supported actionscript,
> which might be close to what you want, but I couldn't find it in
> the .ctags.tmcodebrowser format.
>
> Haris
but for some reason now codebrowser doesn't work at all for me, even with
simple js files. has anyone else been having issues?
i am using the most recent 1.05 release, at least that's what it says under
config. thanx!
- jamal
> >
> > ------------------------------
> >
> > Message: 7
> > Date: Fri, 23 Jun 2006 01:03:28 +0200
> > From: Allan Odgaard <throw-away-1(a)macromates.com>
> > Subject: Re: [TxMt] A TMBundle for Textpattern beta relaease
> > To: TextMate users <textmate(a)lists.macromates.com>
> > Message-ID: <F3B8D746-E6D6-428B-A2AE-690899C83B22(a)macromates.com>
> > Content-Type: text/plain; charset=WINDOWS-1252; delsp=yes;
> > format=flowed
> >
> > On 22/6/2006, at 23:01, marios wrote:
> >
>> >> Would it be possible to include an include statement, like the one I
>> >> included in the patched version ?
> >
> > Not sure exactly which one you are referring to.
If the HTML Bundle gets something like:
{ name = 'text.html.txp';
match = '(</txp:.*?>|<txp:.*?>|<txp:.*?\s{,8}/>|<txp:([a-z]{3})_.*?/?>)';
},
then I wouldn't have to include a whole clone of the HTML Bundle.
Wouldn't that also make it more compatible with the rest of the Bundle
Suite?
It's the HTML Bundle that interferes, I couldn't find any way to tell
the HTML Bundle not to match TXP tags.
> >
> > However, you can add ?disabled = 1;? to the rule to disable it. You
> > shouldn?t prefix it with X?es, as that?ll just give run-time errors
> > (for ?language not found?.)
I should have taken a better look at the syntax rules, thanks for
pointing that out.
> >
>> >> Just one quick question, some default assorted Grammars, have
>> >> disappeared from the Bundle Editor after the last Software update
>> >> to r1112.
> >
> > Which ones?
The HTML ones. I tried This:
1)I deleted the UUID from the cloned html Bundles(assorted ones),
since that didn't led to any change, I tried:
1) I discarded all bundles, included the TXP bundle that I had created
and left in the Bundle Editor.(I did that manually, not from the Bundle
Editor)
2)I SVN updated all bundles, reloaded Bundles from command line
Since that didn't lead to any change, I double clicked on the HTML
Bundle in /Library/Applicationsupport/Bundles , but no luck.
> >
>> >> Although they are there in their default locations, they just don't
>> >> show
>> >> up in the Bundle Editor.
> >
> > Only the languages? If it is the languages you copied to your own
> > bundle, it is because you did not give the copies a new UUID then --
> > i.e. use duplicate in the bundle editor (rather than copy on disk.)
See above, sorry, regards, marios
Still didn't check out Brad Choates new
Blogging Bundle, and watch your cast, that's really terrific.
I'd better watch that in depth ASAP,
regards, marios
Hello,
For my work I need to do quite some copy and pasting of ip-numbers.
If I have a logfile open in TextMate and doubleclick an ip it will
only select the parts between the . and not the entire ip.
Would anyone happen to know a workaround, a macro or a fix?
Thanks in advance for any advice you have :)
--
Tanja
... Be a rebel. Accept your body.