Begin forwarded message:
> From: Scott Lahteine <slahteine(a)mac.com>
> Date: 27. Nov 2006 22:55:49 GMT+01:00
> To: textmate-dev(a)lists.macromates.com
> Subject: [SVN] Bundle for Torquescript (2D)
> Reply-To: Bundle developers <textmate-dev(a)lists.macromates.com>
>
> Hi,
>
> I've created a Bundle to support Torquescript, the scripting
> language used by GragageGames' Torque Engine ( http://
> garagegames.com ). The Torque Engine was used to create such games
> as Tribes II and Marble Blast.
>
> Last year GarageGames released Torque Game Builder, a system for
> making 2D games, which also uses the Torquescript language. They
> sell the Indie license for only US$100 and it has been a staggering
> success for them. At GDC 2006 we learned that they're selling about
> 3000 licenses per week.
>
> So far this bundle only supports Torque 2D (Torque Game Builder)
> but I hope to extend it for Torque 3D eventually.
>
> The bundle and documentation are posted here:
> http://thinkyhead.com/pub/Torque2DForTextMate.zip
>
> --
> Scott Lahteine Thinkyhead Software
> scott(a)thinkyhead.com http://www.thinkyhead.com/
>
>
>
>
> _______________________________________________
> textmate-dev mailing list
> textmate-dev(a)lists.macromates.com
> http://lists.macromates.com/mailman/listinfo/textmate-dev
Attached is a little patch to add embedded XML to Perl.
For example:
my $foo = <<XML;
<?xml version="1.0" encoding="UTF-8"?>
<example>foo</example>
XML
Perhaps this option already exists or perhaps it can be a feature request.
When editing files the filename appears in the title bar of the
application. Is it possible to get the full path name displayed at the
top? Many times I'll be working on files of the same name in different
directories and it's a pain to figure out which one is which.
thanks
I gave a talk using TM last Friday and have written a bit about the
way I prepared it
http://advogato.org/person/fxn/diary.html?start=452
I send it to the list in case it is helpful to someone else.
-- fxn
Hello
I have annoying problem while using Textmate to edit and view LaTex
files.
Very frequently, and I have not been able to determine a pattern to
this behavior, I save the current document I'm working on, (apple -
s), then I try to view it, (apple - R), the document is processed by
pdftex fine with no errors, but Textmate complains that "Error: PDF
file not written to disk", even though there are no problems with the
texing.
Here is the exact error message displayed in the "Typeset & View"
window:
<start error message>
Compiling LaTeX…
This is pdfeTeXk, Version 3.141592-1.30.4-2.2 (Web2C 7.5.5)
Typesetting: ./mathmethods.tex
Document Class: article 2005/09/16 v1.4f Standard LaTeX document class
Output written on mathmethods.pdf (1 page, 21844 bytes).
mathmethods.log
Error: PDF file not written to disk
<end error message>
I think there might be some issue with the LaTex bundle not parsing
the output of pdftex correctly.
FYI, I have a MacPro, OS 10.4.8
Any ideas???
thanks
Hi all-
Here is a first attempt to make a slightly RefTeX-esque citation
command. I worked it up to fit my writing style a little more: It's
not bound to the cite context, so you invoke it after typing, say, a
last name or a word from a title. It will prompt for any of a set of
citation formats (many of which will require natbib to typeset), and
then complete the cite with the existing cite completion command.
Output is as a snippet so you can tab through to add page numbers or
additional citekeys (invoke it again while within a cite command, and
it will skip the format selection and prompt for another citekey
match -- though that breaks the ability to tab out of the cite
command). I like it.
It's a quick hackup, and improvements/suggestions are welcome --- but
it scratches an itch, for now. I'd like to have a default of \cite,
for example, so you can invoke it and just hit enter to move right
past the format selection and on to citekey completion.
Cheers-
-Alan
I have discovered a couple of oddities in the Python language grammar:
Function names containing digits are not handled the same as functions names that do not contain digits. You can see this by looking at how the following code is highlighted:
def foo(self):
pass
def foo2(self):
pass
I have not spent much time studying TextMate language grammars yet, but it appears that the "begin" regular expression for meta.function.python should be modified to allow digits in the function name.
Type names are highlighted as type names even in contexts where they couldn't possibly be type names. For example, in:
foo.set(x)
the member function "set" is highlighted as if it were a type.
A negative look-behind RE could distinguish this specific case. I don't know how many other such cases are lurking in Python.
One could argue that it's bad practice to use type names as method names. Probably so, but it's not always avoidable. In particular, "set" wasn't even a type name until recently, and it's used as a method name in the standard library (e.g., in Tkinter). It's also a very nice verb to use as a method name.
Both of these came up while typing in a single recipe from _Python Cookbook_ (Recipe 11.11 from the 2nd Edition). I hope that's not typical. Syntax coloring needs to be *more* reliable than eyeballing the code.
-Paul
paul(a)mustbeart.com
Could someone tell me how to show the groups and files as shown in
the following
http://media.nextangle.com/textmate/tabs_and_running.mov
Thanks in advance
Michael
Also
On Nov 25, 2006, at 8:28 AM, textmate-request(a)lists.macromates.com
wrote:
> Send textmate mailing list submissions to
> textmate(a)lists.macromates.com
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.macromates.com/mailman/listinfo/textmate
> or, via email, send a message with subject or body 'help' to
> textmate-request(a)lists.macromates.com
>
> You can reach the person managing the list at
> textmate-owner(a)lists.macromates.com
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of textmate digest..."
> Today's Topics:
>
> 1. Re : [TxMt] Word Count ? (Francois)
> 2. Re: tiny feature request: selection scheme (Allan Odgaard)
> 3. Re: center document? (Allan Odgaard)
> 4. Re: Paren matching (Allan Odgaard)
> 5. Re: Fix for Wordpress/Blogging bundle (Date Created) (Martin
> Winter) (Michael Barnum)
>
> From: Francois <francois_75015(a)yahoo.fr>
> Date: November 25, 2006 7:13:55 AM EST
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: Re : [TxMt] Word Count ?
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> Hi Mark,
>
> It Works perfectly. That's excellent. It fits exactly what I needed
>
> Thanks !
>
> F
>
>
> ----- Message d'origine ----
> De : Mark Eli Kalderon <eli(a)markelikalderon.com>
> À : TextMate users <textmate(a)lists.macromates.com>
> Envoyé le : Samedi, 25 Novembre 2006, 12h32mn 35s
> Objet : Re: [TxMt] Word Count ?
>
> You need to generate a pdf to use the enclosed command. Hope this
> helps, Mark
>
>
>
> On 25 Nov 2006, at 11:10, Francois wrote:
>
>> Hello All,
>>
>> I am writing a document un LaTeX and I would like to make a word
>> count. I search online manuals but did not find any word count
>> function... does-it exist ?
>>
>> Thanks
>>
>> Francois
>>
>>
>>
>> _____________________________________________________________________
>> _
>> For new threads USE THIS: textmate(a)lists.macromates.com
>> (threading gets destroyed and the universe will collapse if you
>> don't)
>> http://lists.macromates.com/mailman/listinfo/textmate
>
>
>
> ______________________________________________________________________
> For new threads USE THIS: textmate(a)lists.macromates.com
> (threading gets destroyed and the universe will collapse if you don't)
> http://lists.macromates.com/mailman/listinfo/textmate
>
>
>
>
>
>
> From: Allan Odgaard <throw-away-1(a)macromates.com>
> Date: November 25, 2006 7:16:42 AM EST
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: Re: [TxMt] tiny feature request: selection scheme
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> On 24. Nov 2006, at 17:03, Piero D'Ancona wrote:
>
>> When several commands have the same shortcut a tooltip list
>> appears and one has to scroll down and then hit enter to choose one.
>
> It’s a standard menu -- not much I can do with it (without
> venturing into under documented, crash-prone, and OS version-
> specific Carbon code).
>
>> Wouldn't it be convenient if by default the topmost element in the
>> list would be selected?
>> This way, it would be sufficient to hit enter in order to choose
>> the first element (one keypress
>> less in many cases).
>
> As someone else mentioned, it is possible to press 1 to select
> first item w/o using return.
>
>
>
>
>
> From: Allan Odgaard <throw-away-1(a)macromates.com>
> Date: November 25, 2006 7:20:53 AM EST
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: Re: [TxMt] center document?
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> On 23. Nov 2006, at 23:49, Xavier Noria wrote:
>
>> I would like to write a command to center the document content in
>> the editor window. Think a boxed title in Keynote. Is there a way
>> to know the window height in lines? I dumped the environment and
>> saw no relevant variable.
>
> There’s currently no such variable. TM_COLUMNS is btw the wrap
> margin, or in case of a column selection, the number of columns
> selected. So the width of the window is technically also missing.
>
> I won’t add this right away, but it might not be bad to have them.
>
>
>
>
>
> From: Allan Odgaard <throw-away-1(a)macromates.com>
> Date: November 25, 2006 7:21:40 AM EST
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: Re: [TxMt] Paren matching
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> On 24. Nov 2006, at 16:48, Emmanuel Turquin wrote:
>
>> Is their a way to change the (too short for me) time during which
>> the matching paren. is highlighted?
>
> There is not, sorry.
>
> Currently the editor is blocked while it does the highlight, so a
> longer ‘flash’ becomes irritating -- long-term the behavior will
> change.
>
>
>
>
>
> From: Michael Barnum <mbarnum(a)gmail.com>
> Date: November 25, 2006 8:27:19 AM EST
> To: textmate(a)lists.macromates.com
> Subject: [TxMt] Re: Fix for Wordpress/Blogging bundle (Date
> Created) (Martin Winter)
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> Hello ALL
>
> Does anyone know if the fix for wordpress actually work?
>
>
> Thanks
> On Nov 24, 2006, at 5:27 PM, textmate-request(a)lists.macromates.com
> wrote:
>
>> Send textmate mailing list submissions to
>> textmate(a)lists.macromates.com
>>
>> To subscribe or unsubscribe via the World Wide Web, visit
>> http://lists.macromates.com/mailman/listinfo/textmate
>> or, via email, send a message with subject or body 'help' to
>> textmate-request(a)lists.macromates.com
>>
>> You can reach the person managing the list at
>> textmate-owner(a)lists.macromates.com
>>
>> When replying, please edit your Subject line so it is more specific
>> than "Re: Contents of textmate digest..."
>> Today's Topics:
>>
>> 1. Paren matching (Emmanuel Turquin)
>> 2. tiny feature request: selection scheme (Piero D'Ancona)
>> 3. Re: tiny feature request: selection scheme (Jenny Harrison)
>> 4. Fix for Wordpress/Blogging bundle (Date Created) (Martin
>> Winter)
>> 5. Re: tiny feature request: selection scheme (Charilaos Skiadas)
>> 6. Re: [OT] quicksilver omniweb plug-in (Rob McBroom)
>> 7. Re: tiny feature request: selection scheme (Piero D'Ancona)
>> 8. Re: Re: My stab at a reftex-ish style citation command
>> (Alan Schussman)
>> 9. Re: center document? (Jacob Rus)
>> 10. Re: Bibliography Completion Broken? (Charilaos Skiadas)
>>
>> From: Emmanuel Turquin <emmanuel(a)turquin.org>
>> Date: November 24, 2006 10:48:55 AM EST
>> To: TextMate users <textmate(a)lists.macromates.com>
>> Subject: [TxMt] Paren matching
>> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>>
>>
>> Hi all,
>>
>> Is their a way to change the (too short for me) time during which
>> the matching paren. is highlighted? Tks in advance,
>>
>> Emmanuel
>>
>>
>>
>>
>>
>> From: Piero D'Ancona <pierodancona(a)gmail.com>
>> Date: November 24, 2006 11:03:05 AM EST
>> To: textmate(a)lists.macromates.com
>> Subject: [TxMt] tiny feature request: selection scheme
>> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>>
>>
>> Hi Allan,
>> this got buried in another thread so I'm reposting.
>>
>> When several commands have the same shortcut
>> a tooltip list appears and one has to scroll down
>> and then hit enter to choose one.
>>
>> Wouldn't it be convenient if by default
>> the topmost element in the list would be selected?
>> This way, it would be sufficient to hit enter
>> in order to choose the first element (one keypress
>> less in many cases).
>> But maybe you have reasons not to like this idea.
>>
>> Thanks,
>> Piero
>>
>>
>>
>>
>>
>>
>>
>> From: Jenny Harrison <harrison(a)Math.Berkeley.EDU>
>> Date: November 24, 2006 11:43:14 AM EST
>> To: TextMate users <textmate(a)lists.macromates.com>
>> Subject: Re: [TxMt] tiny feature request: selection scheme
>> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>>
>>
>>
>>
>> On Nov 24, 2006, at 8:03 AM, Piero D'Ancona wrote:
>>
>>> Hi Allan,
>>> this got buried in another thread so I'm reposting.
>>>
>>> When several commands have the same shortcut
>>> a tooltip list appears and one has to scroll down
>>> and then hit enter to choose one.
>>>
>>> Wouldn't it be convenient if by default
>>> the topmost element in the list would be selected?
>>> This way, it would be sufficient to hit enter
>>> in order to choose the first element (one keypress
>>> less in many cases).
>>> But maybe you have reasons not to like this idea.
>>>
>>> Thanks,
>>> Piero
>>>
>>
>> While we are asking for stocking stuffers, it would be even nicer
>> if this topmost element were dynamic -- the previous choice one made!
>>
>> Jenny
>>
>>>
>>>
>>> ____________________________________________________________________
>>> __
>>> For new threads USE THIS: textmate(a)lists.macromates.com
>>> (threading gets destroyed and the universe will collapse if you
>>> don't)
>>> http://lists.macromates.com/mailman/listinfo/textmate
>>
>>
>> From: Martin Winter <mw.01(a)web.de>
>> Date: November 24, 2006 12:57:06 PM EST
>> To: textmate(a)lists.macromates.com
>> Subject: [TxMt] Fix for Wordpress/Blogging bundle (Date Created)
>> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>>
>>
>> Hello all,
>>
>> I'm a new TextMate user and just joined this list. I use Wordpress
>> and am located in timezone +0100, so I found it very annoying not
>> to be able to specify my post dates right from TextMate. After
>> some digging around in the Wordpress code, I think I found a quick
>> fix to this problem (which has to do with the way Wordpress
>> converts dates in regard to timezones).
>>
>> Application of the fix is described here:
>>
>> http://macromates.com/wiki/Blogging/WordPress
>>
>> I would appreciate feedback (on this list or privately) if you
>> should encounter errors.
>>
>> Enjoy,
>> Martin
>>
>>
>>
>> From: Charilaos Skiadas <skiadas(a)hanover.edu>
>> Date: November 24, 2006 1:02:45 PM EST
>> To: TextMate users <textmate(a)lists.macromates.com>
>> Subject: Re: [TxMt] tiny feature request: selection scheme
>> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>>
>>
>> On Nov 24, 2006, at 11:03 AM, Piero D'Ancona wrote:
>>
>>> Hi Allan,
>>> this got buried in another thread so I'm reposting.
>>>
>>> When several commands have the same shortcut
>>> a tooltip list appears and one has to scroll down
>>> and then hit enter to choose one.
>>
>> The first 10 options are associated to numbers, so you can press a
>> number to pick an option immediately. Also, you can type the first
>> couple of letters of your desired choice, and will be taken then.
>>
>> Unless I misunderstood what menu we are talking about.
>>
>> Haris
>>
>>
>>
>>
>>
>>
>> From: Rob McBroom <textmate(a)skurfer.com>
>> Date: November 24, 2006 1:25:15 PM EST
>> To: TextMate users <textmate(a)lists.macromates.com>
>> Subject: Re: [TxMt] [OT] quicksilver omniweb plug-in
>> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>>
>>
>> On Nov 23, 2006, at 5:59 PM, Grant Hollingworth wrote:
>>
>>> Allan, is there any chance of recompiling the plug-in as a
>>> universal binary? Is the source available anywhere?
>>>
>>> The bookmarks catalogue works, but the history doesn't.
>>
>> FYI, the search shortcuts aren't being picked up either, but I
>> imagine recompiling will take care of that as well.
>>
>> And this post may be off topic, but I appreciate it. I was
>> planning to figure out the problem with the OmniWeb plugin today
>> and now I don't have to.
>>
>> ---
>> Rob
>> <http://www.skurfer.com/>
>>
>>
>>
>>
>>
>>
>> From: Piero D'Ancona <pierodancona(a)gmail.com>
>> Date: November 24, 2006 4:32:01 PM EST
>> To: textmate(a)lists.macromates.com
>> Subject: [TxMt] Re: tiny feature request: selection scheme
>> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>>
>>
>> Charilaos Skiadas <skiadas@...> writes:
>>>
>>> The first 10 options are associated to numbers, so you can press a
>>> number to pick an option immediately. Also, you can type the first
>>> couple of letters of your desired choice, and will be taken then.
>>>
>>> Unless I misunderstood what menu we are talking about.
>>
>> Right, that's pretty close :)
>> Pressing enter is faster but we are talking
>> fractions of a second here
>>
>>
>>
>>
>>
>> From: Alan Schussman <alan(a)schussman.com>
>> Date: November 24, 2006 4:39:24 PM EST
>> To: TextMate users <textmate(a)lists.macromates.com>
>> Subject: Re: [TxMt] Re: My stab at a reftex-ish style citation
>> command
>> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>>
>>
>> On Nov 23, 2006, at 12:05 PM, Piero D'Ancona wrote:
>>
>>> Simply outstanding! This is the best citation chooser
>>> ever (better than RefTeX, don't be modest).
>>
>> It's really just an add-on to the already-good citekey completion
>> -- shoulders of giants and all. And I'm pretty sure RefTeX is
>> still a whole lot smarter than I am, but I'm glad you like it.
>>
>> -Alan
>>
>>
>>
>>
>>
>> From: Jacob Rus <jrus(a)hcs.harvard.edu>
>> Date: November 24, 2006 5:21:50 PM EST
>> To: textmate(a)lists.macromates.com
>> Subject: [TxMt] Re: center document?
>> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>>
>>
>> Xavier Noria wrote:
>>> I would like to write a command to center the document content in
>>> the editor window. Think a boxed title in Keynote. Is there a way
>>> to know the window height in lines? I dumped the environment and
>>> saw no relevant variable.
>>
>> Did you try pressing ⌃L? It should work in any Cocoa Text widget,
>> including TextMate's. ;)
>>
>>
>>
>>
>>
>> From: Charilaos Skiadas <skiadas(a)hanover.edu>
>> Date: November 24, 2006 5:27:03 PM EST
>> To: TextMate users <textmate(a)lists.macromates.com>
>> Subject: Re: [TxMt] Bibliography Completion Broken?
>> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>>
>>
>> On Nov 22, 2006, at 1:54 PM, Charilaos Skiadas wrote:
>>
>>> This will unfortunately be affecting many users, in fact every
>>> LaTeX user wanting to use the completion commands, that's why I
>>> wanted to write a longer description ;).
>>> Glad to hear it's working!
>>>
>>> Chances are that now your path in the shell looks a bit longer
>>> than it used to ;)
>>>
>> As per my suggestion of creating/editing ~/.MacOSX/
>> environment.plist, please do not do so if your path looks
>> significantly different than mine. To minimize the dangers of this
>> change, ideally the path you set in environment.plist should
>> consist of "/bin:/sbin:/usr/bin:/usr/sbin:" followed by the path
>> to the tex executables. Don't leave any things like /sw/bin or /
>> opt/local/bin in there. Hopefully in the future you would not need
>> to create/edit this file by setting its PATH at all.
>>
>> The problem is that this file is read by ALL GUI apps, including
>> things like installers, which might not expect that PATH to be set
>> there, and some technical issues might result from that. As long
>> as the path you put there is a typical path, with the four
>> directories described above plus the one for TeX, you should be
>> OK. In any case the other parts of your path will still be there
>> when you run things from the command line.
>>
>> Also, make sure there are no tabs at the beginning of the path,
>> and no returns at the end. The line should really just have
>> <string> followed immediately by the /bin... stuff, and then that
>> stuff should be followed immediately by </string>.
>>
>>> Haris
>>
>> Haris
>>
>>
>>
>>
>>
>>
>> _______________________________________________
>> textmate mailing list
>> textmate(a)lists.macromates.com
>> http://lists.macromates.com/mailman/listinfo/textmate
>
> Once you go MAC, you'll never look back
> mbarnum(a)gmail.com
>
>
>
>
> _______________________________________________
> textmate mailing list
> textmate(a)lists.macromates.com
> http://lists.macromates.com/mailman/listinfo/textmate
Once you go MAC, you'll never look back
mbarnum(a)gmail.com
For those trying out the Backpack bundle, I've discovered several
undocumented features in the Backpack API, including some functions
that allow for list manipulation. I've added a command to the bundle
that allows for viewing of lists in a tree format like the View\Edit
Notes command. Select a page->list->see the list items. No editing
of list items or checking off yet, but this has opened some great
possibilities for GTD integration. I can now take a GTD file and
create a page, sectioning the projects into lists and allowing you to
check off your GTD items remotely and sync when you're back at your
main computer. That's the next step, anyway. I'm getting some great
feedback from Haris regarding how it should function, so I'm
structuring things around my own needs and the requirements of GTDAlt
integration.
I've set up a Subversion account with the help of Ale Muňoz so you
can update to the latest version by:
cd ~/Library/Application Support/TextMate/Bundles/
svn co http://svn.sofanaranja.com/projects/brettbundles/trunk/Bundles/
Backpack.tmbundle
That will get you to the latest version, which is 8 right now.
Direct Download available at:
http://blog.circlesixdesign.com/2006/11/25/backpack-bundle-adds-list-
support/
Brett
Hello ALL
Does anyone know if the fix for wordpress actually work?
Thanks
On Nov 24, 2006, at 5:27 PM, textmate-request(a)lists.macromates.com
wrote:
> Send textmate mailing list submissions to
> textmate(a)lists.macromates.com
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.macromates.com/mailman/listinfo/textmate
> or, via email, send a message with subject or body 'help' to
> textmate-request(a)lists.macromates.com
>
> You can reach the person managing the list at
> textmate-owner(a)lists.macromates.com
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of textmate digest..."
> Today's Topics:
>
> 1. Paren matching (Emmanuel Turquin)
> 2. tiny feature request: selection scheme (Piero D'Ancona)
> 3. Re: tiny feature request: selection scheme (Jenny Harrison)
> 4. Fix for Wordpress/Blogging bundle (Date Created) (Martin Winter)
> 5. Re: tiny feature request: selection scheme (Charilaos Skiadas)
> 6. Re: [OT] quicksilver omniweb plug-in (Rob McBroom)
> 7. Re: tiny feature request: selection scheme (Piero D'Ancona)
> 8. Re: Re: My stab at a reftex-ish style citation command
> (Alan Schussman)
> 9. Re: center document? (Jacob Rus)
> 10. Re: Bibliography Completion Broken? (Charilaos Skiadas)
>
> From: Emmanuel Turquin <emmanuel(a)turquin.org>
> Date: November 24, 2006 10:48:55 AM EST
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: [TxMt] Paren matching
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> Hi all,
>
> Is their a way to change the (too short for me) time during which
> the matching paren. is highlighted? Tks in advance,
>
> Emmanuel
>
>
>
>
>
> From: Piero D'Ancona <pierodancona(a)gmail.com>
> Date: November 24, 2006 11:03:05 AM EST
> To: textmate(a)lists.macromates.com
> Subject: [TxMt] tiny feature request: selection scheme
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> Hi Allan,
> this got buried in another thread so I'm reposting.
>
> When several commands have the same shortcut
> a tooltip list appears and one has to scroll down
> and then hit enter to choose one.
>
> Wouldn't it be convenient if by default
> the topmost element in the list would be selected?
> This way, it would be sufficient to hit enter
> in order to choose the first element (one keypress
> less in many cases).
> But maybe you have reasons not to like this idea.
>
> Thanks,
> Piero
>
>
>
>
>
>
>
> From: Jenny Harrison <harrison(a)Math.Berkeley.EDU>
> Date: November 24, 2006 11:43:14 AM EST
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: Re: [TxMt] tiny feature request: selection scheme
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
>
>
> On Nov 24, 2006, at 8:03 AM, Piero D'Ancona wrote:
>
>> Hi Allan,
>> this got buried in another thread so I'm reposting.
>>
>> When several commands have the same shortcut
>> a tooltip list appears and one has to scroll down
>> and then hit enter to choose one.
>>
>> Wouldn't it be convenient if by default
>> the topmost element in the list would be selected?
>> This way, it would be sufficient to hit enter
>> in order to choose the first element (one keypress
>> less in many cases).
>> But maybe you have reasons not to like this idea.
>>
>> Thanks,
>> Piero
>>
>
> While we are asking for stocking stuffers, it would be even nicer
> if this topmost element were dynamic -- the previous choice one made!
>
> Jenny
>
>>
>>
>> _____________________________________________________________________
>> _
>> For new threads USE THIS: textmate(a)lists.macromates.com
>> (threading gets destroyed and the universe will collapse if you
>> don't)
>> http://lists.macromates.com/mailman/listinfo/textmate
>
>
> From: Martin Winter <mw.01(a)web.de>
> Date: November 24, 2006 12:57:06 PM EST
> To: textmate(a)lists.macromates.com
> Subject: [TxMt] Fix for Wordpress/Blogging bundle (Date Created)
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> Hello all,
>
> I'm a new TextMate user and just joined this list. I use Wordpress
> and am located in timezone +0100, so I found it very annoying not
> to be able to specify my post dates right from TextMate. After some
> digging around in the Wordpress code, I think I found a quick fix
> to this problem (which has to do with the way Wordpress converts
> dates in regard to timezones).
>
> Application of the fix is described here:
>
> http://macromates.com/wiki/Blogging/WordPress
>
> I would appreciate feedback (on this list or privately) if you
> should encounter errors.
>
> Enjoy,
> Martin
>
>
>
> From: Charilaos Skiadas <skiadas(a)hanover.edu>
> Date: November 24, 2006 1:02:45 PM EST
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: Re: [TxMt] tiny feature request: selection scheme
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> On Nov 24, 2006, at 11:03 AM, Piero D'Ancona wrote:
>
>> Hi Allan,
>> this got buried in another thread so I'm reposting.
>>
>> When several commands have the same shortcut
>> a tooltip list appears and one has to scroll down
>> and then hit enter to choose one.
>
> The first 10 options are associated to numbers, so you can press a
> number to pick an option immediately. Also, you can type the first
> couple of letters of your desired choice, and will be taken then.
>
> Unless I misunderstood what menu we are talking about.
>
> Haris
>
>
>
>
>
>
> From: Rob McBroom <textmate(a)skurfer.com>
> Date: November 24, 2006 1:25:15 PM EST
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: Re: [TxMt] [OT] quicksilver omniweb plug-in
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> On Nov 23, 2006, at 5:59 PM, Grant Hollingworth wrote:
>
>> Allan, is there any chance of recompiling the plug-in as a
>> universal binary? Is the source available anywhere?
>>
>> The bookmarks catalogue works, but the history doesn't.
>
> FYI, the search shortcuts aren't being picked up either, but I
> imagine recompiling will take care of that as well.
>
> And this post may be off topic, but I appreciate it. I was planning
> to figure out the problem with the OmniWeb plugin today and now I
> don't have to.
>
> ---
> Rob
> <http://www.skurfer.com/>
>
>
>
>
>
>
> From: Piero D'Ancona <pierodancona(a)gmail.com>
> Date: November 24, 2006 4:32:01 PM EST
> To: textmate(a)lists.macromates.com
> Subject: [TxMt] Re: tiny feature request: selection scheme
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> Charilaos Skiadas <skiadas@...> writes:
>>
>> The first 10 options are associated to numbers, so you can press a
>> number to pick an option immediately. Also, you can type the first
>> couple of letters of your desired choice, and will be taken then.
>>
>> Unless I misunderstood what menu we are talking about.
>
> Right, that's pretty close :)
> Pressing enter is faster but we are talking
> fractions of a second here
>
>
>
>
>
> From: Alan Schussman <alan(a)schussman.com>
> Date: November 24, 2006 4:39:24 PM EST
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: Re: [TxMt] Re: My stab at a reftex-ish style citation command
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> On Nov 23, 2006, at 12:05 PM, Piero D'Ancona wrote:
>
>> Simply outstanding! This is the best citation chooser
>> ever (better than RefTeX, don't be modest).
>
> It's really just an add-on to the already-good citekey completion
> -- shoulders of giants and all. And I'm pretty sure RefTeX is still
> a whole lot smarter than I am, but I'm glad you like it.
>
> -Alan
>
>
>
>
>
> From: Jacob Rus <jrus(a)hcs.harvard.edu>
> Date: November 24, 2006 5:21:50 PM EST
> To: textmate(a)lists.macromates.com
> Subject: [TxMt] Re: center document?
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> Xavier Noria wrote:
>> I would like to write a command to center the document content in
>> the editor window. Think a boxed title in Keynote. Is there a way
>> to know the window height in lines? I dumped the environment and
>> saw no relevant variable.
>
> Did you try pressing ⌃L? It should work in any Cocoa Text widget,
> including TextMate's. ;)
>
>
>
>
>
> From: Charilaos Skiadas <skiadas(a)hanover.edu>
> Date: November 24, 2006 5:27:03 PM EST
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: Re: [TxMt] Bibliography Completion Broken?
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> On Nov 22, 2006, at 1:54 PM, Charilaos Skiadas wrote:
>
>> This will unfortunately be affecting many users, in fact every
>> LaTeX user wanting to use the completion commands, that's why I
>> wanted to write a longer description ;).
>> Glad to hear it's working!
>>
>> Chances are that now your path in the shell looks a bit longer
>> than it used to ;)
>>
> As per my suggestion of creating/editing ~/.MacOSX/
> environment.plist, please do not do so if your path looks
> significantly different than mine. To minimize the dangers of this
> change, ideally the path you set in environment.plist should
> consist of "/bin:/sbin:/usr/bin:/usr/sbin:" followed by the path to
> the tex executables. Don't leave any things like /sw/bin or /opt/
> local/bin in there. Hopefully in the future you would not need to
> create/edit this file by setting its PATH at all.
>
> The problem is that this file is read by ALL GUI apps, including
> things like installers, which might not expect that PATH to be set
> there, and some technical issues might result from that. As long as
> the path you put there is a typical path, with the four directories
> described above plus the one for TeX, you should be OK. In any case
> the other parts of your path will still be there when you run
> things from the command line.
>
> Also, make sure there are no tabs at the beginning of the path, and
> no returns at the end. The line should really just have <string>
> followed immediately by the /bin... stuff, and then that stuff
> should be followed immediately by </string>.
>
>> Haris
>
> Haris
>
>
>
>
>
>
> _______________________________________________
> textmate mailing list
> textmate(a)lists.macromates.com
> http://lists.macromates.com/mailman/listinfo/textmate
Once you go MAC, you'll never look back
mbarnum(a)gmail.com