From roger.roelofs at gmail.com Tue May 1 00:17:46 2007 From: roger.roelofs at gmail.com (Roger Roelofs) Date: Mon, 30 Apr 2007 20:17:46 -0400 Subject: [TxMt] HTML Bundle in Version 1.5.5 (1383) In-Reply-To: <7E350B89-400D-4752-BBE6-0C866B0E71F1@pplante.com> References: <86F679AB-3434-4541-81A6-AF3E40332C78@pplante.com> <17BB1F46-EC51-4DCF-9354-2F0BC6CF9E33@gmail.com> <7E350B89-400D-4752-BBE6-0C866B0E71F1@pplante.com> Message-ID: Philip, On Apr 30, 2007, at 7:47 PM, Philip Plante wrote: > The reason I do this is because previously Textmate would turn off > syntax highlighting for anything between {literal} and {/literal}. > So I found that if you wrapped it in comments then it canceled > out. But now that this new update has come out it has changed that > behavior again. >>> >>> Here is an example of my code: >>> >>> >>> >>> Use this instead (notice the spaces in the commenets) and you will get the same behavior. I rarely put script/style elements in my pages (except to reference external documents), so I had never noticed this before. Thanks for helping me see this. -- Roger Roelofs From brett at circlesixdesign.com Tue May 1 00:53:24 2007 From: brett at circlesixdesign.com (Brett Terpstra) Date: Mon, 30 Apr 2007 19:53:24 -0500 Subject: [TxMt] mate error Message-ID: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> I just noticed I get this from the command line on both individual file and directories. 2007-04-30 19:52:04.221 mate[5199] An uncaught exception was raised 2007-04-30 19:52:04.221 mate[5199] [NOTE: this exception originated in the server.] *** Object does not implement or has different method signature 2007-04-30 19:52:04.221 mate[5199] *** Uncaught exception: [NOTE: this exception originated in the server.] *** Object does not implement or has different method signature Trace/BPT trap I just upgraded this morning. Not sure what I've done here... Thanks, Brett From itod at mac.com Tue May 1 00:54:58 2007 From: itod at mac.com (Todd Ditchendorf) Date: Mon, 30 Apr 2007 17:54:58 -0700 Subject: [TxMt] mate error In-Reply-To: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> Message-ID: I've been experiencing this too... but i didn't know what was going on... Todd Ditchendorf Scandalous Software - Mac XML Developer Tools http://scan.dalo.us On Apr 30, 2007, at 5:53 PM, Brett Terpstra wrote: > I just noticed I get this from the command line on both individual > file and directories. > > 2007-04-30 19:52:04.221 mate[5199] An uncaught exception was raised > 2007-04-30 19:52:04.221 mate[5199] [NOTE: this exception originated > in the server.] > *** Object does not implement or has different method signature > 2007-04-30 19:52:04.221 mate[5199] *** Uncaught exception: > [NOTE: this exception originated in > the server.] > *** Object does not implement or has different method signature > Trace/BPT trap > > I just upgraded this morning. Not sure what I've done here... > > Thanks, > Brett > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From jacobolus at gmail.com Tue May 1 01:14:20 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Mon, 30 Apr 2007 21:14:20 -0400 Subject: [TxMt] Re: Newbie - turn off hyperlink underlining? In-Reply-To: References: <4634FEF7.5000308@ruderich.com> Message-ID: J. Simon van der Walt: >> Robin Houston: >> Or you could just delete the preference item "Style: Underline". > > Preference item? Oh, I see where that is. Ok, I changed that to > > { underline = '0'; } > > which seems to work, and means I can turn it back on if I want it. > > Jacob Rus: >> Or you could even add a "- text.plain" to the underline style. > > What would be the syntax for that, exactly? Ah, I had forgotten that underline is globally declared, rather than being in each style. So what you want to do is open up that preference item, and instead of changing 1 to 0, just change the scope selector at the bottom from `markup.underline` to `markup.underline - text.plain`, and you should be all set. -Jacob From throw-away-1 at macromates.com Tue May 1 01:52:09 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Tue, 1 May 2007 03:52:09 +0200 Subject: [TxMt] Spell checking using Google In-Reply-To: <7AF5A43A-7C45-4175-AA1E-7CAD31758049@eva.mpg.de> References: <5130B0E7-39E3-4212-9962-9B3BD64D5C0A@gmail.com> <79FA4E1A-F652-4DDE-9474-068EE9F368C6@eva.mpg.de> <7AF5A43A-7C45-4175-AA1E-7CAD31758049@eva.mpg.de> Message-ID: On 1. May 2007, at 01:10, Hans-J?rg Bibiko wrote: >> On the other hand I have a problem with '\n\n' in the text. > OK. I solved this problem by replacing '\n' with a Japanese space ;) > > An other problem arose with many spaces ' '. I also solved it > with a Japanese character ;) Attached is my take on it (based on yours and Andy?s code). I use the offset and length given back by Google to figure out where the corrections should go. Google seems to a) give the count in ?code points? (regardless of encoding) and b) collapse all successive whitespace into one character. Here is the helper I use to adjust for that: def substr(str, idx, len = 10000) $1 if str =~ /^(?:\s+|.){#{idx}}((?:\s+|.){0,#{len}})/m end When Google returns multiple suggestions, the command will show a menu, with the original word at the top. It does this for every misspelled word in the text. When there is only one suggestion, the command uses that, and makes the word a tab-stop. Personally I think the menu is generally not wanted, so that part should probably be removed (and the first suggestion should always be picked). I gave it a key equivalent of ??F2 which is analogous with ?F2 for the regular context menu (which has spelling suggestions). -------------- next part -------------- A non-text attachment was scrubbed... Name: Google Spell Check Selection : Word.tmCommand Type: application/octet-stream Size: 2669 bytes Desc: not available URL: -------------- next part -------------- From throw-away-1 at macromates.com Tue May 1 02:01:06 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Tue, 1 May 2007 04:01:06 +0200 Subject: [TxMt] HTML Bundle in Version 1.5.5 (1383) In-Reply-To: <7E350B89-400D-4752-BBE6-0C866B0E71F1@pplante.com> References: <86F679AB-3434-4541-81A6-AF3E40332C78@pplante.com> <17BB1F46-EC51-4DCF-9354-2F0BC6CF9E33@gmail.com> <7E350B89-400D-4752-BBE6-0C866B0E71F1@pplante.com> Message-ID: On 1. May 2007, at 01:47, Philip Plante wrote: > The reason I do this is because previously Textmate would turn off > syntax highlighting for anything between {literal} and {/literal}. > So I found that if you wrapped it in comments then it canceled > out. But now that this new update has come out it has changed that > behavior again. > > Make sense? So the real problem is with the {literal} rule in the HTML grammar. What you can do is go to the HTML grammar in the bundle editor, locate this rule, and insert ?disabled = 1;?. Then you won?t need to put comments around {literal} in your source. What you really want though (I think) is probably for this rule to include the HTML grammar (between {literal}?{/literal}) *except* for the Smarty part of it (since we only want to disable Smarty in such block) -- this is easy with the forthcoming scope injection, but presently a pain to do (we?d have to restructure things, and it is made further complicated by Smarty not being a grammar which we have enabled by default)? If there are any Smarty users which have suggestions as what to do with the {literal} rule ?out of the box?, I am all ear. From chip.cullen at gmail.com Tue May 1 02:05:35 2007 From: chip.cullen at gmail.com (Chip Cullen) Date: Tue, 1 May 2007 11:05:35 +0900 Subject: [TxMt] "Save As" Renaming Bug - any hope for the future? In-Reply-To: References: <1b795e7b0704290841g59d29994gcd9bc42a1fb19d65@mail.gmail.com> <4B9FF113-9422-4436-8D64-93A19C29798D@helvector.org> <1b795e7b0704291249l474181d9i12e396e6fa3e913f@mail.gmail.com> Message-ID: I was just wondering - I was able to put Simon's command "rescan_project" at the end of Robin's command, and Textmate will rescan the project drawer - very helpful. Is there anyway to make "rescan_project" a stand-alone command? I'm borderline-ignorant on how to make bundle commands, short of cobbling other things together and hoping they work. I tried just making a command in the bundle editor that said "rescan_project", but that erases the entire contents of the page that I am working on. I obviously am missing something fundamental. Any thoughts? Thanks! Chip On 4/30/07, Chip Cullen wrote: > Robin & Simon, > > Well, I took a little bit of what both of you did and came up with an > even better solution: > > filename="$(CocoaDialog filesave --title 'Save a copy')" > [ -n "$filename" ] && cat >"$filename" > rescan_project > > Robin - your solution was working fine, but I had to do the Cmd-Tab > trick to have the new file show up in the project. Simon, your > solution showed the new file in the project drawer, but it was erasing > everything in the 'old' document afterwards and giving a weird error. > So, I just took the bit at the end of Simon's code and put it at the > end of Robin's, and there you go - no error with the document, and > everything shows up in the project drawer. > > I guess the only thing that would make this work even better is if the > new file were the open document, and the old one were closed, like a > 'true' save as. > > Thanks everyone! > > On 4/30/07, Chip Cullen wrote: > > Robin, Simon et al - > > > > Thank you all so much! That does it! I still have to do the Cmd-Tab > > trick for the new file to show up in the project drawer, but I can > > live with that until TM2. October can't come fast enough! > > > > Jacob - different strokes I guess. For the average user, in my > > opinion, forums/bulletin boards are much more intuitive. They're > > easier to browse (if you're not quite sure how to word your problem) - > > and you don't have to go through the process of setting up a 3rd party > > piece of software to use them with any ease. In well run forums, > > topics are grouped by general subject, not just in one huge archive > > (again, easier for browsing). Also, when you search for something, and > > click on a hit, you get to see the whole thread at once, rather than > > having to go through message by message (as you do with the mailing > > list archives on Gmane). I agree, many forums out there are extremely > > garish in terms of design, but that can easily be remedied by the > > admin tweaking the style sheet. I guess I've also gotten used to > > searching for answers on forums and am having a difficult time getting > > used to a mailing list. The last time I was on a mailing list was the > > late 1990's. But hey, the people are great! > > > > Brooks - thank you for pointing me to that! It definitely is more what > > I'm used to looking through! It seems to be at least current, but as > > you say, I'm not sure how far back it goes. > > > From mail at pplante.com Tue May 1 02:10:14 2007 From: mail at pplante.com (Philip Plante) Date: Mon, 30 Apr 2007 21:10:14 -0500 Subject: [TxMt] HTML Bundle in Version 1.5.5 (1383) In-Reply-To: References: <86F679AB-3434-4541-81A6-AF3E40332C78@pplante.com> <17BB1F46-EC51-4DCF-9354-2F0BC6CF9E33@gmail.com> <7E350B89-400D-4752-BBE6-0C866B0E71F1@pplante.com> Message-ID: For now I will do as you suggested and disable it while I wait for the forthcoming scope injection you spoke of. Thanks for the help! --- Philip Plante 913-302-9933 phil.plante at transmuto.com On Apr 30, 2007, at 9:01 PM, Allan Odgaard wrote: > On 1. May 2007, at 01:47, Philip Plante wrote: > >> The reason I do this is because previously Textmate would turn off >> syntax highlighting for anything between {literal} and {/ >> literal}. So I found that if you wrapped it in comments then it >> canceled out. But now that this new update has come out it has >> changed that behavior again. >> >> Make sense? > > So the real problem is with the {literal} rule in the HTML grammar. > > What you can do is go to the HTML grammar in the bundle editor, > locate this rule, and insert ?disabled = 1;?. Then you won?t need > to put comments around {literal} in your source. > > What you really want though (I think) is probably for this rule to > include the HTML grammar (between {literal}?{/literal}) *except* > for the Smarty part of it (since we only want to disable Smarty in > such block) -- this is easy with the forthcoming scope injection, > but presently a pain to do (we?d have to restructure things, and it > is made further complicated by Smarty not being a grammar which we > have enabled by default)? > > If there are any Smarty users which have suggestions as what to do > with the {literal} rule ?out of the box?, I am all ear. > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate -------------- next part -------------- An HTML attachment was scrubbed... URL: From levandon at gmail.com Tue May 1 03:09:33 2007 From: levandon at gmail.com (Don Levan) Date: Mon, 30 Apr 2007 23:09:33 -0400 Subject: [TxMt] TextMate Bundles and RubyGems In-Reply-To: <80F00195-B401-4F1E-B21D-0D4086F35AF2@macromates.com> References: <806821ED-6C82-443A-B36D-1250F8321639@macromates.com> <8F23B65E-4F02-4437-8CE6-C110F9F99D5A@cjack.com> <19C52D42-228D-482C-ADD6-F5A0EDB3E5EC@circlesixdesign.com> <174E9631-2B47-4D38-B10B-0E4CA40885F4@circlesixdesign.com> <3751F42D-E808-4AC4-98C9-4A281F1B245A@gmail.com> <80F00195-B401-4F1E-B21D-0D4086F35AF2@macromates.com> Message-ID: <52B4D5C3-A9D7-4305-97B9-2823CD7909BC@gmail.com> Hi Allan, Thanks for your help with this. I think I have finally got it set correctly. Don On Apr 27, 2007, at 9:56 AM, Allan Odgaard wrote: > On 26. Apr 2007, at 23:38, Don Levan wrote: > >> [...] >> This is the error I get: >> >> /tmp/temp_textmate.HbtlDJ:6:in `require': No such file to load -- >> rubygems (LoadError) >> from /tmp/temp_textmate.HbtlDJ:6 >> >> Any suggestions would be most appreciated. Thank you so much, > > Presumably you both installed a new ruby and rubygems only for this > new ruby. > > If you set your PATH so that TM finds the new ruby, it should work, > see http://macromates.com/textmate/manual/shell_commands#search_path > > Be sure to also read the paragraph marked ?Important?. > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From lists at arachnedesign.net Tue May 1 05:04:09 2007 From: lists at arachnedesign.net (Steve Lianoglou) Date: Tue, 1 May 2007 01:04:09 -0400 Subject: [TxMt] "Save As" Renaming Bug - any hope for the future? In-Reply-To: References: <1b795e7b0704290841g59d29994gcd9bc42a1fb19d65@mail.gmail.com> <4B9FF113-9422-4436-8D64-93A19C29798D@helvector.org> <1b795e7b0704291249l474181d9i12e396e6fa3e913f@mail.gmail.com> Message-ID: <72F056F1-44DE-445D-B686-3987C097309E@arachnedesign.net> Hi Chip, > I'm borderline-ignorant on how to make bundle commands, short of > cobbling other things together and hoping they work. I tried just > making a command in the bundle editor that said "rescan_project", but > that erases the entire contents of the page that I am working on. I > obviously am missing something fundamental. Any thoughts? Check that the "Output" setting on the command (it's a dropdown below the main text box in the bundle editor) isn't set to "Replace Document" -- I think you want to just "Discard" the output. Also, I think "Input"(s) wouldn't hurt to be set to "None" or "Nothing" Does that help? -steve From tedthetrumpet at gmail.com Tue May 1 06:50:29 2007 From: tedthetrumpet at gmail.com (J. Simon van der Walt) Date: Tue, 1 May 2007 07:50:29 +0100 Subject: [TxMt] Re: Newbie - turn off hyperlink underlining? In-Reply-To: References: <4634FEF7.5000308@ruderich.com> Message-ID: <7cfb9abc0704302350r25685c1fl8cc1f39f3c6df2ff@mail.gmail.com> On 01/05/07, Jacob Rus wrote: > > So what you want to do is open up that preference item, and instead of > changing 1 to 0, just change the scope selector at the bottom from > `markup.underline` to `markup.underline - text.plain`, and you should be > all set. Great, that works! Thanks. JS From ds08 at txstate.edu Tue May 1 07:22:18 2007 From: ds08 at txstate.edu (David F. Snyder) Date: Tue, 01 May 2007 02:22:18 -0500 Subject: [TxMt] LaTeX bundle and the exam package Message-ID: Hi I am hoping someone has solved this problem. I use latekmk.pl script as $TM_TEX_COMPILER to compile my LaTeX documents from within Textmate and it works wonderfully on every document I've made, except for any document that uses the exam package. The problem is small: I must execute cmd-R twice to get it to compile the number of points correctly. This is only a problem within Textmate; if I run the script from the command line it works perfectly. And while it is a small problem it is vexing, since latexmk.pl was made specifically to deal with the need to run LaTeX etc. multiple times. My guess is that there is a bug in either cmd-R (though I can't find one) or somewhere in the bowels of Textmate. Seeing as how I used this package frequently, almost daily, I'm guessing that this need to cmd-R twice will cost me about an hour and a half of my life in the coming year. Best wishes ---- David From dave.baldwin at 3dlabs.com Tue May 1 08:53:02 2007 From: dave.baldwin at 3dlabs.com (Dave Baldwin) Date: Tue, 1 May 2007 09:53:02 +0100 Subject: [TxMt] Documentation broken for Ruby in latest build Message-ID: Just noticed that getting documentation on a Ruby method (control H) in TM 1.5.5. 1383 now gives an error: web_preview.rb:70 in 'html_head' : undefined method '+' for nilClass This was working for me on earlier TM versions and I haven't changed anything in my Ruby setup for a long time. Dave. From ciawal at gmail.com Tue May 1 09:08:13 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Tue, 1 May 2007 10:08:13 +0100 Subject: [TxMt] Documentation broken for Ruby in latest build In-Reply-To: References: Message-ID: <9C9049C3-D43C-47BC-BA9C-8F26083FDB6C@gmail.com> On 1 May 2007, at 09:53, Dave Baldwin wrote: > web_preview.rb:70 in 'html_head' : undefined method '+' for nilClass If I recall correctly this happens when $HOME isn't set. Try restarting TM, or perhaps logging out if necessary. -------------- next part -------------- An HTML attachment was scrubbed... URL: From dave.baldwin at 3dlabs.com Tue May 1 09:19:11 2007 From: dave.baldwin at 3dlabs.com (Dave Baldwin) Date: Tue, 1 May 2007 10:19:11 +0100 Subject: [TxMt] Documentation broken for Ruby in latest build In-Reply-To: <9C9049C3-D43C-47BC-BA9C-8F26083FDB6C@gmail.com> References: <9C9049C3-D43C-47BC-BA9C-8F26083FDB6C@gmail.com> Message-ID: Thanks for the suggestion, unfortunately $HOME is set up in tsh and bash and restarting TM didn't help. I also noticed I get a similar error when trying to execute some ruby code with command R. /Applications/TextMate.app/Contents/SharedSupport/Support/lib/ web_preview.rb:70:in `html_head': undefined method `+' for nil:NilClass (NoMethodError) from /Applications/TextMate.app/Contents/ SharedSupport/Support/lib/scriptmate.rb:186:in `emit_header' from / Applications/TextMate.app/Contents/SharedSupport/Support/lib/ scriptmate.rb:103:in `emit_html' from /Applications/TextMate.app/ Contents/SharedSupport/Bundles/Ruby.tmbundle/Support/RubyMate/ run_script.rb:72 Dave. On 1 May 2007, at 10:08, Ciar?n Walsh wrote: > On 1 May 2007, at 09:53, Dave Baldwin wrote: > >> web_preview.rb:70 in 'html_head' : undefined method '+' for nilClass > > If I recall correctly this happens when $HOME isn't set. Try > restarting TM, or perhaps logging out if necessary. > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate -------------- next part -------------- An HTML attachment was scrubbed... URL: From ciawal at gmail.com Tue May 1 09:31:01 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Tue, 1 May 2007 10:31:01 +0100 Subject: [TxMt] Documentation broken for Ruby in latest build In-Reply-To: References: <9C9049C3-D43C-47BC-BA9C-8F26083FDB6C@gmail.com> Message-ID: <9C4DCA78-E13C-4BEF-B322-F720FDB8E4B2@gmail.com> On 1 May 2007, at 10:19, Dave Baldwin wrote: > Thanks for the suggestion, unfortunately $HOME is set up in tsh and > bash and restarting TM didn't help. Try logging out then -------------- next part -------------- An HTML attachment was scrubbed... URL: From dave.baldwin at 3dlabs.com Tue May 1 09:48:02 2007 From: dave.baldwin at 3dlabs.com (Dave Baldwin) Date: Tue, 1 May 2007 10:48:02 +0100 Subject: [TxMt] Documentation broken for Ruby in latest build In-Reply-To: <9C4DCA78-E13C-4BEF-B322-F720FDB8E4B2@gmail.com> References: <9C9049C3-D43C-47BC-BA9C-8F26083FDB6C@gmail.com> <9C4DCA78-E13C-4BEF-B322-F720FDB8E4B2@gmail.com> Message-ID: <6DB193D9-EB95-4CCD-9603-297B254986CD@3dlabs.com> I don't think I was clear enough - $HOME is set up correctly already when I check in both shells (tsh is the one I normally use, but I think TM used bash when running shell commands). Dave. On 1 May 2007, at 10:31, Ciar?n Walsh wrote: > On 1 May 2007, at 10:19, Dave Baldwin wrote: > >> Thanks for the suggestion, unfortunately $HOME is set up in tsh >> and bash and restarting TM didn't help. > > Try logging out then > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate -------------- next part -------------- An HTML attachment was scrubbed... URL: From throw-away-1 at macromates.com Tue May 1 09:58:03 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Tue, 1 May 2007 11:58:03 +0200 Subject: [TxMt] Documentation broken for Ruby in latest build In-Reply-To: <6DB193D9-EB95-4CCD-9603-297B254986CD@3dlabs.com> References: <9C9049C3-D43C-47BC-BA9C-8F26083FDB6C@gmail.com> <9C4DCA78-E13C-4BEF-B322-F720FDB8E4B2@gmail.com> <6DB193D9-EB95-4CCD-9603-297B254986CD@3dlabs.com> Message-ID: <0FF4C2D3-BBC8-4431-8167-C1F822A779C0@macromates.com> On 1. May 2007, at 11:48, Dave Baldwin wrote: > I don't think I was clear enough - $HOME is set up correctly > already when I check in both shells (tsh is the one I normally use, > but I think TM used bash when running shell commands). HOME is not setup by bash but inherited from the parent process. Try type env?R in TextMate and see if you have HOME, USER, and LOGNAME set. You could likely quit TextMate and start it from your terminal (where you have HOME) calling TextMate.app/Contents/MacOS/TextMate directly (i.e. not using ?open?, as then it would be launch services/the WindowServer process which starts it, and it then inherits the environment from that process, which is likely the process that somehow managed to un-associate itself with USER etc.). From dave.baldwin at 3dlabs.com Tue May 1 10:15:14 2007 From: dave.baldwin at 3dlabs.com (Dave Baldwin) Date: Tue, 1 May 2007 11:15:14 +0100 Subject: [TxMt] Documentation broken for Ruby in latest build In-Reply-To: <0FF4C2D3-BBC8-4431-8167-C1F822A779C0@macromates.com> References: <9C9049C3-D43C-47BC-BA9C-8F26083FDB6C@gmail.com> <9C4DCA78-E13C-4BEF-B322-F720FDB8E4B2@gmail.com> <6DB193D9-EB95-4CCD-9603-297B254986CD@3dlabs.com> <0FF4C2D3-BBC8-4431-8167-C1F822A779C0@macromates.com> Message-ID: <4CC484A3-09BB-4969-81EE-746E61FE3C25@3dlabs.com> On 1 May 2007, at 10:58, Allan Odgaard wrote: env^R just hung with with coloured wheel. So I forced quit TM and restarted it (from Finder). The env^R showed HOME and USER set up as expeced. LOGNAME does not exist. ^h for ruby help and running ruby now works as expected. TM had only been running for a few hours before I noticed these problems and I hadn't been doing anything 'difficult'. I am happy to poke around some more if you have anything you want me to look at. Thanks, Dave. > On 1. May 2007, at 11:48, Dave Baldwin wrote: > >> I don't think I was clear enough - $HOME is set up correctly >> already when I check in both shells (tsh is the one I normally >> use, but I think TM used bash when running shell commands). > > HOME is not setup by bash but inherited from the parent process. > > Try type env?R in TextMate and see if you have HOME, USER, and > LOGNAME set. > > You could likely quit TextMate and start it from your terminal > (where you have HOME) calling TextMate.app/Contents/MacOS/TextMate > directly (i.e. not using ?open?, as then it would be launch > services/the WindowServer process which starts it, and it then > inherits the environment from that process, which is likely the > process that somehow managed to un-associate itself with USER etc.). > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From chip.cullen at gmail.com Tue May 1 10:21:09 2007 From: chip.cullen at gmail.com (Chip Cullen) Date: Tue, 1 May 2007 19:21:09 +0900 Subject: [TxMt] "Save As" Renaming Bug - any hope for the future? In-Reply-To: <72F056F1-44DE-445D-B686-3987C097309E@arachnedesign.net> References: <1b795e7b0704290841g59d29994gcd9bc42a1fb19d65@mail.gmail.com> <4B9FF113-9422-4436-8D64-93A19C29798D@helvector.org> <1b795e7b0704291249l474181d9i12e396e6fa3e913f@mail.gmail.com> <72F056F1-44DE-445D-B686-3987C097309E@arachnedesign.net> Message-ID: Steve- Ha ha! Perfect! Now I don't even have to Cmd-Tab to see all the files in the project drawer! yay! thank you so much! Chip On 5/1/07, Steve Lianoglou wrote: > Hi Chip, > > > I'm borderline-ignorant on how to make bundle commands, short of > > cobbling other things together and hoping they work. I tried just > > making a command in the bundle editor that said "rescan_project", but > > that erases the entire contents of the page that I am working on. I > > obviously am missing something fundamental. Any thoughts? > > Check that the "Output" setting on the command (it's a dropdown below > the main text box in the bundle editor) isn't set to "Replace > Document" -- I think you want to just "Discard" the output. > > Also, I think "Input"(s) wouldn't hurt to be set to "None" or "Nothing" > > Does that help? > -steve > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From chuck.esterbrook at gmail.com Tue May 1 14:23:05 2007 From: chuck.esterbrook at gmail.com (Chuck Esterbrook) Date: Tue, 1 May 2007 07:23:05 -0700 Subject: [TxMt] Change colors for diff output Message-ID: <94cdd26f0705010723g552466f7mdf42b9ea8b7ace37@mail.gmail.com> TextMate colors the output of a diff (such as "svn di") which is great, but I would like to change the colors. For example, I would prefer that deleted lines are red on white instead of white on red (I find the background color distracting). I didn't see an entry in the TextMate Preferences for these. Am I just missing it? Or can I change these via the defaults database or a plist? Thanks, -Chuck From ciawal at gmail.com Tue May 1 14:26:55 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Tue, 1 May 2007 15:26:55 +0100 Subject: [TxMt] Change colors for diff output In-Reply-To: <94cdd26f0705010723g552466f7mdf42b9ea8b7ace37@mail.gmail.com> References: <94cdd26f0705010723g552466f7mdf42b9ea8b7ace37@mail.gmail.com> Message-ID: <71DD05F3-ACF8-4034-B3CE-5F63087D9A9A@gmail.com> On 1 May 2007, at 15:23, Chuck Esterbrook wrote: > I didn't see an entry in the TextMate Preferences for these. Am I just > missing it? Or can I change these via the defaults database or a > plist? Those are in the Diff bundle. Open the bundle editor and expand the Diff bundle and you'll see some Style: preferences you can edit -------------- next part -------------- An HTML attachment was scrubbed... URL: From robin.houston at gmail.com Tue May 1 14:29:53 2007 From: robin.houston at gmail.com (Robin Houston) Date: Tue, 1 May 2007 15:29:53 +0100 Subject: [TxMt] Change colors for diff output In-Reply-To: <94cdd26f0705010723g552466f7mdf42b9ea8b7ace37@mail.gmail.com> References: <94cdd26f0705010723g552466f7mdf42b9ea8b7ace37@mail.gmail.com> Message-ID: <1b795e7b0705010729l277591bl922212cc7e232036@mail.gmail.com> On 5/1/07, Chuck Esterbrook wrote: > > TextMate colors the output of a diff (such as "svn di") which is > great, but I would like to change the colors. For example, I would > prefer that deleted lines are red on white instead of white on red (I > find the background color distracting). Look at the preference items in the Diff bundle. For example, the item "Style: Deleted" contains: { background = '#FF3D3D'; foreground = '#FFFFFF'; } You could change it to: { background = '#FFFFFF'; foreground = '#FF3D3D'; } to get red on white instead. Robin -------------- next part -------------- An HTML attachment was scrubbed... URL: From jacobolus at gmail.com Tue May 1 15:35:38 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Tue, 01 May 2007 11:35:38 -0400 Subject: [TxMt] Re: Change colors for diff output In-Reply-To: <1b795e7b0705010729l277591bl922212cc7e232036@mail.gmail.com> References: <94cdd26f0705010723g552466f7mdf42b9ea8b7ace37@mail.gmail.com> <1b795e7b0705010729l277591bl922212cc7e232036@mail.gmail.com> Message-ID: Robin Houston: > Chuck Esterbrook: >> TextMate colors the output of a diff (such as "svn di") which is >> great, but I would like to change the colors. For example, I would >> prefer that deleted lines are red on white instead of white on red (I >> find the background color distracting). > > Look at the preference items in the Diff bundle. For example, the item > "Style: Deleted" contains: > > { background = '#FF3D3D'; > foreground = '#FFFFFF'; > } > > You could change it to: > > { background = '#FFFFFF'; > foreground = '#FF3D3D'; > } > > to get red on white instead. You *could*, but you shouldn't. Just add some rules in your theme (in the main TM preferences) for diff scopes. From digilord at mac.com Tue May 1 16:06:52 2007 From: digilord at mac.com (digilord at mac.com) Date: Tue, 1 May 2007 09:06:52 -0700 Subject: [TxMt] Subversion Bundle Oddities Message-ID: <076F8B2A-01E9-4590-A84A-1B0BD6D6F0BF@mac.com> This morning I downloaded version 1.5.5 (1138). I use TextMate with Subversion every day. Today when I executed CTRL-SHIFT-A to do a check in this got pasted into my document: John Doe 12345 Main Street Plainville Any State 67890 USA I searched through the bundles and did not see a bundle that used that key sequence. I did notice that when I type that sequence the Edit menu item at the top of the screen flashes briefly. Can anyone shed any light on what might be causing this? Thank you! DigiLord From jfalgueras at uma.es Tue May 1 16:08:41 2007 From: jfalgueras at uma.es (Juan Falgueras) Date: Tue, 1 May 2007 18:08:41 +0200 Subject: [TxMt] Macro finding in project... Message-ID: <9AEE370F-BC2C-49DD-B782-B36A934B7863@uma.es> Hi a newbie question, I think... it was very easy :) to make a macro for quickfind the current word (bind this to a Cmd-Opt-Shift-Left/Right arrows make move around the source code really a charm).. but it has been a recurrent temptation for me to wide the finding to the rest of the files in the project. As I use the Cmd-Shift-F dialog I find it really more and more clever (I used to miss the word boundaries check box.. but is ok as it is if you know a little of regexps, of course, as it must be ;) The problem is it was for me impossible to make the macro follow the Find in project the current word... I suppose the problem exceeds the way TM makes the project finding. TM establish a panel where you see each line with the word highlighted (really clever) but it has no way to jump to the word without the dialog... is it? From jfalgueras at uma.es Tue May 1 16:15:56 2007 From: jfalgueras at uma.es (Juan Falgueras) Date: Tue, 1 May 2007 18:15:56 +0200 Subject: [TxMt] "Save As" Renaming Bug - any hope for the future? Message-ID: <5E6EF729-1011-469A-BD02-77D281256E4E@uma.es> I think TM do the things fine, as it simple and powerful renaming files in the file drawer. That function has been for me really a time-saver and is very natural that it was there as is. The solution to the problem, IMHO, is to add a more complete behaviour to TM, allowing Option-Drag of files in the drawer. Also, perhaps, info for files (to make them executable, for example, via a dialog... although I think this is not so important...) From throw-away-1 at macromates.com Tue May 1 18:43:27 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Tue, 1 May 2007 20:43:27 +0200 Subject: [TxMt] Subversion Bundle Oddities In-Reply-To: <076F8B2A-01E9-4590-A84A-1B0BD6D6F0BF@mac.com> References: <076F8B2A-01E9-4590-A84A-1B0BD6D6F0BF@mac.com> Message-ID: <6E242348-9E36-4A45-9475-69AA6A6E8BFC@macromates.com> On 1. May 2007, at 18:06, digilord at mac.com wrote: > This morning I downloaded version 1.5.5 (1138). I use TextMate > with Subversion every day. Today when I executed CTRL-SHIFT-A to > do a check in this got pasted into my document: [...] > > I searched through the bundles and did not see a bundle that used > that key sequence. I did notice that when I type that sequence the > Edit menu item at the top of the screen flashes briefly. Can > anyone shed any light on what might be causing this? This is reproducible? The Edit menu flashes each time? Try look in the Edit menu for items with the key sequence (you can open the Edit menu and press the keys, then see if an item flashes). When you searched the bundle items, did you do it via the Select Bundle Item? switching to key equivalent search? From nerdrewryan at aim.com Tue May 1 18:42:53 2007 From: nerdrewryan at aim.com (Andrew Ryan) Date: Tue, 1 May 2007 11:42:53 -0700 Subject: [TxMt] Ruby on Rails Bundle Highlighting: object.include Message-ID: The highlighting for the RoR bundle is wrong if an instance method is named include: object.include highlights include as if it were an include at the top of the page. It should recognize it as an instance method and leave it the normal color. From throw-away-1 at macromates.com Tue May 1 18:46:51 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Tue, 1 May 2007 20:46:51 +0200 Subject: [TxMt] Macro finding in project... In-Reply-To: <9AEE370F-BC2C-49DD-B782-B36A934B7863@uma.es> References: <9AEE370F-BC2C-49DD-B782-B36A934B7863@uma.es> Message-ID: <31EBA034-4839-4CD5-88DE-FC905779354E@macromates.com> On 1. May 2007, at 18:08, Juan Falgueras wrote: > [...] The problem is it was for me impossible to make the macro > follow the Find in project the current word... [...] http://lists.macromates.com/pipermail/textmate/2007-April/019411.html From nerdrewryan at aim.com Tue May 1 18:46:08 2007 From: nerdrewryan at aim.com (Andrew Ryan) Date: Tue, 1 May 2007 11:46:08 -0700 Subject: [TxMt] Subversion Bundle Bug Message-ID: I can only remove one missing item from the subversion status window. I if I try to remove another, it fails. Steps: 1. Check the status on a folder. 2. A remove button appears next to files that are missing. Click the remove button for a missing file. 3. Confirm the removal. 4. Try to remove another missing file. 5. Wait. Nothing happens. The black loading gear just spins indefinitely in the top right hand corner. Andrew From digilord at mac.com Tue May 1 19:07:28 2007 From: digilord at mac.com (digilord at mac.com) Date: Tue, 1 May 2007 12:07:28 -0700 Subject: [TxMt] Subversion Bundle Oddities In-Reply-To: <6E242348-9E36-4A45-9475-69AA6A6E8BFC@macromates.com> References: <076F8B2A-01E9-4590-A84A-1B0BD6D6F0BF@mac.com> <6E242348-9E36-4A45-9475-69AA6A6E8BFC@macromates.com> Message-ID: I just tried to do a key equivalent search. Interestingly when I attempt to type that key sequence it is interpreted as COMMAND-V which is Paste. I found the issue. It was global to my system, although I only use that key sequence in TM. By turning off programs one at a time I found that Drop Drawers was the culprit. It does something to the key sequences and re-maps them (bad program). I won't be using that program anymore. Sorry to blame TM. Thank you for the help. On May 1, 2007, at 11:43 AM, Allan Odgaard wrote: > On 1. May 2007, at 18:06, digilord at mac.com wrote: > >> This morning I downloaded version 1.5.5 (1138). I use TextMate >> with Subversion every day. Today when I executed CTRL-SHIFT-A to >> do a check in this got pasted into my document: [...] >> >> I searched through the bundles and did not see a bundle that used >> that key sequence. I did notice that when I type that sequence >> the Edit menu item at the top of the screen flashes briefly. Can >> anyone shed any light on what might be causing this? > > This is reproducible? The Edit menu flashes each time? Try look in > the Edit menu for items with the key sequence (you can open the > Edit menu and press the keys, then see if an item flashes). > > When you searched the bundle items, did you do it via the Select > Bundle Item? switching to key equivalent search? > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From chip.cullen at gmail.com Wed May 2 04:28:52 2007 From: chip.cullen at gmail.com (Chip Cullen) Date: Wed, 2 May 2007 13:28:52 +0900 Subject: [TxMt] "Save As" Renaming Bug - any hope for the future? In-Reply-To: <5E6EF729-1011-469A-BD02-77D281256E4E@uma.es> References: <5E6EF729-1011-469A-BD02-77D281256E4E@uma.es> Message-ID: Jenny, *sigh - I miss NorCal * Anyway - I'm attaching two bundles: the Save a Copy command, and the Rescan Project command. Save a Copy works with the shortcut Cmd-D, and Rescan project uses Cmd-R. Good luck! Chip On 5/2/07, Juan Falgueras wrote: > > I think TM do the things fine, as it simple and powerful renaming > files in the file drawer. That function has been for me really a > time-saver and is very natural that it was there as is. The solution > to the problem, IMHO, is to add a more complete behaviour to TM, > allowing Option-Drag of files in the drawer. Also, perhaps, info > for files (to make them executable, for example, via a dialog... > although I think this is not so important...) > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > -------------- next part -------------- A non-text attachment was scrubbed... Name: Rescan Project.tmCommand Type: application/octet-stream Size: 637 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Save a copy.tmCommand Type: application/octet-stream Size: 745 bytes Desc: not available URL: From jashugan at gmail.com Wed May 2 07:16:50 2007 From: jashugan at gmail.com (Nithin Reddy) Date: Wed, 2 May 2007 00:16:50 -0700 Subject: [TxMt] Improvements to Objective-C Bundle Message-ID: <994e7e3c0705020016u4f5cdc03kc7fa3b94aff40417@mail.gmail.com> Hello, I made some simple additions to the Objective-C Bundle, and was wondering if anyone was interested in them. * Comment Reflow - based on the Screencast by Allan * Comment Code - comments out the current line of code (or the selected lines of code), useful for debugging * Uncomment code - undoes above I know they are not very glamarous, but I was surprised they were not already included in the bundle. - Nithin From jacobolus at gmail.com Wed May 2 07:48:12 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Wed, 02 May 2007 03:48:12 -0400 Subject: [TxMt] Re: Improvements to Objective-C Bundle In-Reply-To: <994e7e3c0705020016u4f5cdc03kc7fa3b94aff40417@mail.gmail.com> References: <994e7e3c0705020016u4f5cdc03kc7fa3b94aff40417@mail.gmail.com> Message-ID: Nithin Reddy wrote: > * Comment Code - comments out the current line of code (or the > selected lines of code), useful for debugging > * Uncomment code - undoes above Try ?/ ;) -Jacob From bibiko at eva.mpg.de Wed May 2 08:23:31 2007 From: bibiko at eva.mpg.de (Hans-Joerg Bibiko) Date: Wed, 2 May 2007 10:23:31 +0200 Subject: [TxMt] Spell checking using Google In-Reply-To: References: <5130B0E7-39E3-4212-9962-9B3BD64D5C0A@gmail.com> <79FA4E1A-F652-4DDE-9474-068EE9F368C6@eva.mpg.de> <7AF5A43A-7C45-4175-AA1E-7CAD31758049@eva.mpg.de> Message-ID: Hi Allan, nice coding (I'm learning Ruby step by step ;) ) Here my comments: 1) ESC behaviour If I press ESC while the pull-down menu is shown it takes Google's first suggestion. By my opinion it's more logically that pressing ESC will change nothing. Thus I wrote: ... res = TextMate::UI.menu(items.flatten) correction = (res) ? res['string'] : org ... 2) \n\n problem There's is still the problem if the selected text contains '\n\n' I managed it by relpacing all \n with a non-used character 3) Google returns only one suggestion > When there is only one suggestion, the command uses that, and > makes the word a tab-stop. By my opinion it would be better to show always a pull-down menu with the original and the suggestion. Google hasn't always right. 4) > Personally I think the menu is generally not wanted, so that part > should probably be removed (and the first suggestion should always > be picked). As you mentioned the popping up of many pull-down menus is a bit confusing because I don't know which word is currently checked. But how about that way: - If a single word will be checked - same behaviour (except the command doesn't return a snippet; it returns it as exit_replace_text) - If a text is selected meaning at least one space is in it the command only returns a snippet of misspelled word without any changes. After that you can navigate with TAB through the snippet (misspelled words) and if you find a really misspelled word you can invoke the command again and so forth. 5) For security reason the command returns the snippet: new_str + "${0:}" Attached is my version of gspell. Hans -------------- next part -------------- A non-text attachment was scrubbed... Name: Google Spell Check Selection : Word.tmCommand Type: application/octet-stream Size: 2836 bytes Desc: not available URL: From bibiko at eva.mpg.de Wed May 2 11:10:37 2007 From: bibiko at eva.mpg.de (=?ISO-8859-1?Q?Hans-J=F6rg_Bibiko?=) Date: Wed, 2 May 2007 13:10:37 +0200 Subject: [TxMt] TM's preference "word characters" question Message-ID: <4ED82978-E249-42BB-BD49-1F74842DFDAC@eva.mpg.de> Hi, I have a question about TM's preference "word characters": I also want to match a word if the word contains '\ ' Is this possible? If I write into TM's preference "word characters" '_/\ ' it works partly because TM takes all four characters, but I only want to match '_' '/' '\ ' Any comments are helpful. Thanks in advance. Hans From andy at hexten.net Wed May 2 11:14:44 2007 From: andy at hexten.net (Andy Armstrong) Date: Wed, 2 May 2007 12:14:44 +0100 Subject: [TxMt] TM's preference "word characters" question In-Reply-To: <4ED82978-E249-42BB-BD49-1F74842DFDAC@eva.mpg.de> References: <4ED82978-E249-42BB-BD49-1F74842DFDAC@eva.mpg.de> Message-ID: <815948ED-30E2-438B-90DA-7756291D3FA5@hexten.net> On 2 May 2007, at 12:10, Hans-J?rg Bibiko wrote: > If I write into TM's preference "word characters" '_/\ ' it works > partly because TM takes all four characters, but I only want to > match '_' '/' '\ ' I just asked more or less the same question. The answer is "not right now but looks hopeful for TextMate 2". -- Andy Armstrong, hexten.net From skiadas at hanover.edu Wed May 2 12:49:41 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Wed, 2 May 2007 08:49:41 -0400 Subject: [TxMt] LaTeX bundle and the exam package In-Reply-To: References: Message-ID: <566C17A2-22B4-4E5D-93AE-4D78281B529F@hanover.edu> On May 1, 2007, at 3:22 AM, David F. Snyder wrote: > Hi > > I am hoping someone has solved this problem. > > I use latekmk.pl script as $TM_TEX_COMPILER to compile my LaTeX > documents > from within Textmate and it works wonderfully on every document > I've made, > except for any document that uses the exam package. > > The problem is small: I must execute cmd-R twice to get it to > compile the > number of points correctly. This is only a problem within Textmate; > if I run > the script from the command line it works perfectly. And while it > is a small > problem it is vexing, since latexmk.pl was made specifically to > deal with > the need to run LaTeX etc. multiple times. > I wonder, whether the latexmk.pl script that runs from the command line is the same as the one that runs from within TM. I think TM will run its own version of latexmk.pl, which I updated recently. But perhaps you have another latexmk.pl? When you use latexmk.pl from the command line, how do you invoke it, and what is the value, if any, returned by "which latexmk.pl"? > My guess is that there is a bug in either cmd-R (though I can't > find one) > or somewhere in the bowels of Textmate. > > Seeing as how I used this package frequently, almost daily, I'm > guessing > that this need to cmd-R twice will cost me about an hour and a half > of my > life in the coming year. > > Best wishes > ---- > David Haris Skiadas Department of Mathematics and Computer Science Hanover College From abeyeler at dplanet.ch Wed May 2 13:00:20 2007 From: abeyeler at dplanet.ch (Antoine Beyeler) Date: Wed, 2 May 2007 15:00:20 +0200 Subject: [TxMt] C++ bundle: symbol detection bug Message-ID: Hi All, I've run into a glitch related to the C++ bundle of TextMate and since I'm new to both TextMate and this list, I'm quite unsure how to proceed with the bug report. Here it is anyway. The symbol is not properly detected with constructor in the form of: Foo::Foo() : boo(1) { } "boo" is incorrectly detected as symbol instead of "Foo::Foo". My bundle collection is quite up-to-date (rev. 7108). Let me know if I should report this elsewhere. Best, Antoine -- Antoine Beyeler PhD Student Ecole Polytechnique F?d?rale de Lausanne Laboratory of Intelligent Systems EPFL-STI-I2S-LIS Office ELE 132 - Station 11 CH-1015 Lausanne Voice: ++41 21 693 73 54 Fax: ++41 21 693 58 59 Home page: http://lis.epfl.ch/119413 Project page: http://lis.epfl.ch/microflyers From a.h.jaffe at gmail.com Wed May 2 13:00:42 2007 From: a.h.jaffe at gmail.com (Andrew Jaffe) Date: Wed, 02 May 2007 14:00:42 +0100 Subject: [TxMt] Re: mate error In-Reply-To: References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> Message-ID: Me too, and the effect is that the file I am trying to get doesn't load. Andrew Todd Ditchendorf wrote: > I've been experiencing this too... but i didn't know what was going on... > > > Todd Ditchendorf > > On Apr 30, 2007, at 5:53 PM, Brett Terpstra wrote: > >> I just noticed I get this from the command line on both individual >> file and directories. >> >> 2007-04-30 19:52:04.221 mate[5199] An uncaught exception was raised >> 2007-04-30 19:52:04.221 mate[5199] [NOTE: this exception originated in >> the server.] >> *** Object does not implement or has different method signature >> 2007-04-30 19:52:04.221 mate[5199] *** Uncaught exception: >> [NOTE: this exception originated in the >> server.] >> *** Object does not implement or has different method signature >> Trace/BPT trap >> >> I just upgraded this morning. Not sure what I've done here... >> >> Thanks, >> Brett >> From textmate at skurfer.com Wed May 2 18:57:09 2007 From: textmate at skurfer.com (Rob McBroom) Date: Wed, 2 May 2007 14:57:09 -0400 Subject: [TxMt] Markdown bundle request Message-ID: Could the Markdown bundle be modified to use a TM_MARKDOWN variable (similar to the way the Subversion bundle uses TM_SVN) in the "Convert document/selection to HTML" and other relevant commands? I envision that the variable would contain whatever command(s) you want to use for Markdown stuff and would default to the current "Markdown.pl|SmartyPants.pl|perl?". For example, I like to add the "--html4tags" option and get rid of SmartyPants, but to do it currently, you need to modify the bundle. (Which is fine in theory, but I worry that in practice, updates will be missed.) Or perhaps the "--html4tags" option should just be used/not used automatically based on the value of TM_XHTML. The current chunk of perl would probably be awkward to store in a variable or to use as a default value, but perhaps it could be made into a script in the Markdown bundle's support dir? Just an idea. Thanks. --- Rob McBroom I didn't "switch" to Apple... my OS did. From throw-away-1 at macromates.com Wed May 2 20:19:25 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Wed, 2 May 2007 22:19:25 +0200 Subject: [TxMt] Markdown bundle request In-Reply-To: References: Message-ID: <82125E65-F1E3-451B-BA7E-A687FC581ED5@macromates.com> On 2. May 2007, at 20:57, Rob McBroom wrote: > Could the Markdown bundle be modified to use a TM_MARKDOWN variable > (similar to the way the Subversion bundle uses TM_SVN) in the > "Convert document/selection to HTML" and other relevant commands? > > I envision that the variable would contain whatever command(s) you > want to use for Markdown stuff and would default to the current > "Markdown.pl|SmartyPants.pl|perl?". > > For example, I like to add the "--html4tags" option and get rid of > SmartyPants, but to do it currently, you need to modify the bundle. > (Which is fine in theory, but I worry that in practice, updates > will be missed.) You wouldn?t be able to include your arguments in such variable. So either you would set the variable to a (custom) script, or we would instead need a TM_MARKDOWN_OPTIONS. > Or perhaps the "--html4tags" option should just be used/not used > automatically based on the value of TM_XHTML. Definitely that?s a good idea! I just made the following commit: ? give --html4tags to Markdown.pl unless TM_XHTML is set and non-empty ? use TM_SMARTYPANTS if set, instead of SmartyPants.pl (so set this to ?cat? to disable it) The last line is cryptic, basically set TM_SMARTYPANTS to ?cat? to have SmartyPants.pl disabled. From throw-away-1 at macromates.com Wed May 2 20:23:58 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Wed, 2 May 2007 22:23:58 +0200 Subject: [TxMt] C++ bundle: symbol detection bug In-Reply-To: References: Message-ID: On 2. May 2007, at 15:00, Antoine Beyeler wrote: > I've run into a glitch related to the C++ bundle of TextMate and > since I'm new to both TextMate and this list, I'm quite unsure how > to proceed with the bug report. The language grammar only detects function signatures formatted on a single line, that?s a technical limitation. From throw-away-1 at macromates.com Wed May 2 20:25:09 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Wed, 2 May 2007 22:25:09 +0200 Subject: [TxMt] Re: mate error In-Reply-To: References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> Message-ID: Try check Console for more output. How reproducible is it? all the time with all paths? On 2. May 2007, at 15:00, Andrew Jaffe wrote: > Me too, and the effect is that the file I am trying to get doesn't > load. > > Andrew > > > Todd Ditchendorf wrote: >> I've been experiencing this too... but i didn't know what was >> going on... >> Todd Ditchendorf >> On Apr 30, 2007, at 5:53 PM, Brett Terpstra wrote: >>> I just noticed I get this from the command line on both >>> individual file and directories. >>> >>> 2007-04-30 19:52:04.221 mate[5199] An uncaught exception was raised >>> 2007-04-30 19:52:04.221 mate[5199] [NOTE: this exception >>> originated in the server.] >>> *** Object does not implement or has different method signature >>> 2007-04-30 19:52:04.221 mate[5199] *** Uncaught exception: >>> [NOTE: this exception originated in >>> the server.] >>> *** Object does not implement or has different method signature >>> Trace/BPT trap >>> >>> I just upgraded this morning. Not sure what I've done here... >>> >>> Thanks, >>> Brett >>> > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From textmate at skurfer.com Wed May 2 20:52:04 2007 From: textmate at skurfer.com (Rob McBroom) Date: Wed, 2 May 2007 16:52:04 -0400 Subject: [TxMt] Markdown bundle request In-Reply-To: <82125E65-F1E3-451B-BA7E-A687FC581ED5@macromates.com> References: <82125E65-F1E3-451B-BA7E-A687FC581ED5@macromates.com> Message-ID: <07B9E698-B88B-42BF-82B5-882C2645E9A9@skurfer.com> On May 2, 2007, at 4:19 PM, Allan Odgaard wrote: > You wouldn?t be able to include your arguments in such variable. So > either you would set the variable to a (custom) script, or we would > instead need a TM_MARKDOWN_OPTIONS. Well, I was imagining the variable to contain the commands and arguments. So the default would be something like Markdown.pl|SmartyPants.pl|another.pl And then I would set the variable to something like Markdown.pl --html4tags|another.pl Is there a technical limitation that prevents this? Now that you mention it, it probably makes more sense to have a variable for each command, even if that makes things a bit messier. > The last line is cryptic, basically set TM_SMARTYPANTS to ?cat? to > have SmartyPants.pl disabled. It made sense to me, but thanks. :) And thanks for the changes to the bundle. I should be able to get the behavior I want now. --- Rob McBroom I didn't "switch" to Apple... my OS did. From oliver at ollieman.net Wed May 2 21:07:20 2007 From: oliver at ollieman.net (Oliver Taylor) Date: Wed, 2 May 2007 14:07:20 -0700 Subject: [TxMt] Code Completion Help Message-ID: I'm having a problem with Code Completion. Here's the deal: I've got the completion set-up to complete from a document-parser and a preference item. The parsed completions still work, but it's stopped pulling completions from the preference item. I've checked the item name in the bundle editor and the finder, and even tried re- creating the completions from scratch, to no avail. Deleting the bundle and reinstalling it seems to fix the problem, but only for a while. I've tried to track down what triggers its failure, but I can't seem to isolate it. Download: http://ollieman.net/files/beta.zip If you could, install the beta and in Screenplay Mode type the following: int. location - d And attempt to trigger the "Time of Day" auto-complete from the "D" at the end of the line. Any help is appreciated. -- Oliver Taylor From throw-away-1 at macromates.com Wed May 2 21:10:59 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Wed, 2 May 2007 23:10:59 +0200 Subject: [TxMt] Markdown bundle request In-Reply-To: <07B9E698-B88B-42BF-82B5-882C2645E9A9@skurfer.com> References: <82125E65-F1E3-451B-BA7E-A687FC581ED5@macromates.com> <07B9E698-B88B-42BF-82B5-882C2645E9A9@skurfer.com> Message-ID: <495B23A1-9B71-4CC2-A379-66F35D5A036F@macromates.com> On 2. May 2007, at 22:52, Rob McBroom wrote: >> You wouldn?t be able to include your arguments in such variable. >> So either you would set the variable to a (custom) script, or we >> would instead need a TM_MARKDOWN_OPTIONS. > > Well, I was imagining the variable to contain the commands and > arguments. So the default would be something like > > Markdown.pl|SmartyPants.pl|another.pl > > And then I would set the variable to something like > > Markdown.pl --html4tags|another.pl > > Is there a technical limitation that prevents this? [...] Yes, spaces in the path to Markdown.pl. Say I set TM_MARKDOWN to ~/Library/Application Support/TextMate/ Support/bin/Markdown.pl And you set it to: Markdown.pl --html4tags Both values have a space, in my case it is part of the path to markdown, in your case it is to separate the path and the arguments. From brett at circlesixdesign.com Wed May 2 21:23:11 2007 From: brett at circlesixdesign.com (Brett Terpstra) Date: Wed, 2 May 2007 16:23:11 -0500 Subject: [TxMt] Re: mate error In-Reply-To: References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> Message-ID: <8A7E7E84-908E-45C0-BEEC-7912467139C4@circlesixdesign.com> This is from mate.crash.log, sorry for the long paste: ===== Wednesday, May 2, 2007 4:22:13 PM US/Central ===== ********** Host Name: TheProfessional Date/Time: 2007-05-02 16:22:19.997 -0500 OS Version: 10.4.9 (Build 8P2137) Report Version: 4 Command: mate Path: /usr/local/bin/mate Parent: bash [9899] Version: ??? (???) PID: 10010 Thread: 0 Exception: EXC_BREAKPOINT (0x0006) Code[0]: 0x00000002 Code[1]: 0x00000000 Thread 0 Crashed: 0 com.apple.Foundation 0x9282247f _NSRaiseError + 227 1 com.apple.Foundation 0x9283eb6c -[NSConnection sendInvocation:] + 3125 2 com.apple.Foundation 0x927f5468 -[NSObject(NSForwardInvocation) forward::] + 469 3 libobjc.A.dylib 0x90a5acc1 _objc_msgForward + 49 4 mate 0x0000290b 0x1000 + 6411 5 mate 0x0000386e 0x1000 + 10350 6 mate 0x0000261a 0x1000 + 5658 7 mate 0x00002535 0x1000 + 5429 Thread 1: 0 libSystem.B.dylib 0x9000a457 mach_msg_trap + 7 1 com.unsanity.ape 0xc0001cac __ape_agent + 307 2 libSystem.B.dylib 0x90024987 _pthread_body + 84 Thread 0 crashed with X86 Thread State (32-bit): eax: 0x0000a000 ebx: 0x928223aa ecx: 0x90a64b30 edx: 0x00306c00 edi: 0x00320b50 esi: 0x003211e0 ebp: 0xbfffee68 esp: 0xbfffee00 ss: 0x0000001f efl: 0x00000246 eip: 0x9282247f cs: 0x00000017 ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037 Binary Images Description: 0x1000 - 0x4fff mate /usr/local/bin/mate 0x8fe00000 - 0x8fe4afff dyld 46.12 /usr/lib/dyld 0x90000000 - 0x90170fff libSystem.B.dylib /usr/lib/libSystem.B.dylib 0x901c0000 - 0x901c2fff libmathCommon.A.dylib /usr/lib/system/ libmathCommon.A.dylib 0x901c4000 - 0x90201fff com.apple.CoreText 1.1.2 (???) /System/ Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/CoreText.framework/Versions/A/CoreText 0x90228000 - 0x902fefff ATS /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/ Versions/A/ATS 0x9031e000 - 0x90773fff com.apple.CoreGraphics 1.258.61 (???) /System/ Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x9080a000 - 0x908d2fff com.apple.CoreFoundation 6.4.7 (368.28) / System/Library/Frameworks/CoreFoundation.framework/Versions/A/ CoreFoundation 0x90910000 - 0x90910fff com.apple.CoreServices 10.4 (???) /System/ Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x90912000 - 0x90a05fff libicucore.A.dylib /usr/lib/libicucore.A.dylib 0x90a55000 - 0x90ad4fff libobjc.A.dylib /usr/lib/libobjc.A.dylib 0x90afd000 - 0x90b61fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib 0x90bd0000 - 0x90bd7fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib 0x90bdc000 - 0x90c4ffff com.apple.framework.IOKit 1.4.6 (???) /System/ Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x90c64000 - 0x90c76fff libauto.dylib /usr/lib/libauto.dylib 0x90c7c000 - 0x90f22fff com.apple.CoreServices.CarbonCore 682.21 / System/Library/Frameworks/CoreServices.framework/Versions/A/ Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x90f65000 - 0x90fcdfff com.apple.CoreServices.OSServices 4.1 /System/ Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/ OSServices.framework/Versions/A/OSServices 0x91006000 - 0x91044fff com.apple.CFNetwork 129.20 /System/Library/ Frameworks/CoreServices.framework/Versions/A/Frameworks/ CFNetwork.framework/Versions/A/CFNetwork 0x91057000 - 0x91067fff com.apple.WebServices 1.1.3 (1.1.0) /System/ Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/ WebServicesCore.framework/Versions/A/WebServicesCore 0x91072000 - 0x910f1fff com.apple.SearchKit 1.0.5 /System/Library/ Frameworks/CoreServices.framework/Versions/A/Frameworks/ SearchKit.framework/Versions/A/SearchKit 0x9112b000 - 0x91149fff com.apple.Metadata 10.4.4 (121.36) /System/ Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/ Metadata.framework/Versions/A/Metadata 0x91155000 - 0x91163fff libz.1.dylib /usr/lib/libz.1.dylib 0x91166000 - 0x91305fff com.apple.security 4.5.2 (29774) /System/ Library/Frameworks/Security.framework/Versions/A/Security 0x91403000 - 0x9140bfff com.apple.DiskArbitration 2.1.1 /System/ Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x91412000 - 0x91419fff libbsm.dylib /usr/lib/libbsm.dylib 0x9141d000 - 0x91443fff com.apple.SystemConfiguration 1.8.6 /System/ Library/Frameworks/SystemConfiguration.framework/Versions/A/ SystemConfiguration 0x91455000 - 0x914cbfff com.apple.audio.CoreAudio 3.0.4 /System/ Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x9151c000 - 0x9151cfff com.apple.ApplicationServices 10.4 (???) / System/Library/Frameworks/ApplicationServices.framework/Versions/A/ ApplicationServices 0x9151e000 - 0x9154afff com.apple.AE 314 (313) /System/Library/ Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE 0x9155d000 - 0x91631fff com.apple.ColorSync 4.4.9 /System/Library/ Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync 0x9166c000 - 0x916dffff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/ Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x9170d000 - 0x917b6fff com.apple.QD 3.10.24 (???) /System/Library/ Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD 0x917dc000 - 0x91827fff com.apple.HIServices 1.5.2 (???) /System/ Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/HIServices.framework/Versions/A/HIServices 0x91846000 - 0x9185cfff com.apple.LangAnalysis 1.6.3 /System/Library/ Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis 0x91868000 - 0x91883fff com.apple.FindByContent 1.5 /System/Library/ Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent 0x9188e000 - 0x918cbfff com.apple.LaunchServices 182 /System/Library/ Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices 0x918df000 - 0x918ebfff com.apple.speech.synthesis.framework 3.5 / System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x918f2000 - 0x91931fff com.apple.ImageIO.framework 1.5.4 /System/ Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/ImageIO 0x91944000 - 0x919f6fff libcrypto.0.9.7.dylib /usr/lib/libcrypto. 0.9.7.dylib 0x91a3c000 - 0x91a52fff libcups.2.dylib /usr/lib/libcups.2.dylib 0x91a57000 - 0x91a75fff libJPEG.dylib /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ Versions/A/Resources/libJPEG.dylib 0x91a7a000 - 0x91ad9fff libJP2.dylib /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ Versions/A/Resources/libJP2.dylib 0x91aeb000 - 0x91aeffff libGIF.dylib /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ Versions/A/Resources/libGIF.dylib 0x91af1000 - 0x91b75fff libRaw.dylib /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ Versions/A/Resources/libRaw.dylib 0x91b79000 - 0x91bb6fff libTIFF.dylib /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ Versions/A/Resources/libTIFF.dylib 0x91bbc000 - 0x91bd6fff libPng.dylib /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ Versions/A/Resources/libPng.dylib 0x91bdb000 - 0x91bddfff libRadiance.dylib /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ Versions/A/Resources/libRadiance.dylib 0x91bdf000 - 0x91cbdfff libxml2.2.dylib /usr/lib/libxml2.2.dylib 0x91cda000 - 0x91cdafff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/ Accelerate 0x91cdc000 - 0x91d6afff com.apple.vImage 2.5 /System/Library/ Frameworks/Accelerate.framework/Versions/A/Frameworks/ vImage.framework/Versions/A/vImage 0x91d71000 - 0x91d71fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/ Frameworks/vecLib.framework/Versions/A/vecLib 0x91d73000 - 0x91dccfff libvMisc.dylib /System/Library/Frameworks/ Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/ A/libvMisc.dylib 0x91dd5000 - 0x91df9fff libvDSP.dylib /System/Library/Frameworks/ Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/ A/libvDSP.dylib 0x91e01000 - 0x9220afff libBLAS.dylib /System/Library/Frameworks/ Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/ A/libBLAS.dylib 0x92244000 - 0x925f8fff libLAPACK.dylib /System/Library/Frameworks/ Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/ A/libLAPACK.dylib 0x92625000 - 0x92712fff libiconv.2.dylib /usr/lib/libiconv.2.dylib 0x92714000 - 0x92791fff com.apple.DesktopServices 1.3.6 /System/ Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/ DesktopServicesPriv 0x927d2000 - 0x92a02fff com.apple.Foundation 6.4.8 (567.29) /System/ Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x92b1c000 - 0x92b33fff libGL.dylib /System/Library/Frameworks/ OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x92b3e000 - 0x92b96fff libGLU.dylib /System/Library/Frameworks/ OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x92bcb000 - 0x92bd3fff com.apple.speech.recognition.framework 3.6 / System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ SpeechRecognition.framework/Versions/A/SpeechRecognition 0x92dbf000 - 0x92dcdfff com.apple.audio.SoundManager 3.9.1 /System/ Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ CarbonSound.framework/Versions/A/CarbonSound 0x92dde000 - 0x930d3fff com.apple.HIToolbox 1.4.9 (???) /System/ Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ HIToolbox.framework/Versions/A/HIToolbox 0x931d9000 - 0x931e4fff com.apple.opengl 1.4.16 /System/Library/ Frameworks/OpenGL.framework/Versions/A/OpenGL 0x93274000 - 0x93274fff com.apple.Cocoa 6.4 (???) /System/Library/ Frameworks/Cocoa.framework/Versions/A/Cocoa 0x93276000 - 0x9392cfff com.apple.AppKit 6.4.8 (824.42) /System/ Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x93cad000 - 0x93d28fff com.apple.CoreData 91 (92.1) /System/Library/ Frameworks/CoreData.framework/Versions/A/CoreData 0x93d61000 - 0x93e1bfff com.apple.audio.toolbox.AudioToolbox 1.4.5 / System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x93e5e000 - 0x93e5efff com.apple.audio.units.AudioUnit 1.4.2 /System/ Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x93e60000 - 0x94021fff com.apple.QuartzCore 1.4.12 /System/Library/ Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x94067000 - 0x940a8fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib 0x940b0000 - 0x940eafff libGLImage.dylib /System/Library/Frameworks/ OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x940ef000 - 0x94105fff com.apple.CoreVideo 1.4 /System/Library/ Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0xc0000000 - 0xc000efff com.unsanity.ape 2.0.2 /Library/Frameworks/ ApplicationEnhancer.framework/Versions/A/ApplicationEnhancer On May 2, 2007, at 3:25 PM, Allan Odgaard wrote: > Try check Console for more output. > > How reproducible is it? all the time with all paths? > > > On 2. May 2007, at 15:00, Andrew Jaffe wrote: > >> Me too, and the effect is that the file I am trying to get doesn't >> load. >> >> Andrew >> >> >> Todd Ditchendorf wrote: >>> I've been experiencing this too... but i didn't know what was >>> going on... >>> Todd Ditchendorf >>> On Apr 30, 2007, at 5:53 PM, Brett Terpstra wrote: >>>> I just noticed I get this from the command line on both >>>> individual file and directories. >>>> >>>> 2007-04-30 19:52:04.221 mate[5199] An uncaught exception was raised >>>> 2007-04-30 19:52:04.221 mate[5199] [NOTE: this exception >>>> originated in the server.] >>>> *** Object does not implement or has different method signature >>>> 2007-04-30 19:52:04.221 mate[5199] *** Uncaught exception: >>>> [NOTE: this exception originated in >>>> the server.] >>>> *** Object does not implement or has different method signature >>>> Trace/BPT trap >>>> >>>> I just upgraded this morning. Not sure what I've done here... >>>> >>>> Thanks, >>>> Brett >>>> >> >> >> _____________________________________________________________________ >> _ >> For new threads USE THIS: textmate at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From throw-away-1 at macromates.com Wed May 2 21:26:45 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Wed, 2 May 2007 23:26:45 +0200 Subject: [TxMt] Re: mate error In-Reply-To: <8A7E7E84-908E-45C0-BEEC-7912467139C4@circlesixdesign.com> References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> <8A7E7E84-908E-45C0-BEEC-7912467139C4@circlesixdesign.com> Message-ID: <227E4B13-BEF5-4ECC-9D84-A5268E53E6E8@macromates.com> On 2. May 2007, at 23:23, Brett Terpstra wrote: > This is from mate.crash.log, sorry for the long paste: The crash log basically says ?the system function to send a message from mate to TextMate crashed? -- so this says less than the Terminal output. But maybe there is some output (from TextMate) in the system console -- the first message you quoted said the error happened in the server (TextMate), so if that is the case, details would likely have to be found in hte console. From a.h.jaffe at gmail.com Wed May 2 21:44:15 2007 From: a.h.jaffe at gmail.com (Andrew Jaffe) Date: Wed, 02 May 2007 22:44:15 +0100 Subject: [TxMt] Re: mate error In-Reply-To: <227E4B13-BEF5-4ECC-9D84-A5268E53E6E8@macromates.com> References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> <8A7E7E84-908E-45C0-BEEC-7912467139C4@circlesixdesign.com> <227E4B13-BEF5-4ECC-9D84-A5268E53E6E8@macromates.com> Message-ID: Allan Odgaard wrote: > On 2. May 2007, at 23:23, Brett Terpstra wrote: > >> This is from mate.crash.log, sorry for the long paste: > > The crash log basically says ?the system function to send a message from > mate to TextMate crashed? -- so this says less than the Terminal output. > > But maybe there is some output (from TextMate) in the system console -- > the first message you quoted said the error happened in the server > (TextMate), so if that is the case, details would likely have to be > found in hte console. > Alas, it just appears to say "mate crashed" and "crash report written to: /Users/jaffe/Library/Logs/CrashReporter/mate.crash.log" It seems to be happening with any use of 'mate'... Andrew From robert_ullrey at mac.com Wed May 2 22:31:25 2007 From: robert_ullrey at mac.com (Robert Ullrey) Date: Wed, 02 May 2007 15:31:25 -0700 Subject: [TxMt] Re: mate error Message-ID: I am getting the same problem when asking mate to open a file. If I use only "mate," TextMate opens. If I use "mate ~/Sites/file.html" TextMate comes to the front window, but the terminal gives the same "***Uncaught Exception" noted earlier. Running on an intel Macbook Pro 10.4.9 Robert On Wednesday, May 02, 2007, at 02:48PM, "Andrew Jaffe" wrote: >Allan Odgaard wrote: >> On 2. May 2007, at 23:23, Brett Terpstra wrote: >> >>> This is from mate.crash.log, sorry for the long paste: >> >> The crash log basically says ?the system function to send a message from >> mate to TextMate crashed? -- so this says less than the Terminal output. >> >> But maybe there is some output (from TextMate) in the system console -- >> the first message you quoted said the error happened in the server >> (TextMate), so if that is the case, details would likely have to be >> found in hte console. >> >Alas, it just appears to say "mate crashed" and "crash report written >to: /Users/jaffe/Library/Logs/CrashReporter/mate.crash.log" > >It seems to be happening with any use of 'mate'... > >Andrew > > > > > > >______________________________________________________________________ >For new threads USE THIS: textmate at lists.macromates.com >(threading gets destroyed and the universe will collapse if you don't) >http://lists.macromates.com/mailman/listinfo/textmate > > From brett at circlesixdesign.com Wed May 2 22:52:07 2007 From: brett at circlesixdesign.com (Brett Terpstra) Date: Wed, 2 May 2007 17:52:07 -0500 Subject: [TxMt] Re: mate error In-Reply-To: <227E4B13-BEF5-4ECC-9D84-A5268E53E6E8@macromates.com> References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> <8A7E7E84-908E-45C0-BEEC-7912467139C4@circlesixdesign.com> <227E4B13-BEF5-4ECC-9D84-A5268E53E6E8@macromates.com> Message-ID: May 2 16:22:20 TheProfessional crashdump[10011]: mate crashed May 2 16:22:20 TheProfessional crashdump[10011]: crash report written to: /Users/brett/Library/Logs/CrashReporter/mate.crash.log Andrew is correct, not much to glean there. Brett On May 2, 2007, at 4:26 PM, Allan Odgaard wrote: > On 2. May 2007, at 23:23, Brett Terpstra wrote: > >> This is from mate.crash.log, sorry for the long paste: > > The crash log basically says ?the system function to send a message > from mate to TextMate crashed? -- so this says less than the > Terminal output. > > But maybe there is some output (from TextMate) in the system > console -- the first message you quoted said the error happened in > the server (TextMate), so if that is the case, details would likely > have to be found in hte console. > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From brett at circlesixdesign.com Wed May 2 23:23:53 2007 From: brett at circlesixdesign.com (Brett Terpstra) Date: Wed, 2 May 2007 18:23:53 -0500 Subject: [TxMt] Re: mate error In-Reply-To: References: Message-ID: Perhaps I should have noted the same, Intel Macbook Pro, 10.4.9. Brett On May 2, 2007, at 5:31 PM, Robert Ullrey wrote: > I am getting the same problem when asking mate to open a file. If I > use only "mate," TextMate opens. If I use "mate ~/Sites/file.html" > TextMate comes to the front window, but the terminal gives the same > "***Uncaught Exception" noted earlier. > > Running on an intel Macbook Pro 10.4.9 > > Robert > > > On Wednesday, May 02, 2007, at 02:48PM, "Andrew Jaffe" > wrote: >> Allan Odgaard wrote: >>> On 2. May 2007, at 23:23, Brett Terpstra wrote: >>> >>>> This is from mate.crash.log, sorry for the long paste: >>> >>> The crash log basically says ?the system function to send a >>> message from >>> mate to TextMate crashed? -- so this says less than the Terminal >>> output. >>> >>> But maybe there is some output (from TextMate) in the system >>> console -- >>> the first message you quoted said the error happened in the server >>> (TextMate), so if that is the case, details would likely have to be >>> found in hte console. >>> >> Alas, it just appears to say "mate crashed" and "crash report written >> to: /Users/jaffe/Library/Logs/CrashReporter/mate.crash.log" >> >> It seems to be happening with any use of 'mate'... >> >> Andrew >> >> >> >> >> >> >> _____________________________________________________________________ >> _ >> For new threads USE THIS: textmate at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From chris at cjack.com Wed May 2 23:27:41 2007 From: chris at cjack.com (Chris Thomas) Date: Wed, 2 May 2007 19:27:41 -0400 Subject: [TxMt] Re: mate error In-Reply-To: References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> <8A7E7E84-908E-45C0-BEEC-7912467139C4@circlesixdesign.com> <227E4B13-BEF5-4ECC-9D84-A5268E53E6E8@macromates.com> Message-ID: <0C0DCB69-7642-455F-8986-02721156DC17@cjack.com> Running TextMate directly from the Terminal, as in "/Applications/ TextMate.app/Contents/MacOS/TextMate", can sometimes coax additional output to appear. Chris On May 2, 2007, at 6:52 PM, Brett Terpstra wrote: > May 2 16:22:20 TheProfessional crashdump[10011]: mate crashed > May 2 16:22:20 TheProfessional crashdump[10011]: crash report > written to: /Users/brett/Library/Logs/CrashReporter/mate.crash.log > > Andrew is correct, not much to glean there. > > Brett > > On May 2, 2007, at 4:26 PM, Allan Odgaard wrote: > >> On 2. May 2007, at 23:23, Brett Terpstra wrote: >> >>> This is from mate.crash.log, sorry for the long paste: >> >> The crash log basically says ?the system function to send a message >> from mate to TextMate crashed? -- so this says less than the >> Terminal output. >> >> But maybe there is some output (from TextMate) in the system >> console -- the first message you quoted said the error happened in >> the server (TextMate), so if that is the case, details would likely >> have to be found in hte console. >> >> >> ______________________________________________________________________ >> For new threads USE THIS: textmate at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From brett at circlesixdesign.com Wed May 2 23:38:31 2007 From: brett at circlesixdesign.com (Brett Terpstra) Date: Wed, 2 May 2007 18:38:31 -0500 Subject: [TxMt] Re: mate error In-Reply-To: <0C0DCB69-7642-455F-8986-02721156DC17@cjack.com> References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> <8A7E7E84-908E-45C0-BEEC-7912467139C4@circlesixdesign.com> <227E4B13-BEF5-4ECC-9D84-A5268E53E6E8@macromates.com> <0C0DCB69-7642-455F-8986-02721156DC17@cjack.com> Message-ID: <2336E820-465E-43AB-B308-14DE7D02A069@circlesixdesign.com> /Applications/TextMate.app/Contents/MacOS/TextMate blog 2007-05-02 18:36:02.834 TextMate[18174] CFLog (0): CFMessagePort: bootstrap_register(): failed 1103 (0x44f), port = 0x2f03, name = 'com.macromates.textmate.ServiceProvider' See /usr/include/servers/bootstrap_defs.h for the error codes. 2007-05-02 18:36:02.838 TextMate[18174] CFLog (99): CFMessagePortCreateLocal(): failed to name Mach port (com.macromates.textmate.ServiceProvider) 2007-05-02 18:36:02.863 TextMate[18174] couldn't setup TextMate server. 2007-05-02 18:36:13.238 TextMate[18174] couldn't setup TextMate dialog server. 2007-05-02 18:36:13.268 TextMate[18174] loadPlugIn: Dialog plug-in with same bundle identifier (com.macromates.dialog_plug-in) already loaded On May 2, 2007, at 6:27 PM, Chris Thomas wrote: > Running TextMate directly from the Terminal, as in "/Applications/ > TextMate.app/Contents/MacOS/TextMate", can sometimes coax > additional output to appear. > > Chris > > On May 2, 2007, at 6:52 PM, Brett Terpstra wrote: > >> May 2 16:22:20 TheProfessional crashdump[10011]: mate crashed >> May 2 16:22:20 TheProfessional crashdump[10011]: crash report >> written to: /Users/brett/Library/Logs/CrashReporter/mate.crash.log >> >> Andrew is correct, not much to glean there. >> >> Brett >> >> On May 2, 2007, at 4:26 PM, Allan Odgaard wrote: >> >>> On 2. May 2007, at 23:23, Brett Terpstra wrote: >>> >>>> This is from mate.crash.log, sorry for the long paste: >>> >>> The crash log basically says ?the system function to send a >>> message from mate to TextMate crashed? -- so this says less than >>> the Terminal output. >>> >>> But maybe there is some output (from TextMate) in the system >>> console -- the first message you quoted said the error happened >>> in the server (TextMate), so if that is the case, details would >>> likely have to be found in hte console. >>> >>> >>> ____________________________________________________________________ >>> __ >>> For new threads USE THIS: textmate at 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 at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From throw-away-1 at macromates.com Thu May 3 00:11:18 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Thu, 3 May 2007 02:11:18 +0200 Subject: [TxMt] Re: mate error In-Reply-To: <2336E820-465E-43AB-B308-14DE7D02A069@circlesixdesign.com> References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> <8A7E7E84-908E-45C0-BEEC-7912467139C4@circlesixdesign.com> <227E4B13-BEF5-4ECC-9D84-A5268E53E6E8@macromates.com> <0C0DCB69-7642-455F-8986-02721156DC17@cjack.com> <2336E820-465E-43AB-B308-14DE7D02A069@circlesixdesign.com> Message-ID: On 3. May 2007, at 01:38, Brett Terpstra wrote: > [...] > 2007-05-02 18:36:02.863 TextMate[18174] couldn't setup TextMate > server. Most likely because there already is an instance of TextMate running. That may also explain why mate has problems (sigalling a maybe dead instance?) Try: killall TextMate (after you quit those instances you know about). You can use e.g. ps -auxc|grep TextMate to see if there are any instances still running. From oblivious at subtlegradient.com Thu May 3 00:32:17 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Wed, 2 May 2007 20:32:17 -0400 Subject: [TxMt] Code Completion Help In-Reply-To: References: Message-ID: On May 2, 2007, at 5:07 PM, Oliver Taylor wrote: > I'm having a problem with Code Completion. Here's the deal: > > I've got the completion set-up to complete from a document-parser > and a preference item. The parsed completions still work, but it's > stopped pulling completions from the preference item. I've checked > the item name in the bundle editor and the finder, and even tried > re-creating the completions from scratch, to no avail. > > Deleting the bundle and reinstalling it seems to fix the problem, > but only for a while. I've tried to track down what triggers its > failure, but I can't seem to isolate it. > > Download: http://ollieman.net/files/beta.zip > > If you could, install the beta and in Screenplay Mode type the > following: > > int. location - d > > And attempt to trigger the "Time of Day" auto-complete from the "D" > at the end of the line. > > Any help is appreciated. > > -- Oliver Taylor It works while it's still lowercase, once it goes upcase it doesn't work anymore. thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From throw-away-1 at macromates.com Thu May 3 02:46:41 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Thu, 3 May 2007 04:46:41 +0200 Subject: [TxMt] XCode - Clickable error messages In-Reply-To: <99193443-B5C9-4A73-A3F0-B743EFEEC1AE@bitart.com> References: <429C6234-FBFC-4772-8791-7D4B47A75347@incomumdesign.com> <99193443-B5C9-4A73-A3F0-B743EFEEC1AE@bitart.com> Message-ID: On 5. Apr 2007, at 18:54, Gerd Knops wrote: > On Apr 5, 2007, at 12:26 AM, Allan Odgaard wrote: > >> [...] >> >> Related to this, I have an ASSERT() macro which aborts() and does >> a stack dump from the place where it aborts, this stack dump has >> files and line numbers, and I?ve been pondering making that into >> clickable links -- the format though is not the standard: >> ?file?:?line?:?message?. > > I have done just that, using a small perl postprocessor parsing the > output from the run_xcodebuild.sh, looking for patterns and > replacing them with txmt links. It is kind of ugly, my current > project has source files divided into folders so I devised a small > search routine that descends from TM_PROJECT_DIRECTORY to find the > source file (ignoring _darcs/.svn repositories). Works fairly well, > but just to ugly and specialized to my environment to share. > > Ideally we'd come up with a standard pattern for error messages, > and add that functionality into the xcode stuff. That way anyone > could generate clickable links by just formatting log or error > messages in a certain way. Returning to this subject? the way we deal with it in ScriptMate is by setting a TM_FD variable for the process we launch. This process can then write HTML to that file descriptor, which will be shown as- is (i.e. interpreted) in the HTML output window. This does put a higher burden on the program which wish to have clickable errors, OTOH it allows for nicer formatting of the output (which is often possible when we?re dealing with stack dumps). Would this be a useful implementation for the Xcode runner? Basically that runner would then only need to create a pipe and set the write- end?s file descriptor as an environment variable, for the process we launch (and then start a JS reader process that takes output for the pipe and inserts it in a special div). We could offer a standard filter that greps the program output for ?file?:?line?(:?column?)?:?error? and writes a HTML?yfied version to the $TM_FD file descriptor. From jashugan at gmail.com Thu May 3 03:03:12 2007 From: jashugan at gmail.com (Nithin Reddy) Date: Wed, 2 May 2007 20:03:12 -0700 Subject: [TxMt] Re: Improvements to Objective-C Bundle In-Reply-To: References: <994e7e3c0705020016u4f5cdc03kc7fa3b94aff40417@mail.gmail.com> Message-ID: <994e7e3c0705022003x7ca77890raf6aead15826cddf@mail.gmail.com> Yeah, I knew about that. It doesn't work right. If you have /* */ comment in the block of code you are commenting then it will won't comment out everything after that /* */ comment. Plus, how do you undo it when you want to uncomment the code? Actually how do others disable parts of the code they are not intersted in having executed? I would assume it is a common problem, either that, or I am the only one who doesn't trust their own code. - Nithin On 5/2/07, Jacob Rus wrote: > Nithin Reddy wrote: > > * Comment Code - comments out the current line of code (or the > > selected lines of code), useful for debugging > > * Uncomment code - undoes above > > Try ?/ ;) > > -Jacob > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From throw-away-1 at macromates.com Thu May 3 03:56:34 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Thu, 3 May 2007 05:56:34 +0200 Subject: [TxMt] Re: Improvements to Objective-C Bundle In-Reply-To: <994e7e3c0705022003x7ca77890raf6aead15826cddf@mail.gmail.com> References: <994e7e3c0705020016u4f5cdc03kc7fa3b94aff40417@mail.gmail.com> <994e7e3c0705022003x7ca77890raf6aead15826cddf@mail.gmail.com> Message-ID: <546C3766-D13C-4284-8408-AB943F899EA4@macromates.com> On 3. May 2007, at 05:03, Nithin Reddy wrote: > Yeah, I knew about that. It doesn't work right. If you have /* */ > comment in the block of code you are commenting then it will won't > comment out everything after that /* */ comment. Yeah, /* ? */ doesn?t nest, that?s really a language limitation ? for this reason I am using // as the primary comment character, since that nests nicely. The default for C and Objective-C was having /* ? */ as primary, but I just changed that. FYI this is a preference in the C bundle. > Plus, how do you undo it when you want to uncomment the code? It is a toggle. I.e. just hit ?/ again. > Actually how do others disable parts of the code they are not > intersted in having executed? I would assume it is a common problem, > either that, or I am the only one who doesn't trust their own code. With // as the primary comment character, I think you?ll find ?/ nicer, as you can then comment partially commented regions. But I often make use of #if 0 ? #endif to disable code in C. This also nests nicely and TextMate will render the disabled part as a comment, and it allows you to use #else, for example: #if 0 // old code #else // new code #endif Now you can just change 0 to 01 (or just 1) to switch from the new code back to the old vice versa. From jashugan at gmail.com Thu May 3 04:29:01 2007 From: jashugan at gmail.com (Nithin Reddy) Date: Wed, 2 May 2007 21:29:01 -0700 Subject: [TxMt] Re: Improvements to Objective-C Bundle In-Reply-To: <546C3766-D13C-4284-8408-AB943F899EA4@macromates.com> References: <994e7e3c0705020016u4f5cdc03kc7fa3b94aff40417@mail.gmail.com> <994e7e3c0705022003x7ca77890raf6aead15826cddf@mail.gmail.com> <546C3766-D13C-4284-8408-AB943F899EA4@macromates.com> Message-ID: <994e7e3c0705022129t6b3f58b9r1d91ffcd7f1ad942@mail.gmail.com> > Yeah, /* ? */ doesn't nest, that's really a language > limitation ? for this reason I am using // as the primary comment > character, since that nests nicely. > > The default for C and Objective-C was having /* ? */ as primary, but > I just changed that. FYI this is a preference in the C bundle. I'm enamored with how /* ... */ looks, especially when it spans multiple lines. > > Plus, how do you undo it when you want to uncomment the code? > > It is a toggle. I.e. just hit ?/ again. Thanks didn't know that. > But I often make use of #if 0 ? #endif to disable code in C. This > also nests nicely and TextMate will render the disabled part as a > comment, and it allows you to use #else, for example: > > #if 0 > // old code > #else > // new code > #endif > > Now you can just change 0 to 01 (or just 1) to switch from the new > code back to the old vice versa. Thanks for the tip. In the past I used a different version of this technique: #ifndef NOT_DEF //old code #endif I stopped using it, because in Visual Studio it would left-align any macros, which looked very odd. In any case, I like your way. From chris at cjack.com Thu May 3 04:44:54 2007 From: chris at cjack.com (Chris Thomas) Date: Thu, 3 May 2007 00:44:54 -0400 Subject: [TxMt] XCode - Clickable error messages In-Reply-To: References: <429C6234-FBFC-4772-8791-7D4B47A75347@incomumdesign.com> <99193443-B5C9-4A73-A3F0-B743EFEEC1AE@bitart.com> Message-ID: <0B3C6519-1F2B-47BF-A29E-65ED1031ABEF@cjack.com> On May 2, 2007, at 10:46 PM, Allan Odgaard wrote: > On 5. Apr 2007, at 18:54, Gerd Knops wrote: > >> On Apr 5, 2007, at 12:26 AM, Allan Odgaard wrote: >> >>> [...] >>> >>> Related to this, I have an ASSERT() macro which aborts() and does >>> a stack dump from the place where it aborts, this stack dump has >>> files and line numbers, and I?ve been pondering making that into >>> clickable links -- the format though is not the standard: >>> ?file?:?line?:?message?. >> >> I have done just that, using a small perl postprocessor parsing the >> output from the run_xcodebuild.sh, looking for patterns and >> replacing them with txmt links. It is kind of ugly, my current >> project has source files divided into folders so I devised a small >> search routine that descends from TM_PROJECT_DIRECTORY to find the >> source file (ignoring _darcs/.svn repositories). Works fairly well, >> but just to ugly and specialized to my environment to share. >> >> Ideally we'd come up with a standard pattern for error messages, >> and add that functionality into the xcode stuff. That way anyone >> could generate clickable links by just formatting log or error >> messages in a certain way. > > Returning to this subject? the way we deal with it in ScriptMate is > by setting a TM_FD variable for the process we launch. This process > can then write HTML to that file descriptor, which will be shown as- > is (i.e. interpreted) in the HTML output window. It's an interesting idea. High-bandwidth logging. What if the HTML from the app is corrupt, though? Could screw up rendering, and there's no way to isolate bad HTML within a larger page context. Could do simple validation (checking for correct node nesting), I suppose. > This does put a higher burden on the program which wish to have > clickable errors, OTOH it allows for nicer formatting of the output > (which is often possible when we?re dealing with stack dumps). If you have control over the format of the stack trace, why not make it conform to ?file?:?line?(:?column?)?:?error>>? Chris From a.h.jaffe at gmail.com Thu May 3 06:58:30 2007 From: a.h.jaffe at gmail.com (Andrew Jaffe) Date: Thu, 03 May 2007 07:58:30 +0100 Subject: [TxMt] Re: mate error In-Reply-To: References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> <8A7E7E84-908E-45C0-BEEC-7912467139C4@circlesixdesign.com> <227E4B13-BEF5-4ECC-9D84-A5268E53E6E8@macromates.com> <0C0DCB69-7642-455F-8986-02721156DC17@cjack.com> <2336E820-465E-43AB-B308-14DE7D02A069@circlesixdesign.com> Message-ID: Allan Odgaard wrote: > On 3. May 2007, at 01:38, Brett Terpstra wrote: >> [...] >> 2007-05-02 18:36:02.863 TextMate[18174] couldn't setup TextMate server. > > Most likely because there already is an instance of TextMate running. > That may also explain why mate has problems (sigalling a maybe dead > instance?) > > Try: killall TextMate (after you quit those instances you know about). Hi Alan, No joy (there was only the one obvious instance running)... But a new datum: if I don't have textmate running already, and I try to start it for the first time with mate, I get the following slightly different, error (and the requested file doesn't open, but the previous session does): 2007-05-03 07:51:38.810 mate[4496] Exception raised during posting of notification. Ignored. exception: [NOTE: this exception originated in the server.] *** Object does not implement or has different method signature Also, in this case, "mate" does not actually return to the prompt. Finally, this is PPC 10.4.9. I imagine this must be due to some weird interaction with non-standard stuff, so here's a list of what I've added that might do something strange: terminalmate, blogmate, texmlmate, texslmate, codebrowser. Andrew A From andre at bonhote.org Thu May 3 08:04:10 2007 From: andre at bonhote.org (=?ISO-8859-1?Q?Bonh=F4te_Andr=E9?=) Date: Thu, 3 May 2007 10:04:10 +0200 Subject: [TxMt] Feature request: "Open Terminal here ..." Message-ID: <61328E7D-16C7-4488-BAB5-40B08F8872DB@bonhote.org> Hi Just found something I really miss in TM. Maybe I just didn't find it yet, although it's implemented ;-) Having a project with several subfolders, it would be nice to just right click (or hit a key) to open a terminal window at the current file's location. Is that possible somehow? I have seen "Open "..." with finder.app" and stuff, but no terminal.app. TIA Andr? From graham.ashton at gmail.com Thu May 3 08:09:33 2007 From: graham.ashton at gmail.com (Graham Ashton) Date: Thu, 3 May 2007 09:09:33 +0100 Subject: [TxMt] Feature request: "Open Terminal here ..." In-Reply-To: <61328E7D-16C7-4488-BAB5-40B08F8872DB@bonhote.org> References: <61328E7D-16C7-4488-BAB5-40B08F8872DB@bonhote.org> Message-ID: <7438eebe0705030109l5fef2906j7a299a712143b0b3@mail.gmail.com> On 03/05/07, Bonh?te Andr? wrote: > Just found something I really miss in TM. Maybe I just didn't find it > yet, although it's implemented ;-) Try Ctrl-Shift-O when you've got a file open. To find that I typed Ctrl-T to search the commands available in the current scope. Very handy. Graham From graham.ashton at gmail.com Thu May 3 08:10:06 2007 From: graham.ashton at gmail.com (Graham Ashton) Date: Thu, 3 May 2007 09:10:06 +0100 Subject: [TxMt] Feature request: "Open Terminal here ..." In-Reply-To: <7438eebe0705030109l5fef2906j7a299a712143b0b3@mail.gmail.com> References: <61328E7D-16C7-4488-BAB5-40B08F8872DB@bonhote.org> <7438eebe0705030109l5fef2906j7a299a712143b0b3@mail.gmail.com> Message-ID: <7438eebe0705030110pf1789c8v5242067cb55e1604@mail.gmail.com> On 03/05/07, Graham Ashton wrote: > To find that I typed Ctrl-T to search the commands available in the current > scope. Very handy. Correction, that's Ctrl-Cmd-T. From jon.evans at pobox.com Thu May 3 08:28:44 2007 From: jon.evans at pobox.com (Jon Evans) Date: Thu, 3 May 2007 09:28:44 +0100 Subject: [TxMt] mate error In-Reply-To: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> Message-ID: Hi All, On 1 May 2007, at 01:53, Brett Terpstra wrote: > I just noticed I get this from the command line on both individual > file and directories. > > 2007-04-30 19:52:04.221 mate[5199] An uncaught exception was raised > 2007-04-30 19:52:04.221 mate[5199] [NOTE: this exception originated > in the server.] > *** Object does not implement or has different method signature > 2007-04-30 19:52:04.221 mate[5199] *** Uncaught exception: > [NOTE: this exception originated in > the server.] > *** Object does not implement or has different method signature > Trace/BPT trap > > I just upgraded this morning. Not sure what I've done here... I had an almost identical problem after installing the BlogMate plugin. I uninstalled that plugin and it worked OK again. I found that mate worked fine the first time it was invoked, but then failed every time after that until I restarted TextMate. At the time I meant to post something to the list about it, but it slipped my mind. Sorry... Jon From andre at bonhote.org Thu May 3 08:45:16 2007 From: andre at bonhote.org (=?ISO-8859-1?Q?Bonh=F4te_Andr=E9?=) Date: Thu, 3 May 2007 10:45:16 +0200 Subject: [TxMt] Feature request: "Open Terminal here ..." In-Reply-To: <7438eebe0705030109l5fef2906j7a299a712143b0b3@mail.gmail.com> References: <61328E7D-16C7-4488-BAB5-40B08F8872DB@bonhote.org> <7438eebe0705030109l5fef2906j7a299a712143b0b3@mail.gmail.com> Message-ID: <97BF9391-767A-47EB-BA78-F7EF6E7F7F75@bonhote.org> Wow, thanks ... for both! On 03.05.2007, at 10:09, Graham Ashton wrote: > On 03/05/07, Bonh?te Andr? wrote: >> Just found something I really miss in TM. Maybe I just didn't find it >> yet, although it's implemented ;-) > > Try Ctrl-Shift-O when you've got a file open. > > To find that I typed Ctrl-T to search the commands available in the > current > scope. Very handy. > > Graham > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From a.h.jaffe at gmail.com Thu May 3 09:40:21 2007 From: a.h.jaffe at gmail.com (Andrew Jaffe) Date: Thu, 03 May 2007 10:40:21 +0100 Subject: [TxMt] Re: mate error [BlogMate problem???] In-Reply-To: References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> Message-ID: All, Jon Evans wrote: > On 1 May 2007, at 01:53, Brett Terpstra wrote: > >> I just noticed I get this from the command line on both individual >> file and directories. >> >> 2007-04-30 19:52:04.221 mate[5199] An uncaught exception was raised >> 2007-04-30 19:52:04.221 mate[5199] [NOTE: this exception originated in >> the server.] >> *** Object does not implement or has different method signature >> 2007-04-30 19:52:04.221 mate[5199] *** Uncaught exception: >> [NOTE: this exception originated in the >> server.] >> *** Object does not implement or has different method signature >> Trace/BPT trap >> > > I had an almost identical problem after installing the BlogMate plugin. > I uninstalled that plugin and it worked OK again. I found that mate > worked fine the first time it was invoked, but then failed every time > after that until I restarted TextMate. I can confirm that removing BlogMate fixes the problem on my machine. Andrew From abeyeler at dplanet.ch Thu May 3 09:50:14 2007 From: abeyeler at dplanet.ch (Antoine Beyeler) Date: Thu, 3 May 2007 11:50:14 +0200 Subject: [TxMt] Feature request: "Open Terminal here ..." In-Reply-To: <7438eebe0705030109l5fef2906j7a299a712143b0b3@mail.gmail.com> References: <61328E7D-16C7-4488-BAB5-40B08F8872DB@bonhote.org> <7438eebe0705030109l5fef2906j7a299a712143b0b3@mail.gmail.com> Message-ID: What if you want to use iTerm instead? :-) Antoine On 3 mai 07, at 10:09, Graham Ashton wrote: > On 03/05/07, Bonh?te Andr? wrote: >> Just found something I really miss in TM. Maybe I just didn't find it >> yet, although it's implemented ;-) > > Try Ctrl-Shift-O when you've got a file open. > > To find that I typed Ctrl-T to search the commands available in the > current > scope. Very handy. > > Graham > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From n.kobschaetzki at googlemail.com Thu May 3 09:53:38 2007 From: n.kobschaetzki at googlemail.com (=?ISO-8859-1?Q?Niels_Kobsch=E4tzki?=) Date: Thu, 3 May 2007 11:53:38 +0200 Subject: [TxMt] Feature request: "Open Terminal here ..." In-Reply-To: References: <61328E7D-16C7-4488-BAB5-40B08F8872DB@bonhote.org> <7438eebe0705030109l5fef2906j7a299a712143b0b3@mail.gmail.com> Message-ID: <185E9E34-7538-4555-AD2C-225944A5C0BC@googlemail.com> On May 3, 2007, at 11:50 AM, Antoine Beyeler wrote: > What if you want to use iTerm instead? :-) Wouldn't it work to change the command just from osascript < References: <61328E7D-16C7-4488-BAB5-40B08F8872DB@bonhote.org> <7438eebe0705030109l5fef2906j7a299a712143b0b3@mail.gmail.com> <185E9E34-7538-4555-AD2C-225944A5C0BC@googlemail.com> Message-ID: <6E935F69-22D5-4A1F-BA46-24809CDCB319@dplanet.ch> No. However this did work: osascript < On May 3, 2007, at 11:50 AM, Antoine Beyeler wrote: > >> What if you want to use iTerm instead? :-) > > Wouldn't it work to change the command just from > > osascript < tell application "Terminal" > activate > do script "cd '$TM_PATH'; clear; pwd" > end tell > EOF > > to > osascript < tell application "iTerm" > activate > do script "cd '$TM_PATH'; clear; pwd" > end tell > EOF > > ? > > Niels > > -- > 1942? Wasn't that the year when Columbus discovered America? > -- Beauty & the Geek Season 1 > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From xcambar at gmail.com Thu May 3 10:36:20 2007 From: xcambar at gmail.com (Xavier Cambar) Date: Thu, 3 May 2007 12:36:20 +0200 Subject: [TxMt] Floating Drawer Message-ID: <220B7288-2420-498F-B3D0-F417898AA9C2@gmail.com> Hi, I'm used to TextMate with Full-screen, which is offered by SIMBL, but when in full-screen, the drawer disappears for the screen. In fact, it is still there, but moved to the other ede of the other screen (yes, i have dual-screen). To fix it, I've installed the Plugin from Hetima "The Missing Drawer" which basically includes the drawer into the main panel. But it is realy not convenient when the drawer is not needed, cause I haven't found how to make it disappear... Whatever, this led me to a feature request: a floating drawer. Is there a way to have one? Even better, has anyone already built a plugin or something for that purpose? What do you think of it? A floating drawer, accessible via a shortcut, controlled and navigated from the keyboard, would you take benefit of this feature? Xavier Cambar From throw-away-1 at macromates.com Thu May 3 11:39:51 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Thu, 3 May 2007 13:39:51 +0200 Subject: [TxMt] Floating Drawer In-Reply-To: <220B7288-2420-498F-B3D0-F417898AA9C2@gmail.com> References: <220B7288-2420-498F-B3D0-F417898AA9C2@gmail.com> Message-ID: <5BFB41B3-3E19-496B-A842-DB9440739779@macromates.com> On 3. May 2007, at 12:36, Xavier Cambar wrote: > [...] What do you think of it? A floating drawer, accessible via a > shortcut, controlled and navigated from the keyboard, would you > take benefit of this feature? Have you tried ?T? From throw-away-1 at macromates.com Thu May 3 11:42:52 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Thu, 3 May 2007 13:42:52 +0200 Subject: [TxMt] Spell checking using Google In-Reply-To: References: <5130B0E7-39E3-4212-9962-9B3BD64D5C0A@gmail.com> <79FA4E1A-F652-4DDE-9474-068EE9F368C6@eva.mpg.de> <7AF5A43A-7C45-4175-AA1E-7CAD31758049@eva.mpg.de> Message-ID: <592C6290-38B5-43B5-82C6-A67F50220394@macromates.com> On 2. May 2007, at 10:23, Hans-Joerg Bibiko wrote: > 1) ESC behaviour > If I press ESC while the pull-down menu is shown it takes Google's > first suggestion. By my opinion it's more logically that pressing > ESC will change nothing. Thus I wrote: > ... > res = TextMate::UI.menu(items.flatten) > correction = (res) ? res['string'] : org > ... Actually, I think escape should abort the entire thing. > 2) \n\n problem > There's is still the problem if the selected text contains '\n\n' > I managed it by relpacing all \n with a non-used character I cannot reproduce this. What text are you testing with? > 3) Google returns only one suggestion >> When there is only one suggestion, the command uses that, and >> makes the word a tab-stop. > By my opinion it would be better to show always a pull-down menu > with the original and the suggestion. Google hasn't always right. hmm? you can always undo. If Google is right >50% of the time, I think always accepting, and require an undo, is better than showing a pop-up. > 4) >> Personally I think the menu is generally not wanted, so that part >> should probably be removed (and the first suggestion should always >> be picked). > As you mentioned the popping up of many pull-down menus is a bit > confusing because I don't know which word is currently checked. > But how about that way: > > - If a single word will be checked - same behaviour (except the > command doesn't return a snippet; it returns it as exit_replace_text) > > - If a text is selected meaning at least one space is in it the > command only returns a snippet of misspelled word without any > changes. After that you can navigate with TAB through the snippet > (misspelled words) and if you find a really misspelled word you can > invoke the command again and so forth. Yes, this is probably a desired behavior most of the time. > 5) > For security reason the command returns the snippet: new_str + "${0:}" Huh? From throw-away-1 at macromates.com Thu May 3 11:46:01 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Thu, 3 May 2007 13:46:01 +0200 Subject: [TxMt] Re: mate error [BlogMate problem???] In-Reply-To: References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> Message-ID: On 3. May 2007, at 11:40, Andrew Jaffe wrote: > [...] > I can confirm that removing BlogMate fixes the problem on my machine. I see someone forgot to read http://macromates.com/wiki/ Troubleshooting/101 ? ?Is the problem local?? ;) Okay, likely BlogMate uses the default connection (NSConnection) which prevents TextMate itself to vend the mate server object using this connection. Todd, if you?re reading this: can you confirm? If so, just do [NSConnection new] to get a new connection instead of using the default one. From throw-away-1 at macromates.com Thu May 3 11:51:49 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Thu, 3 May 2007 13:51:49 +0200 Subject: [TxMt] XCode - Clickable error messages In-Reply-To: <0B3C6519-1F2B-47BF-A29E-65ED1031ABEF@cjack.com> References: <429C6234-FBFC-4772-8791-7D4B47A75347@incomumdesign.com> <99193443-B5C9-4A73-A3F0-B743EFEEC1AE@bitart.com> <0B3C6519-1F2B-47BF-A29E-65ED1031ABEF@cjack.com> Message-ID: On 3. May 2007, at 06:44, Chris Thomas wrote: >> Returning to this subject? the way we deal with it in ScriptMate >> is by setting a TM_FD variable for the process we launch. This >> process can then write HTML to that file descriptor, which will be >> shown as-is (i.e. interpreted) in the HTML output window. > It's an interesting idea. High-bandwidth logging. What if the HTML > from the app is corrupt, though? Could screw up rendering, and > there's no way to isolate bad HTML within a larger page context. > Could do simple validation (checking for correct node nesting), I > suppose. I think it?s the responsibility of the sending app to guarantee valid HTML, similar to how we also expect it to send valid UTF-8 sequences etc. >> This does put a higher burden on the program which wish to have >> clickable errors, OTOH it allows for nicer formatting of the >> output (which is often possible when we?re dealing with stack dumps). > If you have control over the format of the stack trace, why not > make it conform to ?file?:?line?(:?column?)?:?error>>? Mainly for the nicer presentation. But I guess moving presentation to the app which produce the stack dump (or similar) is not an ideal design decision. From fredb7 at gmail.com Thu May 3 12:00:55 2007 From: fredb7 at gmail.com (Fred B) Date: Thu, 3 May 2007 14:00:55 +0200 Subject: [TxMt] Feature request: "Open Terminal here ..." In-Reply-To: References: <61328E7D-16C7-4488-BAB5-40B08F8872DB@bonhote.org> <7438eebe0705030109l5fef2906j7a299a712143b0b3@mail.gmail.com> Message-ID: <9c31463d0705030500h5531f828g5dd28e06828dfc0a@mail.gmail.com> On 5/3/07, Antoine Beyeler wrote: > What if you want to use iTerm instead? :-) Here is the one I use: if [[ -d $TM_SELECTED_FILE ]]; then TM_PATH="$TM_SELECTED_FILE" elif [[ -f $TM_SELECTED_FILE ]]; then TM_PATH="`dirname "$TM_SELECTED_FILE"`" else TM_PATH="`dirname "$TM_FILEPATH"`" fi osascript < Hi there, Sorry to raise an old question, but I can't find a definitive answer in the archive - is it possible to turn off the tab bar? In a previous post (Re: [TxMt] new beta, in Dec, 2004) Allan said, in a rersponse to a question about hiding the tab/status bars: > > Why remove the option to show/hide tab/status-bar ? > > I didn't thought anyone would actually use them, and if possible, I'd > like to enforce that they're always enabled (since I'll rely more on > these elements in the future). > > I can bring back the option to hide the tab bar. Did this ever get brought back in? Is it a 'hidden' preference that can be accessed? I never use the tab bar and would like to be able to toggle it off if I can. Thanks, Nigel From bibiko at eva.mpg.de Thu May 3 12:25:45 2007 From: bibiko at eva.mpg.de (=?ISO-8859-1?Q?Hans-J=F6rg_Bibiko?=) Date: Thu, 3 May 2007 14:25:45 +0200 Subject: [TxMt] Spell checking using Google In-Reply-To: <592C6290-38B5-43B5-82C6-A67F50220394@macromates.com> References: <5130B0E7-39E3-4212-9962-9B3BD64D5C0A@gmail.com> <79FA4E1A-F652-4DDE-9474-068EE9F368C6@eva.mpg.de> <7AF5A43A-7C45-4175-AA1E-7CAD31758049@eva.mpg.de> <592C6290-38B5-43B5-82C6-A67F50220394@macromates.com> Message-ID: <7A96CFB2-9D89-4097-8B9A-6FCA428C3C64@eva.mpg.de> On 03.05.2007, at 13:42, Allan Odgaard wrote: > On 2. May 2007, at 10:23, Hans-Joerg Bibiko wrote: > >> 1) ESC behaviour >> If I press ESC while the pull-down menu is shown it takes Google's >> first suggestion. By my opinion it's more logically that pressing >> ESC will change nothing. Thus I wrote: >> ... >> res = TextMate::UI.menu(items.flatten) >> correction = (res) ? res['string'] : org >> ... > > Actually, I think escape should abort the entire thing. I agree, but if you use my way it does the same. > >> 2) \n\n problem >> There's is still the problem if the selected text contains '\n\n' >> I managed it by relpacing all \n with a non-used character > > I cannot reproduce this. What text are you testing with? I was wrong. Not \n\n is the problem but a line like " \n" or "\t\n". If I don't replace the \n the snippet matching is wrong after such a line. German example (TM_GSPELL_LANG = de) -comment out str = str.gsub(/\n/, "?") in my script Text: Dies ist ein Tesst.\n \n Dies istt ein Test.\n (second line is SPACE\n) invoke the script Tesst is highlighted, press TAB and now 'tt e' highlighted instead of istt. If you replace \n everything is fine. > >> 3) Google returns only one suggestion >>> When there is only one suggestion, the command uses that, and >>> makes the word a tab-stop. >> By my opinion it would be better to show always a pull-down menu >> with the original and the suggestion. Google hasn't always right. > > hmm? you can always undo. If Google is right >50% of the time, I > think always accepting, and require an undo, is better than showing > a pop-up. OK - undo is also fine ;) >> 5) >> For security reason the command returns the snippet: new_str + >> "${0:}" > > Huh? What do you mean with 'Huh?'? Huh - I forgot it or I don't understand why? If the second is right: If you don't write + "${0:}" and you come to last misspelled word and press TAB you will replace the last highlighted word with TAB instead of jumping to the end. You don't know that this word is last misspelled word. ;) Attached the modified script. Hans -------------- next part -------------- A non-text attachment was scrubbed... Name: Google Spell Check Selection : Word.tmCommand Type: application/octet-stream Size: 2963 bytes Desc: not available URL: -------------- next part -------------- From xcambar at gmail.com Thu May 3 13:41:38 2007 From: xcambar at gmail.com (Xavier Cambar) Date: Thu, 3 May 2007 15:41:38 +0200 Subject: [TxMt] Floating Drawer In-Reply-To: <5BFB41B3-3E19-496B-A842-DB9440739779@macromates.com> References: <220B7288-2420-498F-B3D0-F417898AA9C2@gmail.com> <5BFB41B3-3E19-496B-A842-DB9440739779@macromates.com> Message-ID: <9A52E7FE-06E6-4D43-B680-EADD4734D283@gmail.com> Le 3 mai 07 ? 13:39, Allan Odgaard a ?crit : > > Have you tried ?T? Yes, I did, and it's quite unappropriate because it displays an unordered listing of files. Well, in fact it displays an alphanumerically ordered one, but what I was talking about was more a tree list of files, so I can navigate files and folders for the right item and maintain a coherent mental perception of it. It's quite perturbating to move from a navigating system to another, and this is what ?T provides, for someone used to the drawer. My proposal is: a project drawer embedded in a separate window/panel. From oblivious at subtlegradient.com Thu May 3 13:52:11 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Thu, 3 May 2007 09:52:11 -0400 Subject: [TxMt] The tab bar In-Reply-To: <11698D41-441F-45DF-A86C-021EACB6AAAA@greenlemur.com> References: <11698D41-441F-45DF-A86C-021EACB6AAAA@greenlemur.com> Message-ID: <97C86504-E720-41CF-8A5B-B89A7C6DB7CC@subtlegradient.com> On May 3, 2007, at 8:18 AM, Nigel Green wrote: > Hi there, > > Sorry to raise an old question, but I can't find a definitive > answer in the archive - is it possible to turn off the tab bar? In > a previous post (Re: [TxMt] new beta, in Dec, 2004) Allan said, in > a rersponse to a question about hiding the tab/status bars: > > > > Why remove the option to show/hide tab/status-bar ? > > > > I didn't thought anyone would actually use them, and if possible, > I'd > > like to enforce that they're always enabled (since I'll rely more on > > these elements in the future). > > > > I can bring back the option to hide the tab bar. > > > Did this ever get brought back in? Is it a 'hidden' preference that > can be accessed? I never use the tab bar and would like to be able > to toggle it off if I can. > > Thanks, > Nigel You could always hack the nibs. thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From nigel at greenlemur.com Thu May 3 14:15:06 2007 From: nigel at greenlemur.com (Nigel Green) Date: Thu, 3 May 2007 15:15:06 +0100 Subject: [TxMt] The tab bar In-Reply-To: <97C86504-E720-41CF-8A5B-B89A7C6DB7CC@subtlegradient.com> References: <11698D41-441F-45DF-A86C-021EACB6AAAA@greenlemur.com> <97C86504-E720-41CF-8A5B-B89A7C6DB7CC@subtlegradient.com> Message-ID: <1496C5DD-AACE-4ABF-830D-7C123CD65799@greenlemur.com> Great stuff. I hadn't realised it was possible to hack the UI at that level before. Thanks, Nigel On 3 May 2007, at 14:52, Thomas Aylott (subtleGradient) wrote: > On May 3, 2007, at 8:18 AM, Nigel Green wrote: > >> Hi there, >> >> Sorry to raise an old question, but I can't find a definitive >> answer in the archive - is it possible to turn off the tab bar? In >> a previous post (Re: [TxMt] new beta, in Dec, 2004) Allan said, in >> a rersponse to a question about hiding the tab/status bars: >> >> > > Why remove the option to show/hide tab/status-bar ? >> > >> > I didn't thought anyone would actually use them, and if >> possible, I'd >> > like to enforce that they're always enabled (since I'll rely >> more on >> > these elements in the future). >> > >> > I can bring back the option to hide the tab bar. >> >> >> Did this ever get brought back in? Is it a 'hidden' preference >> that can be accessed? I never use the tab bar and would like to be >> able to toggle it off if I can. >> >> Thanks, >> Nigel > > You could always hack the nibs. > > thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate Nigel Green ----------- Office 19, Block A, Bletchley Park Science and Innovation Centre Milton Keynes MK6 3EB t: 01908 363452 m: 07855 488507 From fxn at hashref.com Thu May 3 14:14:56 2007 From: fxn at hashref.com (Xavier Noria) Date: Thu, 3 May 2007 16:14:56 +0200 Subject: [TxMt] Floating Drawer In-Reply-To: <9A52E7FE-06E6-4D43-B680-EADD4734D283@gmail.com> References: <220B7288-2420-498F-B3D0-F417898AA9C2@gmail.com> <5BFB41B3-3E19-496B-A842-DB9440739779@macromates.com> <9A52E7FE-06E6-4D43-B680-EADD4734D283@gmail.com> Message-ID: <4AEF515E-D0EC-4A0A-9FED-BF6F001868C6@hashref.com> On May 3, 2007, at 3:41 PM, Xavier Cambar wrote: > Le 3 mai 07 ? 13:39, Allan Odgaard a ?crit : >> >> Have you tried ?T? > > Yes, I did, and it's quite unappropriate because it displays an > unordered listing of files. Well, in fact it displays an > alphanumerically ordered one, but what I was talking about was more > a tree list of files, so I can navigate files and folders for the > right item and maintain a coherent mental perception of it. > > It's quite perturbating to move from a navigating system to > another, and this is what ?T provides, for someone used to the > drawer. Yeah, ?T is provided as a filter, not a browser. For occasional browsing with megazoomer perhaps switching on and off via ?? would be the closest solution as of today. -- fxn From lists at arachnedesign.net Thu May 3 14:29:30 2007 From: lists at arachnedesign.net (Steve Lianoglou) Date: Thu, 3 May 2007 10:29:30 -0400 Subject: [TxMt] Floating Drawer In-Reply-To: <9A52E7FE-06E6-4D43-B680-EADD4734D283@gmail.com> References: <220B7288-2420-498F-B3D0-F417898AA9C2@gmail.com> <5BFB41B3-3E19-496B-A842-DB9440739779@macromates.com> <9A52E7FE-06E6-4D43-B680-EADD4734D283@gmail.com> Message-ID: Hi Xavier, > It's quite perturbating to move from a navigating system to > another, and this is what ?T provides, for someone used to the > drawer. > > My proposal is: a project drawer embedded in a separate window/panel. From what I understand, the drawer is going to be seeing an overhaul on TextMate 2.0 (ETA is sometime *after* the Leopard release). Until then, you've got to work with what you have. If you want my opinion, though, I'd suggest to just not use TextMate in some hacked Full Screen mode ... "Full Screen"-edness is something that's waaaayyy too overrated, anyway ;-) -steve From gerti-textmate at bitart.com Thu May 3 14:37:25 2007 From: gerti-textmate at bitart.com (Gerd Knops) Date: Thu, 3 May 2007 09:37:25 -0500 Subject: [TxMt] XCode - Clickable error messages In-Reply-To: References: <429C6234-FBFC-4772-8791-7D4B47A75347@incomumdesign.com> <99193443-B5C9-4A73-A3F0-B743EFEEC1AE@bitart.com> Message-ID: On May 2, 2007, at 9:46 PM, Allan Odgaard wrote: > On 5. Apr 2007, at 18:54, Gerd Knops wrote: > >> On Apr 5, 2007, at 12:26 AM, Allan Odgaard wrote: >> >>> [...] >>> >>> Related to this, I have an ASSERT() macro which aborts() and does >>> a stack dump from the place where it aborts, this stack dump has >>> files and line numbers, and I?ve been pondering making that into >>> clickable links -- the format though is not the standard: >>> ?file?:?line?:?message?. >> >> I have done just that, using a small perl postprocessor parsing >> the output from the run_xcodebuild.sh, looking for patterns and >> replacing them with txmt links. It is kind of ugly, my current >> project has source files divided into folders so I devised a small >> search routine that descends from TM_PROJECT_DIRECTORY to find the >> source file (ignoring _darcs/.svn repositories). Works fairly >> well, but just to ugly and specialized to my environment to share. >> >> Ideally we'd come up with a standard pattern for error messages, >> and add that functionality into the xcode stuff. That way anyone >> could generate clickable links by just formatting log or error >> messages in a certain way. > > Returning to this subject? the way we deal with it in ScriptMate is > by setting a TM_FD variable for the process we launch. This process > can then write HTML to that file descriptor, which will be shown as- > is (i.e. interpreted) in the HTML output window. You know, I still haven't forgiven you for removing that output option where one could enter a pattern. Since then my tools spend a lot more code on formatting output then on getting their job done. And now you want me to replace NSLog(@"I am here") with something that opens some stupid file handle, then has to write (to get a line break) something like NSLog(@"I am here")? I hope you are kidding! BTW for long-running processes the output window needs a clear button/ shortcut/context menu entry. Gerd From dsnyder at txstate.edu Thu May 3 15:08:35 2007 From: dsnyder at txstate.edu (David F. Snyder) Date: Thu, 03 May 2007 10:08:35 -0500 Subject: [TxMt] LaTeX bundle and the exam package In-Reply-To: <566C17A2-22B4-4E5D-93AE-4D78281B529F@hanover.edu> Message-ID: On 5/2/07 7:49 AM, "Charilaos Skiadas" wrote: > On May 1, 2007, at 3:22 AM, David F. Snyder wrote: > >> Hi >> >> I am hoping someone has solved this problem. >> >> I use latekmk.pl script as $TM_TEX_COMPILER to compile my LaTeX >> documents >> from within Textmate and it works wonderfully on every document >> I've made, >> except for any document that uses the exam package. >> >> The problem is small: I must execute cmd-R twice to get it to >> compile the >> number of points correctly. This is only a problem within Textmate; >> if I run >> the script from the command line it works perfectly. And while it >> is a small >> problem it is vexing, since latexmk.pl was made specifically to >> deal with >> the need to run LaTeX etc. multiple times. >> > I wonder, whether the latexmk.pl script that runs from the command > line is the same as the one that runs from within TM. I think TM will > run its own version of latexmk.pl, which I updated recently. But > perhaps you have another latexmk.pl? When you use latexmk.pl from the > command line, how do you invoke it, and what is the value, if any, > returned by "which latexmk.pl"? > The only version of latexmk.pl installed is in the LaTeX bundle's subdirectory ./Support/bin/ I update my bundle packages automatically using the GetBundle bundle. I manually updated just in case, the same problem persists. To run it from the command line, I actually just pasted the absolute path into the command line. So the command looks like: perl -pdf /Applications/TextMate.app/Contents/SharedSupport/Bundles/Latex.tmbundle/Sup port/bin/latexmk.pl myfile.tex Yesterday my final exam required three cmd-R's to generate the grading table. Perhaps I need to up the upperbound of compiles allowed as the default in latexmk.pl? Or perhaps the script doesn't use pdflatex, which is what the -pdf flag does for latexmk.pl >> My guess is that there is a bug in either cmd-R (though I can't >> find one) >> or somewhere in the bowels of Textmate. >> >> Seeing as how I used this package frequently, almost daily, I'm >> guessing >> that this need to cmd-R twice will cost me about an hour and a half >> of my >> life in the coming year. >> >> Best wishes >> ---- >> David > > Haris Skiadas > Department of Mathematics and Computer Science > Hanover College > > > > > Best wishes ---- David F. Snyder, Ph. D. Associate Professor of Mathematics Department of Mathematics Texas State University 601 University Drive San Marcos, TX 78666 (512)245-3419 My office (512)245-2551 Department Office (512)245-3425 fax dsnyder at txstate.edu From xcambar at gmail.com Thu May 3 15:11:42 2007 From: xcambar at gmail.com (Xavier Cambar) Date: Thu, 3 May 2007 17:11:42 +0200 Subject: [TxMt] Floating Drawer In-Reply-To: References: <220B7288-2420-498F-B3D0-F417898AA9C2@gmail.com> <5BFB41B3-3E19-496B-A842-DB9440739779@macromates.com> <9A52E7FE-06E6-4D43-B680-EADD4734D283@gmail.com> Message-ID: <2EA5DB4C-9FA0-42B0-947F-AD1E15D6DF9D@gmail.com> Le 3 mai 07 ? 16:29, Steve Lianoglou a ?crit : > If you want my opinion, though, I'd suggest to just not use > TextMate in some hacked Full Screen mode ... "Full Screen"-edness > is something that's waaaayyy too overrated, anyway ;-) > > -steve Generally speaking, I agree. But as many of us using TM in a professional way (ok, I'm still a student, let's call this "professional"...), I intend to work in an environment as much distraction-free as possible. And, in my opinion, full-screen windowing can be helpful sometines to achieve this goal, specifically with ext-editing apps. Xavier From chris at cjack.com Thu May 3 15:38:42 2007 From: chris at cjack.com (Chris Thomas) Date: Thu, 3 May 2007 11:38:42 -0400 Subject: [TxMt] XCode - Clickable error messages In-Reply-To: References: <429C6234-FBFC-4772-8791-7D4B47A75347@incomumdesign.com> <99193443-B5C9-4A73-A3F0-B743EFEEC1AE@bitart.com> Message-ID: <57C6CFD1-E732-402A-834E-1F832266D12A@cjack.com> On May 3, 2007, at 10:37 AM, Gerd Knops wrote: > And now you want me to replace NSLog(@"I am here") No, the idea is that this would be optional, for extended formatting. It would be fine to continue to use NSLog normally. Chris From grant at antiflux.org Thu May 3 16:07:56 2007 From: grant at antiflux.org (Grant Hollingworth) Date: Thu, 3 May 2007 10:07:56 -0600 Subject: [TxMt] The tab bar In-Reply-To: <11698D41-441F-45DF-A86C-021EACB6AAAA@greenlemur.com> References: <11698D41-441F-45DF-A86C-021EACB6AAAA@greenlemur.com> Message-ID: <20070503160756.GE3574@antiflux.org> * Nigel Green [2007-05-03 06:16]: >Sorry to raise an old question, but I can't find a definitive answer >in the archive - is it possible to turn off the tab bar? defaults write com.macromates.textmate OakProjectWindowShowTabBarEnabled false I ended up turning them back on after a while. Note that it's not enough to do another defaults write with true; you need to use defaults delete to remove the key entirely. From mjijackson at gmail.com Thu May 3 17:31:53 2007 From: mjijackson at gmail.com (Michael Jackson) Date: Thu, 3 May 2007 11:31:53 -0600 Subject: [TxMt] Floating Drawer In-Reply-To: <4AEF515E-D0EC-4A0A-9FED-BF6F001868C6@hashref.com> References: <220B7288-2420-498F-B3D0-F417898AA9C2@gmail.com> <5BFB41B3-3E19-496B-A842-DB9440739779@macromates.com> <9A52E7FE-06E6-4D43-B680-EADD4734D283@gmail.com> <4AEF515E-D0EC-4A0A-9FED-BF6F001868C6@hashref.com> Message-ID: <71C34FA4-6E9B-441F-83A1-DC873F88EBA0@gmail.com> On May 3, 2007, at 8:14 AM, Xavier Noria wrote: > On May 3, 2007, at 3:41 PM, Xavier Cambar wrote: > >> Le 3 mai 07 ? 13:39, Allan Odgaard a ?crit : >>> >>> Have you tried ?T? >> >> Yes, I did, and it's quite unappropriate because it displays an >> unordered listing of files. Well, in fact it displays an >> alphanumerically ordered one, but what I was talking about was >> more a tree list of files, so I can navigate files and folders for >> the right item and maintain a coherent mental perception of it. >> >> It's quite perturbating to move from a navigating system to >> another, and this is what ?T provides, for someone used to the >> drawer. > > Yeah, ?T is provided as a filter, not a browser. For occasional > browsing with megazoomer perhaps switching on and off via ?? > would be the closest solution as of today. > > -- fxn Speaking of editing in full screen mode with megazoomer, how do you get the ?? to zoom the window properly? Whenever I try it, I just get a return entered in the text I'm currently editing. By the way, I think a floating drawer would be a great idea. Thanks, Michael From itod at mac.com Thu May 3 17:41:53 2007 From: itod at mac.com (Todd Ditchendorf) Date: Thu, 3 May 2007 10:41:53 -0700 Subject: [TxMt] Re: mate error [BlogMate problem???] In-Reply-To: References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> Message-ID: <3F6B32C6-CCC9-476B-80E5-D9BDA0108C54@mac.com> yikes! sorry everyone, just saw this message. > Okay, likely BlogMate uses the default connection (NSConnection) > which prevents TextMate itself to vend the mate server object using > this connection. yes, this is exactly what blogmate does. > > Todd, if you?re reading this: can you confirm? If so, just do > [NSConnection new] to get a new connection instead of using the > default one. apologies everyone!!! this was totally my (blogmate's) fault. anyone using version 0.5 thru 0.5.2 is likely to experience this problem. I won't have an opportunity to fix and test this until tonight. If you are experiencing this problem, you can uninstall blogmate by deleting the BlogMate.tmplugin for now. Very sorry to all those affected! :( Todd Ditchendorf Scandalous Software - Mac XML Developer Tools http://scan.dalo.us On May 3, 2007, at 4:46 AM, Allan Odgaard wrote: > On 3. May 2007, at 11:40, Andrew Jaffe wrote: > >> [...] >> I can confirm that removing BlogMate fixes the problem on my machine. > > I see someone forgot to read http://macromates.com/wiki/ > Troubleshooting/101 ? ?Is the problem local?? ;) > > Okay, likely BlogMate uses the default connection (NSConnection) > which prevents TextMate itself to vend the mate server object using > this connection. > > Todd, if you?re reading this: can you confirm? If so, just do > [NSConnection new] to get a new connection instead of using the > default one. > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From itod at mac.com Thu May 3 17:44:51 2007 From: itod at mac.com (Todd Ditchendorf) Date: Thu, 3 May 2007 10:44:51 -0700 Subject: [TxMt] Re: mate error In-Reply-To: References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> <8A7E7E84-908E-45C0-BEEC-7912467139C4@circlesixdesign.com> <227E4B13-BEF5-4ECC-9D84-A5268E53E6E8@macromates.com> <0C0DCB69-7642-455F-8986-02721156DC17@cjack.com> <2336E820-465E-43AB-B308-14DE7D02A069@circlesixdesign.com> Message-ID: <5C32D429-3688-4387-AD86-0CF87B77AB80@mac.com> These errors are totally BlogMate's fault. See other thread in this list. Apologies to all! will have a chance to fix and test tonight. for now you can delete BlogMate.tmplugin to fix. mea culpa. sorry guys :( Todd Ditchendorf Scandalous Software - Mac XML Developer Tools http://scan.dalo.us On May 2, 2007, at 11:58 PM, Andrew Jaffe wrote: > Allan Odgaard wrote: >> On 3. May 2007, at 01:38, Brett Terpstra wrote: >>> [...] >>> 2007-05-02 18:36:02.863 TextMate[18174] couldn't setup TextMate >>> server. >> Most likely because there already is an instance of TextMate >> running. That may also explain why mate has problems (sigalling a >> maybe dead instance?) >> Try: killall TextMate (after you quit those instances you know >> about). > > Hi Alan, > > No joy (there was only the one obvious instance running)... > > But a new datum: if I don't have textmate running already, and I > try to start it for the first time with mate, I get the following > slightly different, error (and the requested file doesn't open, but > the previous session does): > > 2007-05-03 07:51:38.810 mate[4496] Exception raised during posting > of notification. Ignored. exception: [NOTE: this exception > originated in the server.] > *** Object does not implement or has different method signature > > Also, in this case, "mate" does not actually return to the prompt. > > Finally, this is PPC 10.4.9. > > I imagine this must be due to some weird interaction with non- > standard stuff, so here's a list of what I've added that might do > something strange: terminalmate, blogmate, texmlmate, texslmate, > codebrowser. > > Andrew > > > A > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From oliver at ollieman.net Thu May 3 17:45:24 2007 From: oliver at ollieman.net (Oliver Taylor) Date: Thu, 3 May 2007 10:45:24 -0700 Subject: [TxMt] Re: Code Completion Help Message-ID: <8F9D167A-FE5E-491F-95F8-7AB70722891E@ollieman.net> >> I've got the completion set-up to complete from a document-parser >> and a preference item. The parsed completions still work, but it's >> stopped pulling completions from the preference item. I've checked >> the item name in the bundle editor and the finder, and even tried >> re-creating the completions from scratch, to no avail. > > It works while it's still lowercase, once it goes upcase it doesn't > work anymore. > > thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors Yes, you need to be matching lowercase letters. But sometimes the match fails anyway. I just tested again and it seems to be working. This is the worst kind of bug, one that pops up randomly. I'll try to nail it down more specifically and get back to you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From rabbitblue at gmail.com Thu May 3 18:10:18 2007 From: rabbitblue at gmail.com (Rabbit) Date: Thu, 3 May 2007 11:10:18 -0700 Subject: [TxMt] TextMate Apple + Enter doesn't work Message-ID: <828fe8650705031110m7f5bd489ha0a67c256cb7935@mail.gmail.com> Hey all. I just downloaded version 1.5.5 (1368) on OS 10.4.9. 1. Apple + Enter no longer moves the cursor down one line. 2. The ERB tag creator no longer works (I believe it was CTRL + Z) Any ideas? From james at grayproductions.net Thu May 3 18:17:25 2007 From: james at grayproductions.net (James Edward Gray II) Date: Thu, 3 May 2007 13:17:25 -0500 Subject: [TxMt] TextMate Apple + Enter doesn't work In-Reply-To: <828fe8650705031110m7f5bd489ha0a67c256cb7935@mail.gmail.com> References: <828fe8650705031110m7f5bd489ha0a67c256cb7935@mail.gmail.com> Message-ID: <0B4D2ACC-0DF9-4D21-953D-B7E66555B665@grayproductions.net> On May 3, 2007, at 1:10 PM, Rabbit wrote: > 2. The ERB tag creator no longer works (I believe it was CTRL + Z) From the release notes: [NEW] The Ruby bundle has a new snippet to generate ERb?s <% ? %> and <%= ? %> tags. Both tags are available via control > (?>). First press will insert <%= ? %> (optionally using the current selection as the content). A second press will remove/add the equal sign. This depreciates the control X (?X) and control Z (?Z) snippets from the Rails bundle and they will be removed in the future. This feature was designed by the ANSI TextMate Standards Committee. (James Edward Gray II) James Edward Gray II From David.Watson at nasmedical.com Thu May 3 18:25:25 2007 From: David.Watson at nasmedical.com (David Watson) Date: Thu, 3 May 2007 14:25:25 -0400 Subject: [TxMt] PerlTidy on TM 1.5.5 (1383) Message-ID: Hi Folks: I just installed TM 1.5.5 (1383). I have perltidy installed in /usr/bin: ls -lr /usr/bin/perltidy -r-xr-xr-x 1 root wheel 97203 May 3 13:46 /usr/bin/perltidy When I execute tidy from the perl bundle in TM, I get: Couldn't find perltidy Perltidy is available from here. Locations searched: /Applications/TextMate.app/Contents/SharedSupport/Support/bin/CocoaDialo g.app/Contents/MacOS /bin /sbin /usr/bin /usr/sbin /Applications/TextMate.app/Contents/SharedSupport/Support/bin I'm not sure why TM doesn't see perltidy in /usr/bin. Does anyone know how to fix this? Thanks, David From itod at mac.com Thu May 3 18:47:50 2007 From: itod at mac.com (Todd Ditchendorf) Date: Thu, 3 May 2007 11:47:50 -0700 Subject: [TxMt] Re: mate error [BlogMate problem???] In-Reply-To: <3F6B32C6-CCC9-476B-80E5-D9BDA0108C54@mac.com> References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> <3F6B32C6-CCC9-476B-80E5-D9BDA0108C54@mac.com> Message-ID: I've uploaded BlogMate 0.5.3 which should fix this problem. http://ditchnet.org/blogmate Sincerest apologies to TextMate community. this was a rather grievous error on my part. I know your time is valuable, sorry to have wasted the time of so many tracking down this issue. Please check out the new version and confirm this fixes the problem thanks, Todd Ditchendorf Scandalous Software - Mac XML Developer Tools http://scan.dalo.us On May 3, 2007, at 10:41 AM, Todd Ditchendorf wrote: > yikes! sorry everyone, just saw this message. > >> Okay, likely BlogMate uses the default connection (NSConnection) >> which prevents TextMate itself to vend the mate server object >> using this connection. > > yes, this is exactly what blogmate does. > >> >> Todd, if you?re reading this: can you confirm? If so, just do >> [NSConnection new] to get a new connection instead of using the >> default one. > > apologies everyone!!! this was totally my (blogmate's) fault. > anyone using version 0.5 thru 0.5.2 is likely to experience this > problem. > > I won't have an opportunity to fix and test this until tonight. > > If you are experiencing this problem, you can uninstall blogmate by > deleting the BlogMate.tmplugin for now. > > Very sorry to all those affected! :( > > > Todd Ditchendorf > > Scandalous Software - Mac XML Developer Tools > http://scan.dalo.us > > > > On May 3, 2007, at 4:46 AM, Allan Odgaard wrote: > >> On 3. May 2007, at 11:40, Andrew Jaffe wrote: >> >>> [...] >>> I can confirm that removing BlogMate fixes the problem on my >>> machine. >> >> I see someone forgot to read http://macromates.com/wiki/ >> Troubleshooting/101 ? ?Is the problem local?? ;) >> >> Okay, likely BlogMate uses the default connection (NSConnection) >> which prevents TextMate itself to vend the mate server object >> using this connection. >> >> Todd, if you?re reading this: can you confirm? If so, just do >> [NSConnection new] to get a new connection instead of using the >> default one. >> >> >> _____________________________________________________________________ >> _ >> For new threads USE THIS: textmate at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From robert_ullrey at mac.com Thu May 3 18:48:07 2007 From: robert_ullrey at mac.com (Robert Ullrey) Date: Thu, 03 May 2007 11:48:07 -0700 Subject: [TxMt] Re: mate error In-Reply-To: <5C32D429-3688-4387-AD86-0CF87B77AB80@mac.com> References: <26895838-4654-4B4F-A679-6E69CAFD4C43@circlesixdesign.com> <8A7E7E84-908E-45C0-BEEC-7912467139C4@circlesixdesign.com> <227E4B13-BEF5-4ECC-9D84-A5268E53E6E8@macromates.com> <0C0DCB69-7642-455F-8986-02721156DC17@cjack.com> <2336E820-465E-43AB-B308-14DE7D02A069@circlesixdesign.com> <5C32D429-3688-4387-AD86-0CF87B77AB80@mac.com> Message-ID: Thanks Todd. That did help. Robert On Thursday, May 03, 2007, at 10:45AM, "Todd Ditchendorf" wrote: >These errors are totally BlogMate's fault. See other thread in this >list. > >Apologies to all! > >will have a chance to fix and test tonight. for now you can delete >BlogMate.tmplugin to fix. > >mea culpa. sorry guys :( > >Todd Ditchendorf > >Scandalous Software - Mac XML Developer Tools >http://scan.dalo.us > > > >On May 2, 2007, at 11:58 PM, Andrew Jaffe wrote: > >> Allan Odgaard wrote: >>> On 3. May 2007, at 01:38, Brett Terpstra wrote: >>>> [...] >>>> 2007-05-02 18:36:02.863 TextMate[18174] couldn't setup TextMate >>>> server. >>> Most likely because there already is an instance of TextMate >>> running. That may also explain why mate has problems (sigalling a >>> maybe dead instance?) >>> Try: killall TextMate (after you quit those instances you know >>> about). >> >> Hi Alan, >> >> No joy (there was only the one obvious instance running)... >> >> But a new datum: if I don't have textmate running already, and I >> try to start it for the first time with mate, I get the following >> slightly different, error (and the requested file doesn't open, but >> the previous session does): >> >> 2007-05-03 07:51:38.810 mate[4496] Exception raised during posting >> of notification. Ignored. exception: [NOTE: this exception >> originated in the server.] >> *** Object does not implement or has different method signature >> >> Also, in this case, "mate" does not actually return to the prompt. >> >> Finally, this is PPC 10.4.9. >> >> I imagine this must be due to some weird interaction with non- >> standard stuff, so here's a list of what I've added that might do >> something strange: terminalmate, blogmate, texmlmate, texslmate, >> codebrowser. >> >> Andrew >> >> >> A >> >> >> ______________________________________________________________________ >> For new threads USE THIS: textmate at 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 at lists.macromates.com >(threading gets destroyed and the universe will collapse if you don't) >http://lists.macromates.com/mailman/listinfo/textmate > > From henrik at nyh.se Thu May 3 19:09:21 2007 From: henrik at nyh.se (Henrik Nyh) Date: Thu, 3 May 2007 21:09:21 +0200 Subject: [TxMt] Feature request: "Open Terminal here ..." In-Reply-To: <7438eebe0705030110pf1789c8v5242067cb55e1604@mail.gmail.com> References: <61328E7D-16C7-4488-BAB5-40B08F8872DB@bonhote.org> <7438eebe0705030109l5fef2906j7a299a712143b0b3@mail.gmail.com> <7438eebe0705030110pf1789c8v5242067cb55e1604@mail.gmail.com> Message-ID: On 03/05/07, Graham Ashton wrote: > On 03/05/07, Graham Ashton wrote: > > To find that I typed Ctrl-T to search the commands available in the current > > scope. Very handy. > > Correction, that's Ctrl-Cmd-T. I've added "Open Finder here" locally: if [[ -d $TM_SELECTED_FILE ]]; then TM_PATH="$TM_SELECTED_FILE" elif [[ -f $TM_SELECTED_FILE ]]; then TM_PATH="`dirname "$TM_SELECTED_FILE"`" else TM_PATH="`dirname "$TM_FILEPATH"`" fi open "$TM_PATH" From daryl.spitzer at gmail.com Thu May 3 19:24:16 2007 From: daryl.spitzer at gmail.com (Daryl Spitzer) Date: Thu, 3 May 2007 12:24:16 -0700 Subject: [TxMt] Feature request: "Open Terminal here ..." In-Reply-To: References: <61328E7D-16C7-4488-BAB5-40B08F8872DB@bonhote.org> <7438eebe0705030109l5fef2906j7a299a712143b0b3@mail.gmail.com> <7438eebe0705030110pf1789c8v5242067cb55e1604@mail.gmail.com> Message-ID: > I've added "Open Finder here" locally: > ... I've been using: open "$TM_DIRECTORY" -- Daryl On 5/3/07, Henrik Nyh wrote: > On 03/05/07, Graham Ashton wrote: > > On 03/05/07, Graham Ashton wrote: > > > To find that I typed Ctrl-T to search the commands available in the current > > > scope. Very handy. > > > > Correction, that's Ctrl-Cmd-T. > > I've added "Open Finder here" locally: > > if [[ -d $TM_SELECTED_FILE ]]; then > TM_PATH="$TM_SELECTED_FILE" > elif [[ -f $TM_SELECTED_FILE ]]; then > TM_PATH="`dirname "$TM_SELECTED_FILE"`" > else > TM_PATH="`dirname "$TM_FILEPATH"`" > fi > > open "$TM_PATH" > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From fxn at hashref.com Thu May 3 19:59:00 2007 From: fxn at hashref.com (Xavier Noria) Date: Thu, 3 May 2007 21:59:00 +0200 Subject: [TxMt] Floating Drawer In-Reply-To: <71C34FA4-6E9B-441F-83A1-DC873F88EBA0@gmail.com> References: <220B7288-2420-498F-B3D0-F417898AA9C2@gmail.com> <5BFB41B3-3E19-496B-A842-DB9440739779@macromates.com> <9A52E7FE-06E6-4D43-B680-EADD4734D283@gmail.com> <4AEF515E-D0EC-4A0A-9FED-BF6F001868C6@hashref.com> <71C34FA4-6E9B-441F-83A1-DC873F88EBA0@gmail.com> Message-ID: <1723BACD-936E-4E79-9A5D-A41937B84829@hashref.com> On May 3, 2007, at 7:31 PM, Michael Jackson wrote: > Speaking of editing in full screen mode with megazoomer, how do you > get the ?? to zoom the window properly? Whenever I try it, I > just get a return entered in the text I'm currently editing. By the > way, I think a floating drawer would be a great idea. There's a macro of the Source bundle bounded to ??, I don't use that macro so I just delete it. -- fxn From jacobolus at gmail.com Thu May 3 19:42:46 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Thu, 03 May 2007 15:42:46 -0400 Subject: [TxMt] Re: Spell checking using Google In-Reply-To: <592C6290-38B5-43B5-82C6-A67F50220394@macromates.com> References: <5130B0E7-39E3-4212-9962-9B3BD64D5C0A@gmail.com> <79FA4E1A-F652-4DDE-9474-068EE9F368C6@eva.mpg.de> <7AF5A43A-7C45-4175-AA1E-7CAD31758049@eva.mpg.de> <592C6290-38B5-43B5-82C6-A67F50220394@macromates.com> Message-ID: Allan Odgaard wrote: >> - If a text is selected meaning at least one space is in it the >> command only returns a snippet of misspelled word without any changes. >> After that you can navigate with TAB through the snippet (misspelled >> words) and if you find a really misspelled word you can invoke the >> command again and so forth. > > Yes, this is probably a desired behavior most of the time. Hmm, two points about "invoke the command again and so forth." 1. I believe google's spellcheck takes the context of the word into account when deciding what the correct word is. So popping up a list only for particular words is probably not the greatest idea. 2. As soon as a command is run on one of the tab stop misspelled words, all the other snippet tab stops are lost. From alex.j.ross at gmail.com Thu May 3 21:31:40 2007 From: alex.j.ross at gmail.com (Alex Ross) Date: Thu, 3 May 2007 14:31:40 -0700 Subject: [TxMt] PerlTidy on TM 1.5.5 (1383) In-Reply-To: References: Message-ID: <97FE6B6D-6BC2-4545-B7D9-66EA7C176784@gmail.com> Hey Dave, You need to set up the PATH variable for textmate. See the *Important* note ate the end of this page: http://macromates.com/textmate/manual/shell_commands -Alex On May 3, 2007, at 11:25 AM, David Watson wrote: > Hi Folks: > > I just installed TM 1.5.5 (1383). I have perltidy installed in /usr/ > bin: > > ls -lr /usr/bin/perltidy > -r-xr-xr-x 1 root wheel 97203 May 3 13:46 /usr/bin/perltidy > > When I execute tidy from the perl bundle in TM, I get: > > Couldn't find perltidy > > Perltidy is available from here. > > Locations searched: > > /Applications/TextMate.app/Contents/SharedSupport/Support/bin/ > CocoaDialo > g.app/Contents/MacOS > /bin > /sbin > /usr/bin > /usr/sbin > /Applications/TextMate.app/Contents/SharedSupport/Support/bin > > I'm not sure why TM doesn't see perltidy in /usr/bin. Does anyone know > how to fix this? > > Thanks, > David > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From throw-away-1 at macromates.com Thu May 3 21:43:12 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Thu, 3 May 2007 23:43:12 +0200 Subject: [TxMt] TextMate Apple + Enter doesn't work In-Reply-To: <828fe8650705031110m7f5bd489ha0a67c256cb7935@mail.gmail.com> References: <828fe8650705031110m7f5bd489ha0a67c256cb7935@mail.gmail.com> Message-ID: On 3. May 2007, at 20:10, Rabbit wrote: > 1. Apple + Enter no longer moves the cursor down one line. Assuming you mean Apple + Return (?? ? ??) then see the following for how to troubleshoot this: http://macromates.com/wiki/Troubleshooting/KeyBindings From bibiko at eva.mpg.de Thu May 3 22:08:00 2007 From: bibiko at eva.mpg.de (=?ISO-8859-1?Q?Hans-J=F6rg_Bibiko?=) Date: Fri, 4 May 2007 00:08:00 +0200 Subject: [TxMt] Re: Spell checking using Google In-Reply-To: References: <5130B0E7-39E3-4212-9962-9B3BD64D5C0A@gmail.com> <79FA4E1A-F652-4DDE-9474-068EE9F368C6@eva.mpg.de> <7AF5A43A-7C45-4175-AA1E-7CAD31758049@eva.mpg.de> <592C6290-38B5-43B5-82C6-A67F50220394@macromates.com> Message-ID: <5837FE02-E4E4-496A-B130-B4404ACA0B63@eva.mpg.de> On 03.05.2007, at 21:42, Jacob Rus wrote: > Allan Odgaard wrote: >>> - If a text is selected meaning at least one space is in it the >>> command only returns a snippet of misspelled word without any >>> changes. After that you can navigate with TAB through the snippet >>> (misspelled words) and if you find a really misspelled word you >>> can invoke the command again and so forth. >> Yes, this is probably a desired behavior most of the time. > > Hmm, two points about "invoke the command again and so forth." > > 1. I believe google's spellcheck takes the context of the word into > account when deciding what the correct word is. So popping up a > list only for particular words is probably not the greatest idea. > Well, I believe it should but up to now I couldn't find an example for such a context spell checking behaviour. If you find such a behaviour, please let it me know. It seems to me that Google's suggestions are based on the following: If the word is not in the Google's corpus it will allow exact one operation on it, meaning deletion, inserting, or replacing of one character to get a word which is in the corpus. The output is sorted according to these operations, I guess. > 2. As soon as a command is run on one of the tab stop misspelled > words, all the other snippet tab stops are lost. Not in this case. The script distinguishes whether a text is sent or a single word. If text - output a snippet; if word - output replace text. By doing so it won't destroy the other snippet tab stops. Hans From rabbitblue at gmail.com Thu May 3 22:30:54 2007 From: rabbitblue at gmail.com (Rabbit) Date: Thu, 3 May 2007 15:30:54 -0700 Subject: [TxMt] TextMate Apple + Enter doesn't work In-Reply-To: References: <828fe8650705031110m7f5bd489ha0a67c256cb7935@mail.gmail.com> Message-ID: <828fe8650705031530k6e4fbd1cge79cfc19ee11eec3@mail.gmail.com> Awesome! Thanks for the heads up James. I'll look into the key bindings link, too. Thanks Allan. - Daniel On 5/3/07, Allan Odgaard wrote: > On 3. May 2007, at 20:10, Rabbit wrote: > > > 1. Apple + Enter no longer moves the cursor down one line. > > Assuming you mean Apple + Return (?? ? ??) then see the > following for how to troubleshoot this: > > http://macromates.com/wiki/Troubleshooting/KeyBindings > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From jacobolus at gmail.com Thu May 3 22:41:48 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Thu, 03 May 2007 18:41:48 -0400 Subject: [TxMt] Re: Spell checking using Google In-Reply-To: <5837FE02-E4E4-496A-B130-B4404ACA0B63@eva.mpg.de> References: <5130B0E7-39E3-4212-9962-9B3BD64D5C0A@gmail.com> <79FA4E1A-F652-4DDE-9474-068EE9F368C6@eva.mpg.de> <7AF5A43A-7C45-4175-AA1E-7CAD31758049@eva.mpg.de> <592C6290-38B5-43B5-82C6-A67F50220394@macromates.com> <5837FE02-E4E4-496A-B130-B4404ACA0B63@eva.mpg.de> Message-ID: <463A652C.5060005@gmail.com> Hans-J?rg Bibiko wrote: > On 03.05.2007, at 21:42, Jacob Rus wrote: >> 1. I believe google's spellcheck takes the context of the word into >> account when deciding what the correct word is. So popping up a list >> only for particular words is probably not the greatest idea. > > Well, I believe it should but up to now I couldn't find an example for > such a context spell checking behaviour. If you find such a behaviour, > please let it me know. > > It seems to me that Google's suggestions are based on the following: > If the word is not in the Google's corpus it will allow exact one > operation on it, meaning deletion, inserting, or replacing of one > character to get a word which is in the corpus. The output is sorted > according to these operations, I guess. No, I think you are pretty clearly wrong about that. As an example, if you spell check "rought with", the first suggestion will be "wrought", as "wrought with ?foo?" is a commonly-used construction. If you replace "with" with some other word, the suggestion will change, and in most cases will be "rough", instead. In fact, in every example that I tried, Google figured out the intended word from context. I don't know their exact algorithm, but it clearly takes neighboring words into account. -Jacob From chris at cjack.com Fri May 4 02:04:30 2007 From: chris at cjack.com (Chris Thomas) Date: Thu, 3 May 2007 22:04:30 -0400 Subject: [TxMt] XCode - Clickable error messages In-Reply-To: References: <429C6234-FBFC-4772-8791-7D4B47A75347@incomumdesign.com> <99193443-B5C9-4A73-A3F0-B743EFEEC1AE@bitart.com> <0B3C6519-1F2B-47BF-A29E-65ED1031ABEF@cjack.com> Message-ID: <1C38F5C8-BB64-4046-9055-406E68518B9A@cjack.com> ?file?:?line?(:?column?)?:?error>> sequences are now clickable, modulo any lurking bugs. Underpinning this feature is new reusable infrastructure: ? Add raw HTML markup (to be interpreted as HTML) to the output. ? Given only the basename, find the full path of the source file in the Xcode project. This being the difficult part. It should now be relatively easy to add different link formats as needed (and to support HTML output). Chris From throw-away-1 at macromates.com Fri May 4 05:08:13 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 4 May 2007 07:08:13 +0200 Subject: [TxMt] Feature request: "Open Terminal here ..." In-Reply-To: <9c31463d0705030500h5531f828g5dd28e06828dfc0a@mail.gmail.com> References: <61328E7D-16C7-4488-BAB5-40B08F8872DB@bonhote.org> <7438eebe0705030109l5fef2906j7a299a712143b0b3@mail.gmail.com> <9c31463d0705030500h5531f828g5dd28e06828dfc0a@mail.gmail.com> Message-ID: <3C739E48-12E8-40E2-BC9C-A68FB6D97EBA@macromates.com> On 3. May 2007, at 14:00, Fred B wrote: > On 5/3/07, Antoine Beyeler wrote: >> What if you want to use iTerm instead? :-) > Here is the one I use: [...] I updated the default command to use your script if either iTerm is running or TM_TERMINAL is set to iTerm. We should probably move it to some lib/terminal.rb, so that all commands that run stuff in the terminal can adapt to user preferences. From bibiko at eva.mpg.de Fri May 4 05:14:05 2007 From: bibiko at eva.mpg.de (=?ISO-8859-1?Q?Hans-J=F6rg_Bibiko?=) Date: Fri, 4 May 2007 07:14:05 +0200 Subject: [TxMt] Re: Spell checking using Google In-Reply-To: <463A652C.5060005@gmail.com> References: <5130B0E7-39E3-4212-9962-9B3BD64D5C0A@gmail.com> <79FA4E1A-F652-4DDE-9474-068EE9F368C6@eva.mpg.de> <7AF5A43A-7C45-4175-AA1E-7CAD31758049@eva.mpg.de> <592C6290-38B5-43B5-82C6-A67F50220394@macromates.com> <5837FE02-E4E4-496A-B130-B4404ACA0B63@eva.mpg.de> <463A652C.5060005@gmail.com> Message-ID: <596F116C-8C7D-466C-9D12-8CEC31C08EA2@eva.mpg.de> On 04.05.2007, at 00:41, Jacob Rus wrote: > Hans-J?rg Bibiko wrote: >> On 03.05.2007, at 21:42, Jacob Rus wrote: >>> 1. I believe google's spellcheck takes the context of the word >>> into account when deciding what the correct word is. So popping >>> up a list only for particular words is probably not the greatest >>> idea. >> Well, I believe it should but up to now I couldn't find an example >> for such a context spell checking behaviour. If you find such a >> behaviour, please let it me know. >> It seems to me that Google's suggestions are based on the following: >> If the word is not in the Google's corpus it will allow exact one >> operation on it, meaning deletion, inserting, or replacing of one >> character to get a word which is in the corpus. The output is >> sorted according to these operations, I guess. > > No, I think you are pretty clearly wrong about that. As an > example, if you spell check "rought with", the first suggestion > will be "wrought", as "wrought with ?foo?" is a commonly-used > construction. If you replace "with" with some other word, the > suggestion will change, and in most cases will be "rough", instead. > > In fact, in every example that I tried, Google figured out the > intended word from context. I don't know their exact algorithm, > but it clearly takes neighboring words into account. > To be honest I only check it with German ;) OK if that is the case, of course one should change the script. Hans From maillists at gmx.de Fri May 4 06:36:47 2007 From: maillists at gmx.de (Christian Burk) Date: Fri, 4 May 2007 08:36:47 +0200 Subject: [TxMt] Feature Request: Open images with... Message-ID: <086CEC05-C369-4351-B206-BB49B1922C40@gmx.de> Hi Folks, A lot of my projects include some images and for getting a nice overview, I also arrange these images, together with other related files, within the project drawer. If I right click on an image, I can open it with the standard application (for example preview.app). Would it not be nice to have an option "Open with..." and then be able to open it in the favorite graphics program? I know, it is possible to drag and drop the image on the dock icon of the graphics program, but an option would easier. Thanks Christian From maillists at gmx.de Fri May 4 06:41:37 2007 From: maillists at gmx.de (Christian Burk) Date: Fri, 4 May 2007 08:41:37 +0200 Subject: [TxMt] Feature Request: Highlighting folders/files Message-ID: <7EBF513B-CADF-4DE1-8321-58205892F16F@gmx.de> Hello, When I work with large projects and using the project drawer it would be very comfortable and more usable if the folders and files could be highlighted in some way. I mean exactly the same feature that ships with OS X. When you right click on a folder/file you can choose a colour (red, orange, green...) for this item. Thanks Christian From throw-away-1 at macromates.com Fri May 4 07:13:19 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 4 May 2007 09:13:19 +0200 Subject: [TxMt] Feature Request: Highlighting folders/files In-Reply-To: <7EBF513B-CADF-4DE1-8321-58205892F16F@gmx.de> References: <7EBF513B-CADF-4DE1-8321-58205892F16F@gmx.de> Message-ID: On 4. May 2007, at 08:41, Christian Burk wrote: > When I work with large projects and using the project drawer it > would be very comfortable and more usable if the folders and files > could be highlighted in some way. I mean exactly the same feature > that ships with OS X. When you right click on a folder/file you can > choose a colour (red, orange, green...) for this item. > [...] > A lot of my projects include some images and for getting a nice > overview, I also arrange these images, together with other related > files, within the project drawer. > > If I right click on an image, I can open it with the standard > application (for example preview.app). Would it not be nice to have > an option "Open with..." and then be able to open it in the > favorite graphics program? > > I know, it is possible to drag and drop the image on the dock icon > of the graphics program, but an option would easier. 2.0 will have a new file manager that mimics Finder in aspects such as providing an ?Open With?? submenu and supporting labels. Though if you have a favorite graphics program, in Finder, try Get Info on an image, change what program should open it, and select Change All. From maillists at gmx.de Fri May 4 07:46:44 2007 From: maillists at gmx.de (Christian Burk) Date: Fri, 4 May 2007 09:46:44 +0200 Subject: [TxMt] Feature Request: Highlighting folders/files In-Reply-To: References: <7EBF513B-CADF-4DE1-8321-58205892F16F@gmx.de> Message-ID: <40619DD8-F74B-41C2-9086-6952F833CFDC@gmx.de> Am 04.05.2007 um 09:13 schrieb Allan Odgaard: > On 4. May 2007, at 08:41, Christian Burk wrote: > >> When I work with large projects and using the project drawer it >> would be very comfortable and more usable if the folders and files >> could be highlighted in some way. I mean exactly the same feature >> that ships with OS X. When you right click on a folder/file you >> can choose a colour (red, orange, green...) for this item. >> [...] >> A lot of my projects include some images and for getting a nice >> overview, I also arrange these images, together with other related >> files, within the project drawer. >> >> If I right click on an image, I can open it with the standard >> application (for example preview.app). Would it not be nice to >> have an option "Open with..." and then be able to open it in the >> favorite graphics program? >> >> I know, it is possible to drag and drop the image on the dock icon >> of the graphics program, but an option would easier. > > 2.0 will have a new file manager that mimics Finder in aspects such > as providing an ?Open With?? submenu and supporting labels. These are very nice prospects! Thanks > Though if you have a favorite graphics program, in Finder, try Get > Info on an image, change what program should open it, and select > Change All. That's what I try to prevent. I open up all my graphics with preview for a short view and edit them with Fireworks. Always opening in FW would tak to much time. Thanks Christian From simon at helvector.org Fri May 4 09:29:22 2007 From: simon at helvector.org (Simon Gregory) Date: Fri, 04 May 2007 02:29:22 -0700 Subject: [TxMt] Detecting Applications Message-ID: <40566.1178270962@helvector.org> I have a command that relies entirely on the applescriptability of iTerm over Terminal. However as I can't guarantee that iTerm is installed I'm looking for a way to detect it. Does anyone have any suggestions, specifically when it's not running? Thanks, Simon From throw-away-1 at macromates.com Fri May 4 09:41:05 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 4 May 2007 11:41:05 +0200 Subject: [TxMt] XCode - Clickable error messages In-Reply-To: <1C38F5C8-BB64-4046-9055-406E68518B9A@cjack.com> References: <429C6234-FBFC-4772-8791-7D4B47A75347@incomumdesign.com> <99193443-B5C9-4A73-A3F0-B743EFEEC1AE@bitart.com> <0B3C6519-1F2B-47BF-A29E-65ED1031ABEF@cjack.com> <1C38F5C8-BB64-4046-9055-406E68518B9A@cjack.com> Message-ID: <4E5BC02D-85DB-41ED-A5CB-C5EF198A9FDE@macromates.com> On 4. May 2007, at 04:04, Chris Thomas wrote: > ?file?:?line?(:?column?)?:?error>> sequences are now clickable, > modulo any lurking bugs. Underpinning this feature is new reusable > infrastructure: Great work Chris! I did a few changes to also scan sub-projects, as I have most of my code placed in those. We probably should also check system headers, e.g. some of my stack traces include STL headers. Unfortunately it seems I quite frequently get the PTY exception while formatting, e.g.: ==> Exception during output formatting: PTY::ChildExited: pty - exited: 945 run_xcode_target.rb:267:in `each_pair' run_xcode_target.rb:143:in `path_for_basename' run_xcode_target.rb:159:in `path_for_basename' run_xcode_target.rb:143:in `path_for_basename' run_xcode_target.rb:159:in `path_for_basename' run_xcode_target.rb:143:in `path_for_basename' run_xcode_target.rb:159:in `path_for_basename' run_xcode_target.rb:143:in `path_for_basename' run_xcode_target.rb:353:in `run' run_xcode_target.rb:350:in `run' run_xcode_target.rb:270:in `run' run_xcode_target.rb:267:in `run' run_xcode_target.rb:314:in `run' run_xcode_target.rb:344:in `run' parse_build.rb:203 format_build.rb:571 From throw-away-1 at macromates.com Fri May 4 09:43:11 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 4 May 2007 11:43:11 +0200 Subject: [TxMt] Detecting Applications In-Reply-To: <40566.1178270962@helvector.org> References: <40566.1178270962@helvector.org> Message-ID: <225A4ADD-4F3B-4915-9EFF-E9B89A8CF262@macromates.com> On 4. May 2007, at 11:29, Simon Gregory wrote: > I have a command that relies entirely on the applescriptability of > iTerm over Terminal. However as I can't guarantee that iTerm > is installed I'm looking for a way to detect it. Does anyone have > any suggestions, specifically when it's not running? We have TM_SUPPORT_PATH/bin/find_app to find the full path to installed applications. From shell you could use it e.g. like this: if find_app >/dev/null ?bundle identifier of iTerm?; then echo 'We got iTerm installed!' fi The redirect to /dev/null is only because find_app returns the full path to the application. From waltd at wdstudio.com Fri May 4 13:01:06 2007 From: waltd at wdstudio.com (Walter Lee Davis) Date: Fri, 4 May 2007 09:01:06 -0400 Subject: [TxMt] Feature Request: Open images with... In-Reply-To: <086CEC05-C369-4351-B206-BB49B1922C40@gmx.de> References: <086CEC05-C369-4351-B206-BB49B1922C40@gmx.de> Message-ID: I just tried double-clicking an image file, and Photoshop opened it right away. I think it's down to whatever application is bound to that file-type. If it isn't by default, make sure that "Treat .xxx files as binary" is selected in TM's contextual menu for the file (type) you're concerned with. Walter On May 4, 2007, at 2:36 AM, Christian Burk wrote: > Hi Folks, > > A lot of my projects include some images and for getting a nice > overview, I also arrange these images, together with other related > files, within the project drawer. > > If I right click on an image, I can open it with the standard > application (for example preview.app). Would it not be nice to have an > option "Open with..." and then be able to open it in the favorite > graphics program? > > I know, it is possible to drag and drop the image on the dock icon of > the graphics program, but an option would easier. > > Thanks > Christian > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From chip.cullen at gmail.com Fri May 4 13:23:20 2007 From: chip.cullen at gmail.com (Chip Cullen) Date: Fri, 4 May 2007 22:23:20 +0900 Subject: [TxMt] Feature Request: Find in Project - with multiple lines! Message-ID: I love the "Find in Project" command - especially when I'm working on lots of HTML files. But it lacks something that the regular "Find" command has - the ability to see multiple lines in both the "Find" and "Replace" field. If the "FInd in Project" had that feature, it would be much, much more useful. I work mainly in HTML, and it would really help with things like updating menus across the site - pieces of code that are rarely on a single line. I know that you CAN replace multiple lines of code with "FInd in Project", but having the ability to *see* them would help immensely. For some reason whenever I try to replace multiple lines of code, I get weird duplicates and other strange things. Granted, that could be more indicative of my own ability ; ) - but if I could see all the code at once that I'm using, I think I would run into fewer problems. Any thoughts? From sven.axelsson at gmail.com Fri May 4 13:35:13 2007 From: sven.axelsson at gmail.com (Sven Axelsson) Date: Fri, 4 May 2007 15:35:13 +0200 Subject: [TxMt] Feature request: Find in project - filter by file type Message-ID: Maybe I'm just missing something here, but: Please make it possible to use a filter for the files scanned using Find in project. I almost always have a situation where I'm searching for something in my HTML files only and that something will be present in almost all of the PHP files, thus adding a lot of noise to the search result dialog. There will also be situations where I'm searching for instance all index.php files in a large project. And while I'm at it, please make the Find in project faster ;^) -- Sven Axelsson From nigel at greenlemur.com Fri May 4 14:02:16 2007 From: nigel at greenlemur.com (Nigel Green) Date: Fri, 4 May 2007 15:02:16 +0100 Subject: [TxMt] The tab bar In-Reply-To: <20070503160756.GE3574@antiflux.org> References: <11698D41-441F-45DF-A86C-021EACB6AAAA@greenlemur.com> <20070503160756.GE3574@antiflux.org> Message-ID: <55641F90-1E2C-4AFB-92BC-4A56BB1D4C1A@greenlemur.com> Thanks Grant. I noiticed today that I managed to break the scroll wheel function on textmate windows by messing around with the .nib file so this is a welcome tip! Thanks, Nigel On 3 May 2007, at 17:07, Grant Hollingworth wrote: > * Nigel Green [2007-05-03 06:16]: >> Sorry to raise an old question, but I can't find a definitive >> answer in the archive - is it possible to turn off the tab bar? > > defaults write com.macromates.textmate > OakProjectWindowShowTabBarEnabled false > > I ended up turning them back on after a while. Note that it's not > enough to do another defaults write with true; you need to use > defaults delete to remove the key entirely. > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From dsnyder at txstate.edu Fri May 4 14:18:51 2007 From: dsnyder at txstate.edu (David F. Snyder) Date: Fri, 04 May 2007 09:18:51 -0500 Subject: [TxMt] LaTeX bundle and the exam package In-Reply-To: Message-ID: On 5/3/07 10:08 AM, "David F. Snyder" wrote: > > > > On 5/2/07 7:49 AM, "Charilaos Skiadas" wrote: > >> On May 1, 2007, at 3:22 AM, David F. Snyder wrote: >> >>> Hi >>> >>> I am hoping someone has solved this problem. >>> >>> I use latekmk.pl script as $TM_TEX_COMPILER to compile my LaTeX >>> documents >>> from within Textmate and it works wonderfully on every document >>> I've made, >>> except for any document that uses the exam package. >>> >>> The problem is small: I must execute cmd-R twice to get it to >>> compile the >>> number of points correctly. This is only a problem within Textmate; >>> if I run >>> the script from the command line it works perfectly. And while it >>> is a small >>> problem it is vexing, since latexmk.pl was made specifically to >>> deal with >>> the need to run LaTeX etc. multiple times. >>> >> I wonder, whether the latexmk.pl script that runs from the command >> line is the same as the one that runs from within TM. I think TM will >> run its own version of latexmk.pl, which I updated recently. But >> perhaps you have another latexmk.pl? When you use latexmk.pl from the >> command line, how do you invoke it, and what is the value, if any, >> returned by "which latexmk.pl"? >> > The only version of latexmk.pl installed is in the LaTeX bundle's > subdirectory ./Support/bin/ > I update my bundle packages automatically using the GetBundle bundle. I > manually updated just in case, the same problem persists. > > To run it from the command line, I actually just pasted the absolute path > into the command line. So the command looks like: > > perl -pdf > /Applications/TextMate.app/Contents/SharedSupport/Bundles/Latex.tmbundle/Sup > port/bin/latexmk.pl myfile.tex Oops. The "-pef" flag comes after the script name. Perl /Applications/TextMate.app/Contents/SharedSupport/Bundles/Latex.tmbundle/Sup port/bin/latexmk.pl -pdf myfile.tex > > Yesterday my final exam required three cmd-R's to generate the grading > table. Perhaps I need to up the upperbound of compiles allowed as the > default in latexmk.pl? Or perhaps the script doesn't use pdflatex, which is > what the -pdf flag does for latexmk.pl >>> My guess is that there is a bug in either cmd-R (though I can't >>> find one) >>> or somewhere in the bowels of Textmate. >>> >>> Seeing as how I used this package frequently, almost daily, I'm >>> guessing >>> that this need to cmd-R twice will cost me about an hour and a half >>> of my >>> life in the coming year. >>> >>> Best wishes >>> ---- >>> David >> >> Haris Skiadas >> Department of Mathematics and Computer Science >> Hanover College >> >> >> >> >> > > Best wishes > ---- > > David F. Snyder, Ph. D. > Associate Professor of Mathematics > Department of Mathematics > Texas State University > 601 University Drive > San Marcos, TX 78666 > > (512)245-3419 My office > (512)245-2551 Department Office > (512)245-3425 fax > dsnyder at txstate.edu > > From chris at cjack.com Fri May 4 14:32:48 2007 From: chris at cjack.com (Chris Thomas) Date: Fri, 4 May 2007 10:32:48 -0400 Subject: [TxMt] XCode - Clickable error messages In-Reply-To: <4E5BC02D-85DB-41ED-A5CB-C5EF198A9FDE@macromates.com> References: <429C6234-FBFC-4772-8791-7D4B47A75347@incomumdesign.com> <99193443-B5C9-4A73-A3F0-B743EFEEC1AE@bitart.com> <0B3C6519-1F2B-47BF-A29E-65ED1031ABEF@cjack.com> <1C38F5C8-BB64-4046-9055-406E68518B9A@cjack.com> <4E5BC02D-85DB-41ED-A5CB-C5EF198A9FDE@macromates.com> Message-ID: <9B36911A-D0E6-4989-A6E7-E33B87494A78@cjack.com> On May 4, 2007, at 5:41 AM, Allan Odgaard wrote: > Unfortunately it seems I quite frequently get the PTY exception > while formatting, e.g.: I wish the PTY class wouldn't do that. I'm not sure if there's a good solution. It's possible that running the process on a different Ruby thread would solve the problem. Chris From steve at narbat.com Fri May 4 15:21:02 2007 From: steve at narbat.com (Steve King) Date: Fri, 4 May 2007 11:21:02 -0400 (EDT) Subject: [TxMt] Appearance of HTML Output "isBusy" indicator? Message-ID: Is there some way to control the appearance of the spinning progress indicator on the HTML output pages? Some CSS, maybe? I'm writing a command using the standard themes given by webpreview.rb, but the spinner is practically invisible. I don't want to turn it off (I know about TextMate.isBusy) or make any drastic changes, just change the color. -- Steve King, From sven.axelsson at gmail.com Fri May 4 15:33:21 2007 From: sven.axelsson at gmail.com (Sven Axelsson) Date: Fri, 4 May 2007 17:33:21 +0200 Subject: [TxMt] Feature request: More Show Invisibles options Message-ID: Maybe this is already in the works, but anyways: Show invisibles needs a (separate) option to show spaces. Even better, I'd like to see an option to show leading spaces only (Komodo has this). Makes it easier to see the correct indent level. -- Sven Axelsson From grant at antiflux.org Fri May 4 16:50:13 2007 From: grant at antiflux.org (Grant Hollingworth) Date: Fri, 4 May 2007 10:50:13 -0600 Subject: [TxMt] periodic key binding freak-out Message-ID: <20070504165013.GG6967@antiflux.org> Every so often, TextMate stops handling key bindings for bundle items. Built-in commands still work as expected. When I check ??P in Select Bundle Item, it shows ??. The behaviour persists even when I restart TextMate. Logging out seems to fix it. Sometimes it fixes itself. I haven't found anything in console.log. It just happened to me again. This time I used Key Codes[1] to check what TextMate was getting. Key Down Characters:  Unicode: 16 / 0x10 Keys: ?^P Key Code: 35 / 0x23 Modifiers: 2490371 / 0x260003 Terminal saw the modifier as 0x260103. Later, TextMate started showing 0x260103, too, but the command still didn't work. Finally -- and I have no idea what changed -- things started working again, and I now have a modifier of 0x60103 in all apps. [1] http://www.petermaurer.de/nasi.php?thema=keycodes&sprache=english From mgee at gwi.net Fri May 4 17:02:09 2007 From: mgee at gwi.net (Michael Gregoire) Date: Fri, 4 May 2007 13:02:09 -0400 Subject: [TxMt] periodic key binding freak-out In-Reply-To: <20070504165013.GG6967@antiflux.org> References: <20070504165013.GG6967@antiflux.org> Message-ID: This has happened to me as well about a week ago. I had to quit TM and restart it for everything to work fine. I'm not at all sure what triggered the problem, but it hasn't happened again since. On May 4, 2007, at 12:50 PM, Grant Hollingworth wrote: > Every so often, TextMate stops handling key bindings for bundle > items. Built-in commands still work as expected. When I check > ??P in Select Bundle Item, it shows ?? symbol>. The behaviour persists even when I restart TextMate. > Logging out seems to fix it. Sometimes it fixes itself. I haven't > found anything in console.log. > > It just happened to me again. This time I used Key Codes[1] to > check what TextMate was getting. > > Key Down > Characters:  > Unicode: 16 / 0x10 > Keys: ?^P > Key Code: 35 / 0x23 > Modifiers: 2490371 / 0x260003 > > Terminal saw the modifier as 0x260103. Later, TextMate started > showing 0x260103, too, but the command still didn't work. > > Finally -- and I have no idea what changed -- things started > working again, and I now have a modifier of 0x60103 in all apps. > > [1] http://www.petermaurer.de/nasi.php?thema=keycodes&sprache=english > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From skiadas at hanover.edu Fri May 4 19:09:55 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Fri, 4 May 2007 15:09:55 -0400 Subject: [TxMt] LaTeX bundle and the exam package In-Reply-To: References: Message-ID: <4C0716BD-E90B-42D1-8404-785E8BA460E6@hanover.edu> On May 4, 2007, at 10:18 AM, David F. Snyder wrote: > > On 5/3/07 10:08 AM, "David F. Snyder" wrote: >> >> On 5/2/07 7:49 AM, "Charilaos Skiadas" wrote: >> >>> On May 1, 2007, at 3:22 AM, David F. Snyder wrote: >>> >>>> Hi >>>> >>>> I am hoping someone has solved this problem. >>>> >>>> I use latekmk.pl script as $TM_TEX_COMPILER to compile my LaTeX >>>> documents Ah, this should be $TM_LATEX_COMPILER, not $TM_TEX_COMPILER. Does changing this fix it? Compiling exam classes with TM_LATEX_COMPILER set to latexmk.pl works just fine on my computer. If you still have problems after correcting this, please send me a test file. Haris Skiadas Department of Mathematics and Computer Science Hanover College From skiadas at hanover.edu Fri May 4 19:19:15 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Fri, 4 May 2007 15:19:15 -0400 Subject: [TxMt] Patch for LaTex Bundle In-Reply-To: <7455DDB3-FB3B-4D2C-8CBC-11B907118674@gmail.com> References: <7455DDB3-FB3B-4D2C-8CBC-11B907118674@gmail.com> Message-ID: <67031AA6-28EC-4525-B9AA-2ADEFF5A3FF6@hanover.edu> Xavier, Thanks for the patch, sorry it took me so long to commit it. Haris Skiadas Department of Mathematics and Computer Science Hanover College On Apr 20, 2007, at 12:27 PM, Xavier CAMBAR wrote: > Context: > I needed to insert tex files which filenames contained spaces into > my document. LaTex can handle this efficiently if quotes are > provided in the \include (like in \include{"bla bla/bla bla"}). > > For easy moving along my document, I intended to use the "Open > Included File" command. But that command doesn't handle the quoted > filenames, as the quotes are taken into account as normal characters. > So here I am with a line to be added to that command in order to > correct that misbehaviour: > > 10: ... > 11: if options.empty? > 12: print "Did not find any appropriate item to open in #{ENV > ['TM_SELECTED_TEXT'] ? "selection" : "current line" }" > 13: else > 14: options[0].each{|el| el.gsub!(/(^\")?(\"$)?/, '')} #<-- > Here it is! > 15: filepath = `kpsewhich #{e_sh options[0]}`.chomp > 16: if filepath.empty? > 17: ... > > I don't know how to commit changes in a bundle (according I am > allowed to!). So now it's up to you, folks, to add it to the > repository. > Note that I quickly and unformally tested it, and everything seems ok. > > Xavier Cambar From skiadas at hanover.edu Fri May 4 19:27:01 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Fri, 4 May 2007 15:27:01 -0400 Subject: [TxMt] Re: Latex completion not working In-Reply-To: References: <9E420607-003F-4521-8651-AEBF2175DF46@hanover.edu> Message-ID: On Apr 13, 2007, at 4:03 AM, Ruben Debeerst wrote: > I'm also having problems with Latex label completion! > > Charilaos Skiadas wrote: >> Does label completion work for you on single files? > > Yes. For single files everything works find. But as soon as I have > a project with TM_LATEX_MASTER defined the completion does not do > anything (not inside the master file itself and not inside any > other file that is included). I just get an error-beep. > Getting back on this a bit late, but is this still a problem? If so can you send me a sample project showing the problem, ideally including a tmproj file, and with the TM_LATEX_MASTER value defined there? > Ruben Haris Skiadas Department of Mathematics and Computer Science Hanover College From sami.samhuri at gmail.com Fri May 4 19:44:36 2007 From: sami.samhuri at gmail.com (Sami Samhuri) Date: Fri, 4 May 2007 12:44:36 -0700 Subject: [TxMt] The Dvorak-Qwerty layout, 2 years later Message-ID: <74246a100705041244p28bb83bck913586cc0b4fb9a3@mail.gmail.com> Hello Allan & other TM friends, I'm one of the disturbed folks who tries to make life difficult for myself and those around me by using the Dvorak-Qwerty layout. Apple was kind enough to create this monster, but not kind enough to provide the adequate means for developers to fully support it in their apps[1]. Is there anything in the works to handle the DQ layout properly in TM2? I'm debating a switch to a pure Dvorak[2] layout and since TM is the app I type into for hours daily it has the largest influence on my decision. I know it's foolish to think that maybe Leopard will include some new key handling abilities just for us DQ guys, but I'm clinging to a shred of hope. The only reason I'm bringing this up is that every now and then a new bundle shortcut will catch me by surprise, ie. Cmd-Opt-/ (which is Cmd-Opt-[ in DQ) for commenting blocks overwrote the shortcut for re-indenting a block or line. Cmd-/ works as it should, but for some reason Cmd-Opt-/ uses the Dvorak / instead of the Qwerty /. Some default shortcuts don't work at all (show scope). It's not that big of a deal and I accept that this is the price I pay for choosing an obscure layout. However, my dislike of surprises while coding[3] outweighs the benefits of using DQ in the first place; hence this message. [1] http://comox.textdrive.com/pipermail/textmate/2005-August/005238.html [2] Oh how I would/will miss the cut, copy & paste shortcuts. They suck on a Dvorak layout. [3] I know, I know. Why the hell do I use the cutting edge build of TM if I don't want surprises? ;-) -- Sami Samhuri http://sami.samhuri.net -------------- next part -------------- An HTML attachment was scrubbed... URL: From oblivious at subtlegradient.com Fri May 4 23:54:54 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Fri, 4 May 2007 19:54:54 -0400 Subject: [TxMt] Appearance of HTML Output "isBusy" indicator? In-Reply-To: References: Message-ID: On May 4, 2007, at 11:21 AM, Steve King wrote: > Is there some way to control the appearance of the spinning > progress indicator on the HTML output pages? Some CSS, maybe? I'm > writing a command using the standard themes given by webpreview.rb, > but the spinner is practically invisible. I don't want to turn it > off (I know about TextMate.isBusy) or make any drastic changes, > just change the color. > > -- > Steve King, It's defines in the nib itself, layered on top of the html view. There's nothing in the HTML view you can do to change it's appearance :( thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From maillists at gmx.de Sat May 5 06:57:17 2007 From: maillists at gmx.de (Christian Burk) Date: Sat, 5 May 2007 08:57:17 +0200 Subject: [TxMt] Feature Request: Dragged folder hide file types Message-ID: Hi, A nice feature in TextMate is the automatic update of a dragged folder inside the project drawer. But when you work with latex projects and compile your document you'll get some help files, such as aux, toc, lof, lot and so on. For this reason it would be nice to have some kind of filter which is applicable for hiding certain extensions when the folder is rescanned. Would this be possible...? Christian From throw-away-1 at macromates.com Sat May 5 08:12:09 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sat, 5 May 2007 10:12:09 +0200 Subject: [TxMt] periodic key binding freak-out In-Reply-To: <20070504165013.GG6967@antiflux.org> References: <20070504165013.GG6967@antiflux.org> Message-ID: <76D0EF15-F4DC-401C-83EE-82F1FDF9849D@macromates.com> On 4. May 2007, at 18:50, Grant Hollingworth wrote: > Every so often, TextMate stops handling key bindings for bundle items. > [...] > Terminal saw the modifier as 0x260103. Later, TextMate started > showing 0x260103, too, but the command still didn't work. > > Finally -- and I have no idea what changed -- things started > working again, and I now have a modifier of 0x60103 in all apps. The 0x200000 is the NSNumericPadKeyMask. Are you using a PC keyboard possibly with some adaptor? Is there a num-lock key you can press? If so, try see if just pressing that doesn?t toggle the behavior. From throw-away-1 at macromates.com Sat May 5 08:13:32 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sat, 5 May 2007 10:13:32 +0200 Subject: [TxMt] Feature Request: Dragged folder hide file types In-Reply-To: References: Message-ID: <451CDEF6-EEC2-4800-9CAD-5002C7E0E1FA@macromates.com> On 5. May 2007, at 08:57, Christian Burk wrote: > [...] it would be nice to have some kind of filter which is > applicable for hiding certain extensions when the folder is rescanned. http://macromates.com/textmate/manual/ working_with_multiple_files#filtering_unwanted_files From throw-away-1 at macromates.com Sat May 5 08:14:47 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sat, 5 May 2007 10:14:47 +0200 Subject: [TxMt] Feature Request: Find in Project - with multiple lines! In-Reply-To: References: Message-ID: On 4. May 2007, at 15:23, Chip Cullen wrote: > I love the "Find in Project" command - especially when I'm working on > lots of HTML files. But it lacks something that the regular "Find" > command has [...] 2.0 has a combined window for find and find in project. From throw-away-1 at macromates.com Sat May 5 08:15:52 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sat, 5 May 2007 10:15:52 +0200 Subject: [TxMt] Feature request: Find in project - filter by file type In-Reply-To: References: Message-ID: <84F2CB7C-4EFB-434F-A2AC-7E0B9732194E@macromates.com> On 4. May 2007, at 15:35, Sven Axelsson wrote: > Please make it possible to use a filter for the files scanned using > Find in project [...] Oft requested, will happen in the future. > [...] > And while I'm at it, please make the Find in project faster ;^) If 2.0 doesn?t do it for you, send me some code for this :) From throw-away-1 at macromates.com Sat May 5 08:25:22 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sat, 5 May 2007 10:25:22 +0200 Subject: [TxMt] The Dvorak-Qwerty layout, 2 years later In-Reply-To: <74246a100705041244p28bb83bck913586cc0b4fb9a3@mail.gmail.com> References: <74246a100705041244p28bb83bck913586cc0b4fb9a3@mail.gmail.com> Message-ID: On 4. May 2007, at 21:44, Sami Samhuri wrote: > [...] > Is there anything in the works to handle the DQ layout properly in > TM2? [...] it's foolish to think that maybe Leopard will include > some new key handling abilities just for us DQ guys, but I'm > clinging to a shred of hope. FYI the problem is not as such the keyboard handling of the OS, it is the keyboard handling of Cocoa, i.e. that Cocoa has its own keyboard event based on the actual Carbon event, but lacking some important information to actually decipher this event correctly according to modifiers. Even for the plain old Qwerty layout, TextMate actually has *heuristics* to decipher the event. As for what Leopard may or may not change, I can?t say. But there is one new line in a header that has made me add ?revisit key event decoding? to the to-do. But don?t get your hopes up, it?s no simple thing, and presently I have no idea if the new route is plausible. From throw-away-1 at macromates.com Sat May 5 08:34:02 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sat, 5 May 2007 10:34:02 +0200 Subject: [TxMt] Detecting Applications In-Reply-To: <33757.1178286986@helvector.org> References: <33757.1178286986@helvector.org> Message-ID: <94594AE1-AF9A-40C4-BBA7-01ABA9810F7F@macromates.com> On 4. May 2007, at 15:56, Simon Gregory wrote: >> if find_app >/dev/null ?bundle identifier of iTerm?; then >> echo 'We got iTerm installed!' >> fi > > I'm assuming that the ?bundle identifier of iTerm? is the value > from this key found in iTerm.app/Contents/Info.plist > > CFBundleIdentifier > iTerm Yes, unfortunately that bundle identifier is in the wrong format. It should be something like: ?com.?company?.iTerm?. It will likely work though. Alternatively you can do: find_app iTerm.app (then it looks using the app name instead of the bundle identifier, normally the former would be more ambiguous). > One thing, would iTerm need to have been run once in order for the > system to register it's presence? If it is in /Applications and possibly ~/Applications, the system will automatically register the application (at boot time) -- maybe some other locations are also magic. But at least running the app, will ensure the system has it in the index. From throw-away-1 at macromates.com Sat May 5 09:10:20 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sat, 5 May 2007 11:10:20 +0200 Subject: [TxMt] XCode - Clickable error messages In-Reply-To: References: <429C6234-FBFC-4772-8791-7D4B47A75347@incomumdesign.com> <99193443-B5C9-4A73-A3F0-B743EFEEC1AE@bitart.com> Message-ID: <7B89CFDC-4F07-438B-AE49-08F4DC3F4E24@macromates.com> On 3. May 2007, at 16:37, Gerd Knops wrote: > [...] > You know, I still haven't forgiven you for removing that output > option where one could enter a pattern. Since then my tools spend a > lot more code on formatting output then on getting their job done. Here?s an idea: write your own tool and use that: ?my command?|?my tool that catches output? You could do that tool in a dozen lines of perl and use tm_dialog to open the output console. Within a few hours, you should have something vastly superior to that crappy window I killed. > And now you want me to replace NSLog(@"I am here") > with something that opens some stupid file handle, then has to > write (to get a line break) something like NSLog(@"I am > here")? I hope you are kidding! No, I wanted to enable programs to optionally do richer error reporting (during development). Look at the runners we have for AppleScript, Ruby, Python, etc. and how they present errors to the user. This looks much better than a simple ?some_file.cc: 85:5:Warning: bla bla bla?. From xcambar at gmail.com Sat May 5 15:14:37 2007 From: xcambar at gmail.com (Xavier Cambar) Date: Sat, 5 May 2007 17:14:37 +0200 Subject: [TxMt] Patch for LaTex Bundle In-Reply-To: <67031AA6-28EC-4525-B9AA-2ADEFF5A3FF6@hanover.edu> References: <7455DDB3-FB3B-4D2C-8CBC-11B907118674@gmail.com> <67031AA6-28EC-4525-B9AA-2ADEFF5A3FF6@hanover.edu> Message-ID: Going on this way, I found out that the command was used to open files in a separate window. I am looking for a way to open incuded files in a tab. I thought of a recursive search, starting from the folder of the master file (if not defined, the currently opened one), or even better, opening the right file from the ones in the current project. Anyhow, there are many ways to make this efficient, but I have no idea how to open a file in a tab... Commands generally use 'mate', which (as far as I know) isn't able of this... Well, any idea? Xavier Le 4 mai 07 ? 21:19, Charilaos Skiadas a ?crit : > Xavier, > > Thanks for the patch, sorry it took me so long to commit it. > > Haris Skiadas > Department of Mathematics and Computer Science > Hanover College > > On Apr 20, 2007, at 12:27 PM, Xavier CAMBAR wrote: > >> Context: >> I needed to insert tex files which filenames contained spaces into >> my document. LaTex can handle this efficiently if quotes are >> provided in the \include (like in \include{"bla bla/bla bla"}). >> >> For easy moving along my document, I intended to use the "Open >> Included File" command. But that command doesn't handle the quoted >> filenames, as the quotes are taken into account as normal characters. >> So here I am with a line to be added to that command in order to >> correct that misbehaviour: >> >> 10: ... >> 11: if options.empty? >> 12: print "Did not find any appropriate item to open in #{ENV >> ['TM_SELECTED_TEXT'] ? "selection" : "current line" }" >> 13: else >> 14: options[0].each{|el| el.gsub!(/(^\")?(\"$)?/, '')} >> #<-- Here it is! >> 15: filepath = `kpsewhich #{e_sh options[0]}`.chomp >> 16: if filepath.empty? >> 17: ... >> >> I don't know how to commit changes in a bundle (according I am >> allowed to!). So now it's up to you, folks, to add it to the >> repository. >> Note that I quickly and unformally tested it, and everything seems >> ok. >> >> Xavier Cambar > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From skiadas at hanover.edu Sat May 5 15:24:53 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Sat, 5 May 2007 11:24:53 -0400 Subject: [TxMt] Patch for LaTex Bundle In-Reply-To: References: <7455DDB3-FB3B-4D2C-8CBC-11B907118674@gmail.com> <67031AA6-28EC-4525-B9AA-2ADEFF5A3FF6@hanover.edu> Message-ID: <5C7BC361-C856-49C4-AF6F-CD3E534FC0DA@hanover.edu> On May 5, 2007, at 11:14 AM, Xavier Cambar wrote: > Going on this way, I found out that the command was used to open > files in a separate window. > I am looking for a way to open incuded files in a tab. I thought of > a recursive search, starting from the folder of the master file (if > not defined, the currently opened one), or even better, opening the > right file from the ones in the current project. Anyhow, there are > many ways to make this efficient, but I have no idea how to open a > file in a tab... Commands generally use 'mate', which (as far as I > know) isn't able of this... For me the command opens files in a new tab, and not in a separate window. Perhaps the files you are trying to open are not in the project/folder? > Well, any idea? > Xavier Haris Skiadas Department of Mathematics and Computer Science Hanover College From grant at antiflux.org Sat May 5 15:49:33 2007 From: grant at antiflux.org (Grant Hollingworth) Date: Sat, 5 May 2007 09:49:33 -0600 Subject: [TxMt] periodic key binding freak-out In-Reply-To: <76D0EF15-F4DC-401C-83EE-82F1FDF9849D@macromates.com> References: <20070504165013.GG6967@antiflux.org> <76D0EF15-F4DC-401C-83EE-82F1FDF9849D@macromates.com> Message-ID: <20070505154933.GA8779@antiflux.org> * Allan Odgaard [2007-05-05 02:12]: >The 0x200000 is the NSNumericPadKeyMask. > >Are you using a PC keyboard possibly with some adaptor? Is there a >num-lock key you can press? If so, try see if just pressing that >doesn?t toggle the behavior. I'm using my MacBook Pro's built-in keyboard. Turning on numlock does give me that modifier, but it changes the key to its inset number pad equivalent: '*' instead of 'p'. Characters: * Unicode: 42 / 0x2a Keys: ?^* Key Code: 67 / 0x43 Modifiers: 2490627 / 0x260103 When I was having problems, the key stayed as 'p'. So somehow the mask was flipped on but without my keyboard layout changing. From xcambar at gmail.com Sat May 5 16:29:58 2007 From: xcambar at gmail.com (Xavier Cambar) Date: Sat, 5 May 2007 18:29:58 +0200 Subject: [TxMt] Patch for LaTex Bundle In-Reply-To: <5C7BC361-C856-49C4-AF6F-CD3E534FC0DA@hanover.edu> References: <7455DDB3-FB3B-4D2C-8CBC-11B907118674@gmail.com> <67031AA6-28EC-4525-B9AA-2ADEFF5A3FF6@hanover.edu> <5C7BC361-C856-49C4-AF6F-CD3E534FC0DA@hanover.edu> Message-ID: <34AD4547-B09E-462D-B99E-429587AB6CE5@gmail.com> Le 5 mai 07 ? 17:24, Charilaos Skiadas a ?crit : > For me the command opens files in a new tab, and not in a separate > window. Perhaps the files you are trying to open are not in the > project/folder? Yes, they are. Even better, whether the files are already opened in a tab or not doesn't change the result. They keep on (re)opening in a new window. Damn... Xavier From textmate at minimaldesign.net Sat May 5 17:02:10 2007 From: textmate at minimaldesign.net (Yann B) Date: Sat, 5 May 2007 13:02:10 -0400 Subject: [TxMt] Using Projects on remote servers - the easy way Message-ID: <8A13E933-D4E6-4286-80DE-BCCB50270B25@minimaldesign.net> Sorry if it's old news for some of you guys, but I just found out that using MacFUSE and sshfs makes it super easy to use TextMate projects/tabs with files on remotes servers (as long as you have SSH access). I know the question comes back once in a while on here, and I for one was never really satisfied with the workarounds people suggested... This solution makes it really dead simple to get access to all TextMate Project features... I wrote up a little blog post with the details if someone's interested: http://minimaldesign.net/blog/workflow/remote-textmate-projects Hope it helps :) From fredb7 at gmail.com Sat May 5 17:05:03 2007 From: fredb7 at gmail.com (Fred B) Date: Sat, 5 May 2007 19:05:03 +0200 Subject: [TxMt] Feature request: "Open Terminal here ..." In-Reply-To: <3C739E48-12E8-40E2-BC9C-A68FB6D97EBA@macromates.com> References: <61328E7D-16C7-4488-BAB5-40B08F8872DB@bonhote.org> <7438eebe0705030109l5fef2906j7a299a712143b0b3@mail.gmail.com> <9c31463d0705030500h5531f828g5dd28e06828dfc0a@mail.gmail.com> <3C739E48-12E8-40E2-BC9C-A68FB6D97EBA@macromates.com> Message-ID: <9c31463d0705051005y3218aaeei4e2c17bdf104ed8b@mail.gmail.com> On 5/4/07, Allan Odgaard wrote: > I updated the default command to use your script if either iTerm is > running or TM_TERMINAL is set to iTerm. Thanks Allan. One less custom command to worry about! ;) Glad you found the script useful. -- FredB From info at webrevolution.org Sat May 5 21:36:04 2007 From: info at webrevolution.org (ZulloP) Date: Sat, 5 May 2007 14:36:04 -0700 (PDT) Subject: [TxMt] question regarding CSS brackets Message-ID: <10340447.post@talk.nabble.com> I noticed Textmate automatically formats the curvy brackets in the following way: #test{} any way to modify it like: #test { } Many thanks in advance. -- View this message in context: http://www.nabble.com/question-regarding-CSS-brackets-tf3697791.html#a10340447 Sent from the textmate users mailing list archive at Nabble.com. From sami.samhuri at gmail.com Sat May 5 22:34:27 2007 From: sami.samhuri at gmail.com (Sami Samhuri) Date: Sat, 5 May 2007 15:34:27 -0700 Subject: [TxMt] The Dvorak-Qwerty layout, 2 years later In-Reply-To: References: <74246a100705041244p28bb83bck913586cc0b4fb9a3@mail.gmail.com> Message-ID: <74246a100705051534r70090f7ex8872a37b8f78f4f5@mail.gmail.com> On 5/5/07, Allan Odgaard wrote: > > As for what Leopard may or may not change, I can't say. > I suspected this would be the case. > But there is one new line in a header that has made me add "revisit key > event > decoding" to the to-do. But don't get your hopes up, it's no simple > thing, and presently I have no idea if the new route is plausible. Ok thanks for the honest response. It's pretty much what I expected. I'll just transition to pure Dvorak. -- Sami -------------- next part -------------- An HTML attachment was scrubbed... URL: From jacobolus at gmail.com Sat May 5 22:52:22 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Sat, 05 May 2007 18:52:22 -0400 Subject: [TxMt] Re: question regarding CSS brackets In-Reply-To: <10340447.post@talk.nabble.com> References: <10340447.post@talk.nabble.com> Message-ID: ZulloP wrote: > I noticed Textmate automatically formats the curvy brackets in the following > way: > > #test{} > > any way to modify it like: > > #test { } You?ll have to be a lot more specific. TextMate doesn?t ?format? curly braces at all, to my knowledge. It does have a ?typing pairs? feature which will insert a closing `}` when you type `{`. Is this what you are referring to? From info at webrevolution.org Sat May 5 23:02:13 2007 From: info at webrevolution.org (ZulloP) Date: Sat, 5 May 2007 16:02:13 -0700 (PDT) Subject: [TxMt] question regarding CSS brackets In-Reply-To: References: <10340447.post@talk.nabble.com> Message-ID: <10341097.post@talk.nabble.com> Hello Jacob Rus4, yes, I'm talking about the "typing pairs? feature... sorry! I would like to have #test{[space][curosor here][space]} I'hope is clear enoguh. Thanks for your help. -- View this message in context: http://www.nabble.com/question-regarding-CSS-brackets-tf3697791.html#a10341097 Sent from the textmate users mailing list archive at Nabble.com. From jacobolus at gmail.com Sun May 6 00:42:15 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Sat, 05 May 2007 20:42:15 -0400 Subject: [TxMt] Re: question regarding CSS brackets In-Reply-To: <10341097.post@talk.nabble.com> References: <10340447.post@talk.nabble.com> <10341097.post@talk.nabble.com> Message-ID: ZulloP wrote: > Hello Jacob Rus, yes, I'm talking about the "typing pairs" feature.... sorry! > I would like to have #test{[space][curosor here][space]} > > I hope [that] is clear enoguh. Okay, what you'll want to do then is to create a [macro][1], which first types `{`, then types two spaces, then moves one character to the left. -Jacob [1]: http://macromates.com/textmate/manual/macros#macros From yqiang at gmail.com Sun May 6 01:07:39 2007 From: yqiang at gmail.com (Yi Qiang) Date: Sat, 5 May 2007 18:07:39 -0700 Subject: [TxMt] Using Projects on remote servers - the easy way In-Reply-To: <8A13E933-D4E6-4286-80DE-BCCB50270B25@minimaldesign.net> References: <8A13E933-D4E6-4286-80DE-BCCB50270B25@minimaldesign.net> Message-ID: <9AEA504E-7A23-4C3E-A9D2-A282DC43298E@gmail.com> On May 5, 2007, at 10:02 AM, Yann B wrote: > Sorry if it's old news for some of you guys, but I just found out > that using MacFUSE and sshfs makes it super easy to use TextMate > projects/tabs with files on remotes servers (as long as you have > SSH access). I know the question comes back once in a while on > here, and I for one was never really satisfied with the workarounds > people suggested... > > This solution makes it really dead simple to get access to all > TextMate Project features... I wrote up a little blog post with the > details if someone's interested: > > http://minimaldesign.net/blog/workflow/remote-textmate-projects > > Hope it helps :) Fantastic write up! I was _very_ surprised at how easy it was to set up macfuse and sshfuse. This is off topic so please reply in private if you wish. Is it possible to automount sshfs volumes? Cheers, Yi -- http://www.yiqiang.net From gerti-textmate at bitart.com Sun May 6 03:48:44 2007 From: gerti-textmate at bitart.com (Gerd Knops) Date: Sat, 5 May 2007 22:48:44 -0500 Subject: [TxMt] Using Projects on remote servers - the easy way In-Reply-To: <9AEA504E-7A23-4C3E-A9D2-A282DC43298E@gmail.com> References: <8A13E933-D4E6-4286-80DE-BCCB50270B25@minimaldesign.net> <9AEA504E-7A23-4C3E-A9D2-A282DC43298E@gmail.com> Message-ID: <89242231-A7C7-4465-99FD-D9B46EE8D389@bitart.com> On May 5, 2007, at 8:07 PM, Yi Qiang wrote: > > Is it possible to automount sshfs volumes? Not sure if it works for sshfs volumes, but a little known feature is that one can drag a mounted volume into the 'Login Items' TableView (System Preferences/Accounts/Login Items). Works at least for webdav volumes. Gerd From n.kobschaetzki at googlemail.com Sun May 6 05:44:26 2007 From: n.kobschaetzki at googlemail.com (=?ISO-8859-1?Q?Niels_Kobsch=E4tzki?=) Date: Sun, 6 May 2007 07:44:26 +0200 Subject: [TxMt] Find in Selection? Message-ID: <9FB9C70D-458C-46C8-B607-AF557018245D@googlemail.com> Hi! Is there a way for do a "replace all" only in a selection? I can only find "Use selection for find" but that puts only the selected text into the find-part of the find-dialog. I searched for something like this in TextMate already quite often and therefore I think other ppl would use it as well but I can't remember that I've ever read a feature request for this, therefore it must be somewhere? Niels From regisjf at gmail.com Sun May 6 05:57:01 2007 From: regisjf at gmail.com (J Fischer) Date: Sat, 5 May 2007 22:57:01 -0700 Subject: [TxMt] Scope and Preprocessing for personal Markup Message-ID: <163123eb0705052257l3b717e67xea1f21d555303802@mail.gmail.com> Hi, Within the time constraints, I've done what searching I can through the docs, wiki, and mailing list archives to get a personal markup bundle working. Thanks to the clear documentation and a lot of the archived posts here, I have all the snippets and syntax coloring working. However, there are a couple of things that I still haven't worked out, which I could use a little help with. I apologize if they've been covered before and I missed them. If I had more time, I'd keep searching around for the answers, but with an upcoming deadline, I just have to get some guidance. My bundle is called "jmarkup" and I've set most of the scope selectors to "text." (BTW, I still don't competely get how to choose scope selectors, despite reading that section many times.) I'll probably do most of my writing in Latex or Markdown (or MMD), and currently I have to go back and forth between syntax coloring for either Latex or jmarkup. 1) Can I somehow set my scope so that I can see it colored while I'm in Latex and MMD? 2) Could someone point me to a place explaining how I could process my markup before the latex. E.g. So that when I hit the key combo to preview the Latex, everything is preprocessed to replace my [[note syntax ]] with Latex markup for left and right margin notes. 3) Referring to #2 above, could I have separate processing-replacements set up for whether I was making an output for myself (e.g. working draft with all notes and markup) or for my advisor (e.g. print draft without notes and hiding my in-line styles, like "revise" or "check facts")? 4) What would the best bundle be to use as an example of how to gather all "action" markups in to a separate document? For example, I might have a fact that is suffixed with [!check this!] and I want to gather all lines that have that [!...!] in them. I assume this might be similar to the TODO or GTDalt bundles but haven't checked them out yet. Thanks all for any advice and help. I know I've asked a lot here, but even just pointers to where I can find the best examples of implementations of each would really help me out. Thanks, Jeff -------------- next part -------------- An HTML attachment was scrubbed... URL: From barmstrong at gmail.com Sun May 6 06:22:19 2007 From: barmstrong at gmail.com (Brian Armstrong) Date: Sun, 6 May 2007 01:22:19 -0500 Subject: [TxMt] Reformat php? Message-ID: <75e366820705052322h4878bf14v4aaae310c626a460@mail.gmail.com> Hi All, I'm new to Textmate, and I have to say I am most impressed! What a beautiful piece of software. I downloaded the 30 day trial, and I am having problems with one thing: reformatting php code. Let's say I had a piece of code like this: // make sure it doesn't crash in an ugly way if (!function_exists('foo')) { die("this function required"); } and I run the reformat on it, or ^Q, then I get this: // make sure it doesn't crash in an ugly way if (!function_exists('foo')) { die("this function required"); } Not very helpful, and you notice that the 'if' is now on a comment line! Note that this performs the same whether I have the file showing as HTML or PHP. Given the amount of work that's gone into PHP capability overall (great completion for example) I'm shocked that this is standard behavior out of the box. Would love to get some tips from the textmate masters on here. Thank you! Brian Armstrong From chip.cullen at gmail.com Sun May 6 07:07:10 2007 From: chip.cullen at gmail.com (Chip Cullen) Date: Sun, 6 May 2007 16:07:10 +0900 Subject: [TxMt] HTML Special Character Bundles Message-ID: I came up with these the other day, and thought someone else might find these useful. They're very small bundles that simply let you type (while working in HTML) and have properly coded typographic characters. I come from a print design background, and am used to being rather particular with my typography. One of my biggest pet peeves is seeing a double tick mark (") where a proper quote mark (") should be. I've been learning to hand-code my websites, but something that always frustrated me with HTML was having to code out – when I was used to just hitting opt - (hyphen). So I came up with the attached snippets that let me do what I wanted to do - I can type the character as I'm used to typing it, and Textmate inserts the proper HTML code. I'll be honest, I got the idea for this when I tried out SkEdit - it was the one feature that I missed in Textmate. But it was easy enough to add myself. Enjoy! I hope there are some typophiles that will like this! -------------- next part -------------- A non-text attachment was scrubbed... Name: ? en dash.tmSnippet Type: application/octet-stream Size: 536 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ? - Left Single Quote.tmSnippet Type: application/octet-stream Size: 548 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ? em dash.tmSnippet Type: application/octet-stream Size: 536 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ? - Right Single Quote - apostraphe.tmSnippet Type: application/octet-stream Size: 562 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ? - Right Double Quote.tmSnippet Type: application/octet-stream Size: 549 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ? - Left Double Quote.tmSnippet Type: application/octet-stream Size: 548 bytes Desc: not available URL: From dan at tangledhelix.com Sun May 6 07:47:37 2007 From: dan at tangledhelix.com (Dan Lowe) Date: Sun, 6 May 2007 03:47:37 -0400 Subject: [TxMt] Reformat php? In-Reply-To: <75e366820705052322h4878bf14v4aaae310c626a460@mail.gmail.com> References: <75e366820705052322h4878bf14v4aaae310c626a460@mail.gmail.com> Message-ID: <132C0536-A0A3-4C6E-95AC-CF62C96D7443@tangledhelix.com> On May 6, 2007, at 2:22 AM, Brian Armstrong wrote: > and I run the reformat on it, or ^Q, then I get this: > > // make sure it doesn't crash in an ugly way if > (!function_exists('foo')) { die("this function required"); } > > Not very helpful, and you notice that the 'if' is now on a comment > line! ^Q is a paragraph reformat, which as you have found is not so great for code. I believe what you are looking for is a way to (re-)indent code, in which case you want this: Text -> Indent Selection ( cmd-opt-[ ) Note that you need to have a selection active for this to be available. Otherwise it will act on the current line only. -dan From erwan at rail.eu.org Sun May 6 08:05:23 2007 From: erwan at rail.eu.org (Erwan David) Date: Sun, 6 May 2007 10:05:23 +0200 Subject: [TxMt] Reformat php? In-Reply-To: <132C0536-A0A3-4C6E-95AC-CF62C96D7443@tangledhelix.com> References: <75e366820705052322h4878bf14v4aaae310c626a460@mail.gmail.com> <132C0536-A0A3-4C6E-95AC-CF62C96D7443@tangledhelix.com> Message-ID: <20070506080523.GA2587@rail.eu.org> Le Sun 6/05/2007, Dan Lowe disait > > On May 6, 2007, at 2:22 AM, Brian Armstrong wrote: > > > and I run the reformat on it, or ^Q, then I get this: > > > > // make sure it doesn't crash in an ugly way if > > (!function_exists('foo')) { die("this function required"); } > > > > Not very helpful, and you notice that the 'if' is now on a comment line! > > ^Q is a paragraph reformat, which as you have found is not so great for > code. I believe what you are looking for is a way to (re-)indent code, in > which case you want this: > > Text -> Indent Selection ( cmd-opt-[ ) > > Note that you need to have a selection active for this to be available. > Otherwise it will act on the current line only. Is there a way to rebind this ? On a french keyboard, [ is Shift-opt-5 thus a problem to get opt-[ -- Erwan From ciawal at gmail.com Sun May 6 08:50:05 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Sun, 6 May 2007 09:50:05 +0100 Subject: [TxMt] Find in Selection? In-Reply-To: <9FB9C70D-458C-46C8-B607-AF557018245D@googlemail.com> References: <9FB9C70D-458C-46C8-B607-AF557018245D@googlemail.com> Message-ID: <0871326B-738B-46FB-815C-F1F9090BE464@gmail.com> On 6 May 2007, at 06:44, Niels Kobsch?tzki wrote: > Hi! > > Is there a way for do a "replace all" only in a selection? I can > only find "Use selection for find" but that puts only the selected > text into the find-part of the find-dialog. > I searched for something like this in TextMate already quite often > and therefore I think other ppl would use it as well but I can't > remember that I've ever read a feature request for this, therefore > it must be somewhere? Hold shift when doing the replace (either ???F or when clicking the replace button) From jacobolus at gmail.com Sun May 6 08:51:29 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Sun, 06 May 2007 04:51:29 -0400 Subject: [TxMt] Re: Find in Selection? In-Reply-To: <9FB9C70D-458C-46C8-B607-AF557018245D@googlemail.com> References: <9FB9C70D-458C-46C8-B607-AF557018245D@googlemail.com> Message-ID: Niels Kobsch?tzki wrote: > Is there a way for do a "replace all" only in a selection? I can only > find "Use selection for find" but that puts only the selected text into > the find-part of the find-dialog. > I searched for something like this in TextMate already quite often and > therefore I think other ppl would use it as well but I can't remember > that I've ever read a feature request for this, therefore it must be > somewhere? In the find dialog, try pressing the ? (opt) key. -Jacob From jacobolus at gmail.com Sun May 6 08:59:59 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Sun, 06 May 2007 04:59:59 -0400 Subject: [TxMt] Re: HTML Special Character Bundles In-Reply-To: References: Message-ID: Chip Cullen wrote: > I came up with these the other day, and thought someone else might Have you tried smarty pants (or TM's markdown bundle which also runs smarty pants?) -Jacob From n.kobschaetzki at googlemail.com Sun May 6 09:01:49 2007 From: n.kobschaetzki at googlemail.com (=?ISO-8859-1?Q?Niels_Kobsch=E4tzki?=) Date: Sun, 6 May 2007 11:01:49 +0200 Subject: [TxMt] Re: Find in Selection? In-Reply-To: References: <9FB9C70D-458C-46C8-B607-AF557018245D@googlemail.com> Message-ID: <8AF554E7-41C6-45EE-B760-C959093E8545@googlemail.com> On May 6, 2007, at 10:51 AM, Jacob Rus wrote: > Niels Kobsch?tzki wrote: >> Is there a way for do a "replace all" only in a selection? I can >> only find "Use selection for find" but that puts only the selected >> text into the find-part of the find-dialog. >> I searched for something like this in TextMate already quite often >> and therefore I think other ppl would use it as well but I can't >> remember that I've ever read a feature request for this, therefore >> it must be somewhere? > > In the find dialog, try pressing the ? (opt) key. Thx a lot (also for the thing with shift from Ciar?n) Niels From chip.cullen at gmail.com Sun May 6 09:24:08 2007 From: chip.cullen at gmail.com (Chip Cullen) Date: Sun, 6 May 2007 18:24:08 +0900 Subject: [TxMt] Re: HTML Special Character Bundles In-Reply-To: References: Message-ID: In a word, no. I had filtered out the markdown bundle, so I hadn't explored it. Besides, smartypants doesn't do exactly what I wanted to do, anyway, as I understand it. It takes "period period period" and turns it into "?" I was trying to have the effect of just typing from within an HTML document, using the typing that I am used to, and having TM automagically insert the right HTML code for that typographic mark. If Smarty Pants does this as well, I didn't see it. But thanks for pointing it out - I had no idea! On 5/6/07, Jacob Rus wrote: > Chip Cullen wrote: > > I came up with these the other day, and thought someone else might > > Have you tried smarty pants (or TM's markdown bundle which also runs > smarty pants?) > > -Jacob > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From info at webrevolution.org Sun May 6 10:18:54 2007 From: info at webrevolution.org (ZulloP) Date: Sun, 6 May 2007 03:18:54 -0700 (PDT) Subject: [TxMt] question regarding CSS brackets In-Reply-To: References: <10340447.post@talk.nabble.com> <10341097.post@talk.nabble.com> Message-ID: <10344154.post@talk.nabble.com> Many thanks for your help Jacob. -- View this message in context: http://www.nabble.com/question-regarding-CSS-brackets-tf3697791.html#a10344154 Sent from the textmate users mailing list archive at Nabble.com. From fredb7 at gmail.com Sun May 6 13:09:52 2007 From: fredb7 at gmail.com (Fred B) Date: Sun, 6 May 2007 15:09:52 +0200 Subject: [TxMt] Reformat php? In-Reply-To: <20070506080523.GA2587@rail.eu.org> References: <75e366820705052322h4878bf14v4aaae310c626a460@mail.gmail.com> <132C0536-A0A3-4C6E-95AC-CF62C96D7443@tangledhelix.com> <20070506080523.GA2587@rail.eu.org> Message-ID: <9c31463d0705060609md6c85d1y5f839fefb4a84a7e@mail.gmail.com> On 5/6/07, Erwan David wrote: > Is there a way to rebind this ? On a french keyboard, [ is Shift-opt-5 thus a > problem to get opt-[ I know what you feel about brackets in shortcuts. Quick, before someone, obviously not writing in french, advises you to switch to a US layout ;) : You can change every menu key bindings in System Preferences, Keyboard & Mouse, Keyboard Shortcuts. Be sure to enter the exact menu title. I usually simply replace brackets by parenthesis. The funny part is that key binding is the subject of today's Macromates blog post[1]. [1]: http://macromates.com/blog/archives/2007/05/06/textmates-many-key-shortcuts/ From oblivious at subtlegradient.com Sun May 6 13:20:46 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Sun, 6 May 2007 09:20:46 -0400 Subject: [TxMt] Re: question regarding CSS brackets In-Reply-To: References: <10340447.post@talk.nabble.com> <10341097.post@talk.nabble.com> Message-ID: <082D8EEE-22FA-423F-9CCE-7E9E0FB14471@subtlegradient.com> On May 5, 2007, at 8:42 PM, Jacob Rus wrote: > ZulloP wrote: >> Hello Jacob Rus, yes, I'm talking about the "typing pairs" >> feature.... sorry! >> I would like to have #test{[space][curosor here][space]} >> I hope [that] is clear enoguh. > > Okay, what you'll want to do then is to create a [macro][1], which > first types `{`, then types two spaces, then moves one character to > the left. > > -Jacob > > [1]: http://macromates.com/textmate/manual/macros#macros I just added a couple CSS formatting macros to the CSS bundle. You may find them useful. thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From erwan at rail.eu.org Sun May 6 14:21:25 2007 From: erwan at rail.eu.org (Erwan David) Date: Sun, 6 May 2007 16:21:25 +0200 Subject: [TxMt] Reformat php? In-Reply-To: <9c31463d0705060609md6c85d1y5f839fefb4a84a7e@mail.gmail.com> References: <75e366820705052322h4878bf14v4aaae310c626a460@mail.gmail.com> <132C0536-A0A3-4C6E-95AC-CF62C96D7443@tangledhelix.com> <20070506080523.GA2587@rail.eu.org> <9c31463d0705060609md6c85d1y5f839fefb4a84a7e@mail.gmail.com> Message-ID: <20070506142125.GD2587@rail.eu.org> Le Sun 6/05/2007, Fred B disait > On 5/6/07, Erwan David wrote: > > > Is there a way to rebind this ? On a french keyboard, [ is Shift-opt-5 thus > > a > > problem to get opt-[ > > I know what you feel about brackets in shortcuts. > Quick, before someone, obviously not writing in french, advises you to > switch to a US layout ;) : > > You can change every menu key bindings in System Preferences, Keyboard > & Mouse, Keyboard Shortcuts. Be sure to enter the exact menu title. I > usually simply replace brackets by parenthesis. > > The funny part is that key binding is the subject of today's > Macromates blog post[1]. > > [1]: > http://macromates.com/blog/archives/2007/05/06/textmates-many-key-shortcuts/ Thanks a lot. -- Erwan From gerti-textmate at bitart.com Sun May 6 16:17:44 2007 From: gerti-textmate at bitart.com (Gerd Knops) Date: Sun, 6 May 2007 11:17:44 -0500 Subject: [TxMt] XCode - Clickable error messages In-Reply-To: <7B89CFDC-4F07-438B-AE49-08F4DC3F4E24@macromates.com> References: <429C6234-FBFC-4772-8791-7D4B47A75347@incomumdesign.com> <99193443-B5C9-4A73-A3F0-B743EFEEC1AE@bitart.com> <7B89CFDC-4F07-438B-AE49-08F4DC3F4E24@macromates.com> Message-ID: <535CB77A-7214-4F44-911B-32C01ACEB77D@bitart.com> On May 5, 2007, at 4:10 AM, Allan Odgaard wrote: > On 3. May 2007, at 16:37, Gerd Knops wrote: > >> [...] >> You know, I still haven't forgiven you for removing that output >> option where one could enter a pattern. Since then my tools spend >> a lot more code on formatting output then on getting their job done. > > Here?s an idea: write your own tool and use that: > > ?my command?|?my tool that catches output? > > You could do that tool in a dozen lines of perl and use tm_dialog > to open the output console. Within a few hours, you should have > something vastly superior to that crappy window I killed. > While true (and I have done that), the key here is "Within a few hours" * languages/compilers/whatever used... The old method, while it may have been crappy, allowed me to get something reasonable within a minute or three. Anyhow, my actual point was: I'd much rather have the added value of TM doing something smart with some carefully crafted (eg matching an expression) ascii debug output then having to write a custom filter (which makes my program dependant on it, bad when others using other environments work with it), or, gasp, actually have to emit my debug messages in html. I *hate* handcrafting html. Debugging output is often very short-lived. It should require minimum effort to add and remove to/from code. Gerd From barmstrong at gmail.com Sun May 6 16:36:11 2007 From: barmstrong at gmail.com (Brian Armstrong) Date: Sun, 6 May 2007 11:36:11 -0500 Subject: [TxMt] Re: textmate Digest, Vol 32, Issue 6 In-Reply-To: <20070506120026.EBA8E63BB@comox.textdrive.com> References: <20070506120026.EBA8E63BB@comox.textdrive.com> Message-ID: <75e366820705060936k325199dcp4fbfd6abdd568482@mail.gmail.com> Dan, thank you so much that was exactly what I was looking for! Thanks! Brian On 5/6/07, textmate-request at lists.macromates.com wrote: > Send textmate mailing list submissions to > textmate at 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 at lists.macromates.com > > You can reach the person managing the list at > textmate-owner at 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: Patch for LaTex Bundle (Xavier Cambar) > 2. Re: Patch for LaTex Bundle (Charilaos Skiadas) > 3. Re: periodic key binding freak-out (Grant Hollingworth) > 4. Re: Patch for LaTex Bundle (Xavier Cambar) > 5. Using Projects on remote servers - the easy way (Yann B) > 6. Re: Feature request: "Open Terminal here ..." (Fred B) > 7. question regarding CSS brackets (ZulloP) > 8. Re: The Dvorak-Qwerty layout, 2 years later (Sami Samhuri) > 9. Re: question regarding CSS brackets (Jacob Rus) > 10. Re: question regarding CSS brackets (ZulloP) > 11. Re: question regarding CSS brackets (Jacob Rus) > 12. Re: Using Projects on remote servers - the easy way (Yi Qiang) > 13. Re: Using Projects on remote servers - the easy way (Gerd Knops) > 14. Find in Selection? (Niels Kobsch?tzki) > 15. Scope and Preprocessing for personal Markup (J Fischer) > 16. Reformat php? (Brian Armstrong) > 17. HTML Special Character Bundles (Chip Cullen) > 18. Re: Reformat php? (Dan Lowe) > 19. Re: Reformat php? (Erwan David) > 20. Re: Find in Selection? (Ciar?n Walsh) > 21. Re: Find in Selection? (Jacob Rus) > 22. Re: HTML Special Character Bundles (Jacob Rus) > 23. Re: Re: Find in Selection? (Niels Kobsch?tzki) > 24. Re: Re: HTML Special Character Bundles (Chip Cullen) > 25. Re: question regarding CSS brackets (ZulloP) > > > ---------- Forwarded message ---------- > From: Xavier Cambar > To: TextMate users > Date: Sat, 5 May 2007 17:14:37 +0200 > Subject: Re: [TxMt] Patch for LaTex Bundle > Going on this way, I found out that the command was used to open > files in a separate window. > I am looking for a way to open incuded files in a tab. I thought of a > recursive search, starting from the folder of the master file (if not > defined, the currently opened one), or even better, opening the right > file from the ones in the current project. Anyhow, there are many > ways to make this efficient, but I have no idea how to open a file in > a tab... Commands generally use 'mate', which (as far as I know) > isn't able of this... > > Well, any idea? > Xavier > > Le 4 mai 07 ? 21:19, Charilaos Skiadas a ?crit : > > > Xavier, > > > > Thanks for the patch, sorry it took me so long to commit it. > > > > Haris Skiadas > > Department of Mathematics and Computer Science > > Hanover College > > > > On Apr 20, 2007, at 12:27 PM, Xavier CAMBAR wrote: > > > >> Context: > >> I needed to insert tex files which filenames contained spaces into > >> my document. LaTex can handle this efficiently if quotes are > >> provided in the \include (like in \include{"bla bla/bla bla"}). > >> > >> For easy moving along my document, I intended to use the "Open > >> Included File" command. But that command doesn't handle the quoted > >> filenames, as the quotes are taken into account as normal characters. > >> So here I am with a line to be added to that command in order to > >> correct that misbehaviour: > >> > >> 10: ... > >> 11: if options.empty? > >> 12: print "Did not find any appropriate item to open in #{ENV > >> ['TM_SELECTED_TEXT'] ? "selection" : "current line" }" > >> 13: else > >> 14: options[0].each{|el| el.gsub!(/(^\")?(\"$)?/, '')} > >> #<-- Here it is! > >> 15: filepath = `kpsewhich #{e_sh options[0]}`.chomp > >> 16: if filepath.empty? > >> 17: ... > >> > >> I don't know how to commit changes in a bundle (according I am > >> allowed to!). So now it's up to you, folks, to add it to the > >> repository. > >> Note that I quickly and unformally tested it, and everything seems > >> ok. > >> > >> Xavier Cambar > > > > > > > ______________________________________________________________________ > > For new threads USE THIS: textmate at lists.macromates.com > > (threading gets destroyed and the universe will collapse if you don't) > > http://lists.macromates.com/mailman/listinfo/textmate > > > > > ---------- Forwarded message ---------- > From: Charilaos Skiadas > To: TextMate users > Date: Sat, 5 May 2007 11:24:53 -0400 > Subject: Re: [TxMt] Patch for LaTex Bundle > > On May 5, 2007, at 11:14 AM, Xavier Cambar wrote: > > > Going on this way, I found out that the command was used to open > > files in a separate window. > > I am looking for a way to open incuded files in a tab. I thought of > > a recursive search, starting from the folder of the master file (if > > not defined, the currently opened one), or even better, opening the > > right file from the ones in the current project. Anyhow, there are > > many ways to make this efficient, but I have no idea how to open a > > file in a tab... Commands generally use 'mate', which (as far as I > > know) isn't able of this... > > For me the command opens files in a new tab, and not in a separate > window. Perhaps the files you are trying to open are not in the > project/folder? > > > Well, any idea? > > Xavier > > Haris Skiadas > Department of Mathematics and Computer Science > Hanover College > > > > > > > > ---------- Forwarded message ---------- > From: Grant Hollingworth > To: textmate at lists.macromates.com > Date: Sat, 5 May 2007 09:49:33 -0600 > Subject: Re: [TxMt] periodic key binding freak-out > * Allan Odgaard [2007-05-05 02:12]: > >The 0x200000 is the NSNumericPadKeyMask. > > > >Are you using a PC keyboard possibly with some adaptor? Is there a > >num-lock key you can press? If so, try see if just pressing that > >doesn't toggle the behavior. > > I'm using my MacBook Pro's built-in keyboard. Turning on numlock does give > me that modifier, but it changes the key to its inset number pad equivalent: > '*' instead of 'p'. > > Characters: * > Unicode: 42 / 0x2a > Keys: ?^* > Key Code: 67 / 0x43 > Modifiers: 2490627 / 0x260103 > > When I was having problems, the key stayed as 'p'. So somehow the mask was > flipped on but without my keyboard layout changing. > > > > ---------- Forwarded message ---------- > From: Xavier Cambar > To: TextMate users > Date: Sat, 5 May 2007 18:29:58 +0200 > Subject: Re: [TxMt] Patch for LaTex Bundle > > Le 5 mai 07 ? 17:24, Charilaos Skiadas a ?crit : > > For me the command opens files in a new tab, and not in a separate > > window. Perhaps the files you are trying to open are not in the > > project/folder? > > Yes, they are. Even better, whether the files are already opened in a > tab or not doesn't change the result. They keep on (re)opening in a > new window. > Damn... > > Xavier > > > ---------- Forwarded message ---------- > From: Yann B > To: textmate at lists.macromates.com > Date: Sat, 5 May 2007 13:02:10 -0400 > Subject: [TxMt] Using Projects on remote servers - the easy way > Sorry if it's old news for some of you guys, but I just found out > that using MacFUSE and sshfs makes it super easy to use TextMate > projects/tabs with files on remotes servers (as long as you have SSH > access). I know the question comes back once in a while on here, and > I for one was never really satisfied with the workarounds people > suggested... > > This solution makes it really dead simple to get access to all > TextMate Project features... I wrote up a little blog post with the > details if someone's interested: > > http://minimaldesign.net/blog/workflow/remote-textmate-projects > > Hope it helps :) > > > > ---------- Forwarded message ---------- > From: "Fred B" > To: "TextMate users" > Date: Sat, 5 May 2007 19:05:03 +0200 > Subject: Re: [TxMt] Feature request: "Open Terminal here ..." > On 5/4/07, Allan Odgaard wrote: > > I updated the default command to use your script if either iTerm is > > running or TM_TERMINAL is set to iTerm. > > Thanks Allan. One less custom command to worry about! ;) > Glad you found the script useful. > > -- > FredB > > > > ---------- Forwarded message ---------- > From: ZulloP > To: textmate at lists.macromates.com > Date: Sat, 5 May 2007 14:36:04 -0700 (PDT) > Subject: [TxMt] question regarding CSS brackets > > I noticed Textmate automatically formats the curvy brackets in the following > way: > > #test{} > > any way to modify it like: > > #test { } > > Many thanks in advance. > -- > View this message in context: > http://www.nabble.com/question-regarding-CSS-brackets-tf3697791.html#a10340447 > Sent from the textmate users mailing list archive at Nabble.com. > > > > > ---------- Forwarded message ---------- > From: "Sami Samhuri" > To: "TextMate users" > Date: Sat, 5 May 2007 15:34:27 -0700 > Subject: Re: [TxMt] The Dvorak-Qwerty layout, 2 years later > On 5/5/07, Allan Odgaard wrote: > > As for what Leopard may or may not change, I can't say. > > > > I suspected this would be the case. > > > But there is one new line in a header that has made me add "revisit key > event > > decoding" to the to-do. But don't get your hopes up, it's no simple > > thing, and presently I have no idea if the new route is plausible. > > > Ok thanks for the honest response. It's pretty much what I expected. I'll > just transition to pure Dvorak. > > > -- Sami > > ---------- Forwarded message ---------- > From: Jacob Rus > To: textmate at lists.macromates.com > Date: Sat, 05 May 2007 18:52:22 -0400 > Subject: [TxMt] Re: question regarding CSS brackets > ZulloP wrote: > > I noticed Textmate automatically formats the curvy brackets in the > following > > way: > > > > #test{} > > > > any way to modify it like: > > > > #test { } > > You'll have to be a lot more specific. TextMate doesn't "format" curly > braces at all, to my knowledge. It does have a "typing pairs" feature > which will insert a closing `}` when you type `{`. Is this what you are > referring to? > > > > > ---------- Forwarded message ---------- > From: ZulloP > To: textmate at lists.macromates.com > Date: Sat, 5 May 2007 16:02:13 -0700 (PDT) > Subject: Re: [TxMt] question regarding CSS brackets > > Hello Jacob Rus4, yes, I'm talking about the "typing pairs" feature... > sorry! > I would like to have #test{[space][curosor here][space]} > > I'hope is clear enoguh. > > Thanks for your help. > -- > View this message in context: > http://www.nabble.com/question-regarding-CSS-brackets-tf3697791.html#a10341097 > Sent from the textmate users mailing list archive at Nabble.com. > > > > > ---------- Forwarded message ---------- > From: Jacob Rus > To: textmate at lists.macromates.com > Date: Sat, 05 May 2007 20:42:15 -0400 > Subject: [TxMt] Re: question regarding CSS brackets > ZulloP wrote: > > Hello Jacob Rus, yes, I'm talking about the "typing pairs" feature.... > sorry! > > I would like to have #test{[space][curosor here][space]} > > > > I hope [that] is clear enoguh. > > Okay, what you'll want to do then is to create a [macro][1], which first > types `{`, then types two spaces, then moves one character to the left. > > -Jacob > > [1]: http://macromates.com/textmate/manual/macros#macros > > > > > ---------- Forwarded message ---------- > From: Yi Qiang > To: TextMate users > Date: Sat, 5 May 2007 18:07:39 -0700 > Subject: Re: [TxMt] Using Projects on remote servers - the easy way > > On May 5, 2007, at 10:02 AM, Yann B wrote: > > > Sorry if it's old news for some of you guys, but I just found out > > that using MacFUSE and sshfs makes it super easy to use TextMate > > projects/tabs with files on remotes servers (as long as you have > > SSH access). I know the question comes back once in a while on > > here, and I for one was never really satisfied with the workarounds > > people suggested... > > > > This solution makes it really dead simple to get access to all > > TextMate Project features... I wrote up a little blog post with the > > details if someone's interested: > > > > > http://minimaldesign.net/blog/workflow/remote-textmate-projects > > > > Hope it helps :) > Fantastic write up! I was _very_ surprised at how easy it was to set > up macfuse and sshfuse. > > This is off topic so please reply in private if you wish. > > Is it possible to automount sshfs volumes? > > Cheers, > Yi > > -- > http://www.yiqiang.net > > > > > > ---------- Forwarded message ---------- > From: Gerd Knops > To: TextMate users > Date: Sat, 5 May 2007 22:48:44 -0500 > Subject: Re: [TxMt] Using Projects on remote servers - the easy way > On May 5, 2007, at 8:07 PM, Yi Qiang wrote: > > > > Is it possible to automount sshfs volumes? > > Not sure if it works for sshfs volumes, but a little known feature is > that one can drag a mounted volume into the 'Login Items' TableView > (System Preferences/Accounts/Login Items). Works at least for webdav > volumes. > > Gerd > > > > > ---------- Forwarded message ---------- > From: Niels Kobsch?tzki > To: TextMate users > Date: Sun, 6 May 2007 07:44:26 +0200 > Subject: [TxMt] Find in Selection? > Hi! > > Is there a way for do a "replace all" only in a selection? I can only > find "Use selection for find" but that puts only the selected text > into the find-part of the find-dialog. > I searched for something like this in TextMate already quite often > and therefore I think other ppl would use it as well but I can't > remember that I've ever read a feature request for this, therefore it > must be somewhere? > > Niels > > > ---------- Forwarded message ---------- > From: "J Fischer" > To: textmate at lists.macromates.com > Date: Sat, 5 May 2007 22:57:01 -0700 > Subject: [TxMt] Scope and Preprocessing for personal Markup > Hi, > > Within the time constraints, I've done what searching I can through the > docs, wiki, and mailing list archives to get a personal markup bundle > working. Thanks to the clear documentation and a lot of the archived posts > here, I have all the snippets and syntax coloring working. However, there > are a couple of things that I still haven't worked out, which I could use a > little help with. I apologize if they've been covered before and I missed > them. If I had more time, I'd keep searching around for the answers, but > with an upcoming deadline, I just have to get some guidance. > > My bundle is called "jmarkup" and I've set most of the scope selectors to > "text." (BTW, I still don't competely get how to choose scope selectors, > despite reading that section many times.) > > I'll probably do most of my writing in Latex or Markdown (or MMD), and > currently I have to go back and forth between syntax coloring for either > Latex or jmarkup. > > 1) Can I somehow set my scope so that I can see it colored while I'm in > Latex and MMD? > > 2) Could someone point me to a place explaining how I could process my > markup before the latex. E.g. So that when I hit the key combo to preview > the Latex, everything is preprocessed to replace my [[note syntax ]] with > Latex markup for left and right margin notes. > > 3) Referring to #2 above, could I have separate processing-replacements set > up for whether I was making an output for myself (e.g. working draft with > all notes and markup) or for my advisor (e.g. print draft without notes and > hiding my in-line styles, like "revise" or "check facts")? > > 4) What would the best bundle be to use as an example of how to gather all > "action" markups in to a separate document? For example, I might have a fact > that is suffixed with [!check this!] and I want to gather all lines that > have that [!...!] in them. I assume this might be similar to the TODO or > GTDalt bundles but haven't checked them out yet. > > > Thanks all for any advice and help. I know I've asked a lot here, but even > just pointers to where I can find the best examples of implementations of > each would really help me out. > > Thanks, > > Jeff > > ---------- Forwarded message ---------- > From: "Brian Armstrong" > To: textmate at lists.macromates.com > Date: Sun, 6 May 2007 01:22:19 -0500 > Subject: [TxMt] Reformat php? > Hi All, > > I'm new to Textmate, and I have to say I am most impressed! What a > beautiful piece of software. I downloaded the 30 day trial, and I am > having problems with one thing: reformatting php code. > > Let's say I had a piece of code like this: > > // make sure it doesn't crash in an ugly way > if (!function_exists('foo')) > { > die("this function required"); > } > > and I run the reformat on it, or ^Q, then I get this: > > // make sure it doesn't crash in an ugly way if > (!function_exists('foo')) { die("this function required"); } > > Not very helpful, and you notice that the 'if' is now on a comment line! > > Note that this performs the same whether I have the file showing as > HTML or PHP. Given the amount of work that's gone into PHP capability > overall (great completion for example) I'm shocked that this is > standard behavior out of the box. > > Would love to get some tips from the textmate masters on here. Thank you! > Brian Armstrong > > > > ---------- Forwarded message ---------- > From: "Chip Cullen" > To: textmate at lists.macromates.com > Date: Sun, 6 May 2007 16:07:10 +0900 > Subject: [TxMt] HTML Special Character Bundles > I came up with these the other day, and thought someone else might > find these useful. They're very small bundles that simply let you type > (while working in HTML) and have properly coded typographic > characters. > > I come from a print design background, and am used to being rather > particular with my typography. One of my biggest pet peeves is seeing > a double tick mark (") where a proper quote mark (") should be. > > I've been learning to hand-code my websites, but something that always > frustrated me with HTML was having to code out – when I was used > to just hitting opt - (hyphen). > > So I came up with the attached snippets that let me do what I wanted > to do - I can type the character as I'm used to typing it, and > Textmate inserts the proper HTML code. > > I'll be honest, I got the idea for this when I tried out SkEdit - it > was the one feature that I missed in Textmate. But it was easy enough > to add myself. > > Enjoy! I hope there are some typophiles that will like this! > > > ---------- Forwarded message ---------- > From: Dan Lowe > To: TextMate users > Date: Sun, 6 May 2007 03:47:37 -0400 > Subject: Re: [TxMt] Reformat php? > > On May 6, 2007, at 2:22 AM, Brian Armstrong wrote: > > > and I run the reformat on it, or ^Q, then I get this: > > > > // make sure it doesn't crash in an ugly way if > > (!function_exists('foo')) { die("this function required"); } > > > > Not very helpful, and you notice that the 'if' is now on a comment > > line! > > ^Q is a paragraph reformat, which as you have found is not so great > for code. I believe what you are looking for is a way to (re-)indent > code, in which case you want this: > > Text -> Indent Selection ( cmd-opt-[ ) > > Note that you need to have a selection active for this to be > available. Otherwise it will act on the current line only. > > -dan > > > > > > ---------- Forwarded message ---------- > From: Erwan David > To: textmate at lists.macromates.com > Date: Sun, 6 May 2007 10:05:23 +0200 > Subject: Re: [TxMt] Reformat php? > Le Sun 6/05/2007, Dan Lowe disait > > > > On May 6, 2007, at 2:22 AM, Brian Armstrong wrote: > > > > > and I run the reformat on it, or ^Q, then I get this: > > > > > > // make sure it doesn't crash in an ugly way if > > > (!function_exists('foo')) { die("this function required"); } > > > > > > Not very helpful, and you notice that the 'if' is now on a comment line! > > > > ^Q is a paragraph reformat, which as you have found is not so great for > > code. I believe what you are looking for is a way to (re-)indent code, in > > which case you want this: > > > > Text -> Indent Selection ( cmd-opt-[ ) > > > > Note that you need to have a selection active for this to be available. > > Otherwise it will act on the current line only. > > Is there a way to rebind this ? On a french keyboard, [ is Shift-opt-5 thus > a > problem to get opt-[ > > > > > -- > Erwan > > > > ---------- Forwarded message ---------- > From: Ciar?n Walsh > To: TextMate users > Date: Sun, 6 May 2007 09:50:05 +0100 > Subject: Re: [TxMt] Find in Selection? > On 6 May 2007, at 06:44, Niels Kobsch?tzki wrote: > > > Hi! > > > > Is there a way for do a "replace all" only in a selection? I can > > only find "Use selection for find" but that puts only the selected > > text into the find-part of the find-dialog. > > I searched for something like this in TextMate already quite often > > and therefore I think other ppl would use it as well but I can't > > remember that I've ever read a feature request for this, therefore > > it must be somewhere? > Hold shift when doing the replace (either ???F or when clicking > the replace button) > > > > > ---------- Forwarded message ---------- > From: Jacob Rus > To: textmate at lists.macromates.com > Date: Sun, 06 May 2007 04:51:29 -0400 > Subject: [TxMt] Re: Find in Selection? > Niels Kobsch?tzki wrote: > > Is there a way for do a "replace all" only in a selection? I can only > > find "Use selection for find" but that puts only the selected text into > > the find-part of the find-dialog. > > I searched for something like this in TextMate already quite often and > > therefore I think other ppl would use it as well but I can't remember > > that I've ever read a feature request for this, therefore it must be > > somewhere? > > In the find dialog, try pressing the ? (opt) key. > > -Jacob > > > > > ---------- Forwarded message ---------- > From: Jacob Rus > To: textmate at lists.macromates.com > Date: Sun, 06 May 2007 04:59:59 -0400 > Subject: [TxMt] Re: HTML Special Character Bundles > Chip Cullen wrote: > > I came up with these the other day, and thought someone else might > > Have you tried smarty pants (or TM's markdown bundle which also runs > smarty pants?) > > -Jacob > > > > > ---------- Forwarded message ---------- > From: Niels Kobsch?tzki > To: TextMate users > Date: Sun, 6 May 2007 11:01:49 +0200 > Subject: Re: [TxMt] Re: Find in Selection? > On May 6, 2007, at 10:51 AM, Jacob Rus wrote: > > > Niels Kobsch?tzki wrote: > >> Is there a way for do a "replace all" only in a selection? I can > >> only find "Use selection for find" but that puts only the selected > >> text into the find-part of the find-dialog. > >> I searched for something like this in TextMate already quite often > >> and therefore I think other ppl would use it as well but I can't > >> remember that I've ever read a feature request for this, therefore > >> it must be somewhere? > > > > In the find dialog, try pressing the ? (opt) key. > > Thx a lot (also for the thing with shift from Ciar?n) > > Niels > > > ---------- Forwarded message ---------- > From: "Chip Cullen" > To: "TextMate users" > Date: Sun, 6 May 2007 18:24:08 +0900 > Subject: Re: [TxMt] Re: HTML Special Character Bundles > In a word, no. I had filtered out the markdown bundle, so I hadn't > explored it. Besides, smartypants doesn't do exactly what I wanted to > do, anyway, as I understand it. It takes "period period period" and > turns it into "?" > > I was trying to have the effect of just typing from within an HTML > document, using the typing that I am used to, and having TM > automagically insert the right HTML code for that typographic mark. > > If Smarty Pants does this as well, I didn't see it. But thanks for > pointing it out - I had no idea! > > On 5/6/07, Jacob Rus wrote: > > Chip Cullen wrote: > > > I came up with these the other day, and thought someone else might > > > > Have you tried smarty pants (or TM's markdown bundle which also runs > > smarty pants?) > > > > -Jacob > > > > > > > ______________________________________________________________________ > > For new threads USE THIS: textmate at lists.macromates.com > > (threading gets destroyed and the universe will collapse if you don't) > > http://lists.macromates.com/mailman/listinfo/textmate > > > > > > ---------- Forwarded message ---------- > From: ZulloP > To: textmate at lists.macromates.com > Date: Sun, 6 May 2007 03:18:54 -0700 (PDT) > Subject: Re: [TxMt] question regarding CSS brackets > > Many thanks for your help Jacob. > -- > View this message in context: > http://www.nabble.com/question-regarding-CSS-brackets-tf3697791.html#a10344154 > Sent from the textmate users mailing list archive at Nabble.com. > > > > _______________________________________________ > textmate mailing list > textmate at lists.macromates.com > http://lists.macromates.com/mailman/listinfo/textmate > > From Soryu at serenity.de Sun May 6 16:42:27 2007 From: Soryu at serenity.de (Soryu) Date: Sun, 6 May 2007 18:42:27 +0200 Subject: [TxMt] Re: textmate Digest, Vol 32, Issue 6 In-Reply-To: <75e366820705060936k325199dcp4fbfd6abdd568482@mail.gmail.com> References: <20070506120026.EBA8E63BB@comox.textdrive.com> <75e366820705060936k325199dcp4fbfd6abdd568482@mail.gmail.com> Message-ID: <827CD3D1-BE18-4048-8F6B-A88B871720CE@serenity.de> On 06.05.2007, at 18:36, Brian Armstrong wrote: > Dan, thank you so much that was exactly what I was looking for! > Thanks! > Brian > I can certainly see a lot of [tofu][1]. Not was I was looking for, exactly. Soryu. [1]: http://en.wikipedia.org/wiki/Posting_styles From jacobolus at gmail.com Sun May 6 19:03:08 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Sun, 06 May 2007 15:03:08 -0400 Subject: [TxMt] Re: HTML Special Character Bundles In-Reply-To: References: Message-ID: Chip Cullen wrote: > In a word, no. I had filtered out the markdown bundle, so I hadn't > explored it. Besides, smartypants doesn't do exactly what I wanted to > do, anyway, as I understand it. It takes "period period period" and > turns it into "?" > > I was trying to have the effect of just typing from within an HTML > document, using the typing that I am used to, and having TM > automagically insert the right HTML code for that typographic mark. > > If Smarty Pants does this as well, I didn't see it. But thanks for > pointing it out - I had no idea! Smarty pants turns double hyphens into em- and en-dashes, straight quotes to smart quotes, `...` into `?`, `x` into `?`, etc. etc. From spamhalde at fastmail.fm Mon May 7 07:43:31 2007 From: spamhalde at fastmail.fm (rowkajjh) Date: Mon, 7 May 2007 09:43:31 +0200 Subject: [TxMt] Problem with snippet Message-ID: <1hxqlnw.10v7p6oe0o1zpN%spamhalde@fastmail.fm> Hello, I want a snippet that inserts $\mu$ behind a number (for example "10$\mu$"). The tab triggers is "m?" So I have to type "10" "blank" "m?" "tab". My snippet is "$$\mu m$$" But this does not word. I do not get the dollar signs. And I do not know how to go back one letter. How can I do that? Bye. From bibiko at eva.mpg.de Mon May 7 08:04:45 2007 From: bibiko at eva.mpg.de (Hans-Joerg Bibiko) Date: Mon, 7 May 2007 10:04:45 +0200 Subject: [TxMt] Problem with snippet In-Reply-To: <1hxqlnw.10v7p6oe0o1zpN%spamhalde@fastmail.fm> References: <1hxqlnw.10v7p6oe0o1zpN%spamhalde@fastmail.fm> Message-ID: <8F8CCE31-BC98-424F-9F11-E06510733780@eva.mpg.de> Hi, On 7 May 2007, at 09:43, rowkajjh wrote: > I want a snippet that inserts $\mu$ behind a number (for example > "10$\mu$"). > The tab triggers is "m?" > > So I have to type "10" "blank" "m?" "tab". > > My snippet is "$$\mu m$$" But this does not word. I do not get the > dollar signs. And I do not know how to go back one letter. How can > I do > that? To get a dollar sign you have to escape it by \ not by $. \$\mu m\$ But two questions in general: What do you want to do with it? And why you are not using a command with output 'Insert Text'? From spamhalde at fastmail.fm Mon May 7 10:43:14 2007 From: spamhalde at fastmail.fm (rowkajjh) Date: Mon, 7 May 2007 12:43:14 +0200 Subject: [TxMt] Re: Problem with snippet References: <1hxqlnw.10v7p6oe0o1zpN%spamhalde@fastmail.fm> <8F8CCE31-BC98-424F-9F11-E06510733780@eva.mpg.de> Message-ID: <1hxqtx2.apx4628jmex5N%spamhalde@fastmail.fm> Hans-Joerg Bibiko wrote: > To get a dollar sign you have to escape it by \ not by $. > \$\mu m\$ Aaah. And how do I get one space back? > But two questions in general: > What do you want to do with it? Not alwyas typing "$\mu m$". "m?" "tab" is easier. > And why you are not using a command with output 'Insert Text'? Dont know. What command? cat file or somehing like that? From abeyeler at dplanet.ch Mon May 7 11:19:32 2007 From: abeyeler at dplanet.ch (Antoine Beyeler) Date: Mon, 7 May 2007 13:19:32 +0200 Subject: [TxMt] Re: Problem with snippet In-Reply-To: <1hxqtx2.apx4628jmex5N%spamhalde@fastmail.fm> References: <1hxqlnw.10v7p6oe0o1zpN%spamhalde@fastmail.fm> <8F8CCE31-BC98-424F-9F11-E06510733780@eva.mpg.de> <1hxqtx2.apx4628jmex5N%spamhalde@fastmail.fm> Message-ID: <2412348E-41A5-4A9D-8F99-C8F61F6C6D64@dplanet.ch> > Aaah. And how do I get one space back? > >> But two questions in general: >> What do you want to do with it? > > Not alwyas typing "$\mu m$". "m?" "tab" is easier. What about \newcommand{\um}{$\mu m$}? :) Antoine From robin.houston at gmail.com Mon May 7 11:23:11 2007 From: robin.houston at gmail.com (Robin Houston) Date: Mon, 7 May 2007 12:23:11 +0100 Subject: [TxMt] Re: Problem with snippet In-Reply-To: <1hxqtx2.apx4628jmex5N%spamhalde@fastmail.fm> References: <1hxqlnw.10v7p6oe0o1zpN%spamhalde@fastmail.fm> <8F8CCE31-BC98-424F-9F11-E06510733780@eva.mpg.de> <1hxqtx2.apx4628jmex5N%spamhalde@fastmail.fm> Message-ID: <1b795e7b0705070423m2ed228f8g80b3cc65708dcfe2@mail.gmail.com> On 5/7/07, rowkajjh wrote: > > Aaah. And how do I get one space back? Set the tab trigger to " m?" instead of just "m?". Robin -------------- next part -------------- An HTML attachment was scrubbed... URL: From melo at simplicidade.org Mon May 7 13:21:32 2007 From: melo at simplicidade.org (Pedro Melo) Date: Mon, 7 May 2007 14:21:32 +0100 Subject: [TxMt] Shortcut for replace in selection Message-ID: <82081AC5-749E-4834-B321-0F7AA8E884B1@simplicidade.org> Hi, the most common search & replace I do is "Replace in Selection". I can do everything with the keyboard, including switching RegExp on and off, but I need to use the Alt/option key to switch to In Selection and the mouse to do it. I was wondering, is there anyway to access those buttons with the keyboard? Best regards, -- Pedro Melo Blog: http://www.simplicidade.org/notes/ Jabber ID: melo at simplicidade.org Use Jabber! From skiadas at hanover.edu Mon May 7 13:32:05 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Mon, 7 May 2007 09:32:05 -0400 Subject: [TxMt] Shortcut for replace in selection In-Reply-To: <82081AC5-749E-4834-B321-0F7AA8E884B1@simplicidade.org> References: <82081AC5-749E-4834-B321-0F7AA8E884B1@simplicidade.org> Message-ID: <126F6AAE-3B1F-48C2-B903-FE8090CCCEED@hanover.edu> Hi Pedro, On May 7, 2007, at 9:21 AM, Pedro Melo wrote: > Hi, > > the most common search & replace I do is "Replace in Selection". I > can do everything with the keyboard, including switching RegExp on > and off, but I need to use the Alt/option key to switch to In > Selection and the mouse to do it. > > I was wondering, is there anyway to access those buttons with the > keyboard? > Unless I've misunderstood you, Shift-Control-Cmd-F would do it. (Essentially you are accessing the corresponding menu items, I think). > Best regards, Haris Skiadas Department of Mathematics and Computer Science Hanover College From bibiko at eva.mpg.de Mon May 7 13:49:08 2007 From: bibiko at eva.mpg.de (=?ISO-8859-1?Q?Hans-J=F6rg_Bibiko?=) Date: Mon, 7 May 2007 15:49:08 +0200 Subject: [TxMt] Re: Problem with snippet In-Reply-To: <1hxqtx2.apx4628jmex5N%spamhalde@fastmail.fm> References: <1hxqlnw.10v7p6oe0o1zpN%spamhalde@fastmail.fm> <8F8CCE31-BC98-424F-9F11-E06510733780@eva.mpg.de> <1hxqtx2.apx4628jmex5N%spamhalde@fastmail.fm> Message-ID: <5B236260-364D-4437-A394-27F1E38AC9D0@eva.mpg.de> Hi, here two examples (command/snippet): -------------- next part -------------- A non-text attachment was scrubbed... Name: InsertMUcommand.tmCommand Type: application/octet-stream Size: 704 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: InsertMUsnippet.tmCommand Type: application/octet-stream Size: 761 bytes Desc: not available URL: -------------- next part -------------- On 07.05.2007, at 12:43, rowkajjh wrote: >> To get a dollar sign you have to escape it by \ not by $. >> \$\mu m\$ > > Aaah. And how do I get one space back? > >> But two questions in general: >> What do you want to do with it? > > Not alwyas typing "$\mu m$". "m?" "tab" is easier. > >> And why you are not using a command with output 'Insert Text'? > > Dont know. What command? cat file or somehing like that? Cheers, Hans From info at webrevolution.org Mon May 7 14:45:31 2007 From: info at webrevolution.org (ZulloP) Date: Mon, 7 May 2007 07:45:31 -0700 (PDT) Subject: [TxMt] CSS code completion from html file? Message-ID: <10358635.post@talk.nabble.com> there is any way to get the CSS code completion function to display the IDs or class used in the html file? let's stay I have the following on index.html:
ipsum dolorem
Now, opening style.css file (in same project) and pressing [command] + [escape] buttons, I would like textmate showing up the suggestion "lorem" as the ID is present on index.html file. ...any suggestion? I hope I was clear enough :P many thanks in advance. -- View this message in context: http://www.nabble.com/CSS-code-completion-from-html-file--tf3704144.html#a10358635 Sent from the textmate users mailing list archive at Nabble.com. From ciawal at gmail.com Mon May 7 14:53:20 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Mon, 7 May 2007 15:53:20 +0100 Subject: [TxMt] Re: Problem with snippet In-Reply-To: <5B236260-364D-4437-A394-27F1E38AC9D0@eva.mpg.de> References: <1hxqlnw.10v7p6oe0o1zpN%spamhalde@fastmail.fm> <8F8CCE31-BC98-424F-9F11-E06510733780@eva.mpg.de> <1hxqtx2.apx4628jmex5N%spamhalde@fastmail.fm> <5B236260-364D-4437-A394-27F1E38AC9D0@eva.mpg.de> Message-ID: <2538DC10-1DDE-472A-9A87-0225C138606B@gmail.com> To be honest I really don't understand what's going on here, but wouldn't a snippet with a tabstop for the number be simpler? From textmate at skurfer.com Mon May 7 18:13:50 2007 From: textmate at skurfer.com (Rob McBroom) Date: Mon, 7 May 2007 14:13:50 -0400 Subject: [TxMt] Using Projects on remote servers - the easy way In-Reply-To: <8A13E933-D4E6-4286-80DE-BCCB50270B25@minimaldesign.net> References: <8A13E933-D4E6-4286-80DE-BCCB50270B25@minimaldesign.net> Message-ID: <48103394-AF1B-4A46-99D2-689E77151447@skurfer.com> On May 5, 2007, at 1:02 PM, Yann B wrote: > Sorry if it's old news for some of you guys, but I just found out > that using MacFUSE and sshfs makes it super easy to use TextMate > projects/tabs with files on remotes servers (as long as you have > SSH access). Be careful with this. A co-worker has tried this method and we saw a few cases where SSHfs gave us an older (cached?) version of a file and even truncated the last 30% or so of a file on one occasion. (Thankfully, we could just "svn revert" it.) Which brings me to the other drawback: you can't do many svn operations on a working copy that's mounted via SSHfs. Also, projects on remote filesystems can be unusably slow. I posted [a couple of commands][1] a while back that make it a little easier to work locally and sync with a remote machine. I'll most likely clean them up and make a bundle soon. [1]: http://article.gmane.org/gmane.editors.textmate.general/19079 --- Rob McBroom I didn't "switch" to Apple... my OS did. From steve at narbat.com Mon May 7 19:20:50 2007 From: steve at narbat.com (Steve King) Date: Mon, 7 May 2007 15:20:50 -0400 (EDT) Subject: [TxMt] HTML Special Character Bundles In-Reply-To: References: Message-ID: On Sun, 6 May 2007, Chip Cullen wrote: > I come from a print design background, and am used to being rather > particular with my typography. One of my biggest pet peeves is seeing > a double tick mark (") where a proper quote mark (") should be. Heh. I come from a programming background, and one of *my* biggest pet peeves is seeing non-ASCII typographical characters which mess up pasting page content into a plain-text document or converting to something my Palm Pilot can use... :-) -- Steve King, From ld at ldaley.com Tue May 8 01:00:43 2007 From: ld at ldaley.com (Luke Daley) Date: Tue, 8 May 2007 11:00:43 +1000 Subject: [TxMt] Bundles with spaces in the name. Message-ID: Hi, I assume like many others, my "~/Library/Application Support/ TextMate/" directory is a svn repo. I install extra bundles via the svn externals mechanism. This works well except for when the bundle name has a space in it because of this bug: http:// subversion.tigris.org/issues/show_bug.cgi?id=2461 Most annoying. How are others managing this? -- LD. From barmstrong at gmail.com Tue May 8 02:40:02 2007 From: barmstrong at gmail.com (Brian Armstrong) Date: Mon, 7 May 2007 21:40:02 -0500 Subject: [TxMt] Open multiple files in Tabs? Message-ID: <75e366820705071940x7d573f9che902f2173399e81c@mail.gmail.com> Does anyone know how to get TextMate to always use tabs for multiple files instead of new windows? Often I open files directly from Transmit and they aren't in their own project, after more than 2 or 3 it becomes cumbersome. Thanks! Brian Armstrong From nigel at greenlemur.com Tue May 8 10:52:30 2007 From: nigel at greenlemur.com (Nigel Green) Date: Tue, 8 May 2007 11:52:30 +0100 Subject: [TxMt] Changing look of Markdown docs Message-ID: Hi there, I use Markdown format for all of my plain text files - both to convert to HTML for export and to help organise my files. I find the syntax highlighting of headings and lists really helps me keep large files organised - especially with using curly braces to 'section' material and keep it folded away. Is it possible to change the way headings are recognised? In particular I would like to have the following: ## Heading 1 { Some text in here... } ## Heading 2 { Some text in here... } ## Heading 3 { Some text in here... } This currently only picks up the first heading, seeing the others as meta.paragraph.markdown, whereas leaving in line breaks: ## Heading 1 { Some text in here... } ## Heading 2 { Some text in here... } ## Heading 3 { Some text in here... } Means I get all the headings recognised correctly. Both versions above are recognised and converted to HTML correctly by the Markdown.pl script so I presume the highlighting is down to the language grammar? I looked at it and tried to change it myself but broke all the other formatting as well so think I need some professional input on this one! I know its not a life-changing query but I'd like to understand the language grammar stuff better and this looks like a good starter project!! Thanks, Nigel From edouard.gilbert at eleves.bretagne.ens-cachan.fr Tue May 8 11:29:49 2007 From: edouard.gilbert at eleves.bretagne.ens-cachan.fr (=?ISO-8859-1?Q?=C9douard_Gilbert?=) Date: Tue, 8 May 2007 13:29:49 +0200 Subject: [TxMt] Re: Problem with snippet In-Reply-To: <2412348E-41A5-4A9D-8F99-C8F61F6C6D64@dplanet.ch> References: <1hxqlnw.10v7p6oe0o1zpN%spamhalde@fastmail.fm> <8F8CCE31-BC98-424F-9F11-E06510733780@eva.mpg.de> <1hxqtx2.apx4628jmex5N%spamhalde@fastmail.fm> <2412348E-41A5-4A9D-8F99-C8F61F6C6D64@dplanet.ch> Message-ID: <41F34F81-16FC-4F20-9EB1-0B4B25C8587E@eleves.bretagne.ens-cachan.fr> > What about \newcommand{\um}{$\mu m$}? If it's LaTeX, I'd suggest \newcommand{\um}{% \ensuremath{% \mu \textrm{m}% }% } instead. Or perhaps even better \newcommand{\micro}[1]{% \ensuremath{\mu \mathrm{#1}}% \xspace% } Of course, you need to add \usepackage{xspace} in your header. That way, you'll just have to type \micro{some unit} to get the expected result. You can even drop the {} and just add a space if the unit is a single character. If you're really lazy, you can choose a shorter name (such as \u, if available) for the command. Or use a snippet: \micro{$1}$0 That would make your LaTeX code easier to read, in my opinion. And the command will work inside or outside math environments. From xcambar at gmail.com Tue May 8 16:26:36 2007 From: xcambar at gmail.com (Xavier Cambar) Date: Tue, 8 May 2007 18:26:36 +0200 Subject: [TxMt] Open multiple files in Tabs? In-Reply-To: <75e366820705071940x7d573f9che902f2173399e81c@mail.gmail.com> References: <75e366820705071940x7d573f9che902f2173399e81c@mail.gmail.com> Message-ID: <3DBCB5FB-575A-45AA-B024-51C1372731EB@gmail.com> Did you have a look at MacFuse? It is able to mount remote disks (as ftp/sftp accounts, or even ssh) on your desktop. You can then use the files stored remotely as local files, exactly as when mounting usb drives, or afp/smb shares. I've recently heard of a ftp client able to do the same thing, but I don't remember its name. Not very useful, I know, but... at least... one exists :-/ Anyway, for working on remote projects, MacFuse is a good solution, although it is generally safer to work on local copies. Oh. Depending on the context, maybe should you have a look at subversion, too. Hope it helps, Xavier Cambar Le 8 mai 07 ? 04:40, Brian Armstrong a ?crit : > Does anyone know how to get TextMate to always use tabs for multiple > files instead of new windows? > > Often I open files directly from Transmit and they aren't in their own > project, after more than 2 or 3 it becomes cumbersome. > > Thanks! > Brian Armstrong > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From david at upsys.dk Tue May 8 18:16:11 2007 From: david at upsys.dk (David Reuss) Date: Tue, 8 May 2007 20:16:11 +0200 Subject: [TxMt] Open multiple files in Tabs? In-Reply-To: <3DBCB5FB-575A-45AA-B024-51C1372731EB@gmail.com> References: <75e366820705071940x7d573f9che902f2173399e81c@mail.gmail.com> <3DBCB5FB-575A-45AA-B024-51C1372731EB@gmail.com> Message-ID: <20438992-DDC6-4D81-92D1-059FCB66AA60@upsys.dk> TextMate doesn't work well for projects on a remote machine, but with that said. I *really* also want the ability to open several files in a tabs, so i can retain all opened files to one window, but that can't easily be achieved as it is now - you have to create an empty project and then manually add files to the project and that's in my opinion a horrible workflow, as you have to remember to create a project.. It would be insanely great if you could just add a "tab" when doing "mate " and you have one file already open .. I don't care about the polling on the file (checking if anything has changed), when changing focus, and all the other neat stuff. I just want to be able to have multiple files open in one single window, with the apple- T command available for searching through open files, as expos? really doesn't do it for me when having 5-10 multiple files open at once... But as it seems, this won't be how things work, until hopefully 2.0 handles directory structures on remote filesystems a whole lot better than TM does today. -david On 08/05/2007, at 18.26, Xavier Cambar wrote: > Did you have a look at MacFuse? > It is able to mount remote disks (as ftp/sftp accounts, or even > ssh) on your desktop. You can then use the files stored remotely > as local files, exactly as when mounting usb drives, or afp/smb > shares. > I've recently heard of a ftp client able to do the same thing, but > I don't remember its name. Not very useful, I know, but... at > least... one exists :-/ > > Anyway, for working on remote projects, MacFuse is a good solution, > although it is generally safer to work on local copies. > > Oh. Depending on the context, maybe should you have a look at > subversion, too. > > Hope it helps, > Xavier Cambar > > > > > Le 8 mai 07 ? 04:40, Brian Armstrong a ?crit : > >> Does anyone know how to get TextMate to always use tabs for multiple >> files instead of new windows? >> >> Often I open files directly from Transmit and they aren't in their >> own >> project, after more than 2 or 3 it becomes cumbersome. >> >> Thanks! >> Brian Armstrong >> >> _____________________________________________________________________ >> _ >> For new threads USE THIS: textmate at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From oliver at ollieman.net Tue May 8 19:30:24 2007 From: oliver at ollieman.net (Oliver Taylor) Date: Tue, 8 May 2007 12:30:24 -0700 Subject: [TxMt] Help with Support Librarys Message-ID: If anyone's got the time, I'd love to be walked thru the process of breaking-up several existing commands so they can be included in each other via a support library. The commands are listed here: HTML - http://pastie.textmate.org/59923 Prince export - http://pastie.textmate.org/59927 Prince export (numbered) - http://pastie.textmate.org/59929 Preview - http://pastie.textmate.org/59926 You'll see that they are all variations on the same thing. The steps are as follows: 1. Begin an HTML page 2. Use the "common layout" css 3. A perl command that transforms the document 4. End the HTML page 5. Do something with the HTML file Depending on the command, other small things are added. Mainly, the addition of different print stylesheets for each of the prince commands. I've tried to make it as clear as possible in the code, let me know if you need more direction. I know that each of these code chunks could be broken up and reused in each command (much like php includes) but I have no idea how to do it. Any help is appreciated, and feel free to email me directly. From cliffjoyce at pureblend.com Tue May 8 20:17:46 2007 From: cliffjoyce at pureblend.com (Cliff Joyce) Date: Tue, 8 May 2007 13:17:46 -0700 Subject: [TxMt] Open multiple files in Tabs? In-Reply-To: <20438992-DDC6-4D81-92D1-059FCB66AA60@upsys.dk> References: <75e366820705071940x7d573f9che902f2173399e81c@mail.gmail.com> <3DBCB5FB-575A-45AA-B024-51C1372731EB@gmail.com> <20438992-DDC6-4D81-92D1-059FCB66AA60@upsys.dk> Message-ID: David, I, too would love the feature you suggest. Before TextMate, I got used to the way BBedit did it-- all document windows had tabs, and so could be turned into a project at anytime (without requiring the foresight to open a project window first). In the meantime, my workaround has been to select multiple files from the finder, then choose Open from the File menu, or drag the files onto TextMate's icon in the dock. This causes all the files to open in a new (unsaved) project window. Speaking of TM 2.0 features, it would be nice if the TextMate drawer would let me drill down on a folder, Finder style. That is, instead of ONLY toggling a disclosure triangle, I'd like to double-click a folder and have the drawer display just that folder's contents. --Cliff > TextMate doesn't work well for projects on a remote machine, but > with that said. I *really* also want the ability to open several > files in a tabs, so i can retain all opened files to one window, > but that can't easily be achieved as it is now - you have to create > an empty project and then manually add files to the project and > that's in my opinion a horrible workflow, as you have to remember > to create a project.. > > It would be insanely great if you could just add a "tab" when doing > "mate " and you have one file already open .. I don't > care about the polling on the file (checking if anything has > changed), when changing focus, and all the other neat stuff. I just > want to be able to have multiple files open in one single window, > with the apple-T command available for searching through open > files, as expos? really doesn't do it for me when having 5-10 > multiple files open at once... > > But as it seems, this won't be how things work, until hopefully 2.0 > handles directory structures on remote filesystems a whole lot > better than TM does today. > > -david > > > On 08/05/2007, at 18.26, Xavier Cambar wrote: > >> Did you have a look at MacFuse? >> It is able to mount remote disks (as ftp/sftp accounts, or even >> ssh) on your desktop. You can then use the files stored remotely >> as local files, exactly as when mounting usb drives, or afp/smb >> shares. >> I've recently heard of a ftp client able to do the same thing, but >> I don't remember its name. Not very useful, I know, but... at >> least... one exists :-/ >> >> Anyway, for working on remote projects, MacFuse is a good >> solution, although it is generally safer to work on local copies. >> >> Oh. Depending on the context, maybe should you have a look at >> subversion, too. >> >> Hope it helps, >> Xavier Cambar >> >> >> >> >> Le 8 mai 07 ? 04:40, Brian Armstrong a ?crit : >> >>> Does anyone know how to get TextMate to always use tabs for multiple >>> files instead of new windows? >>> >>> Often I open files directly from Transmit and they aren't in >>> their own >>> project, after more than 2 or 3 it becomes cumbersome. >>> >>> Thanks! >>> Brian Armstrong >>> >>> ____________________________________________________________________ >>> __ >>> For new threads USE THIS: textmate at 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 at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From oblivious at subtlegradient.com Tue May 8 21:09:07 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Tue, 8 May 2007 17:09:07 -0400 Subject: [TxMt] CSS code completion from html file? In-Reply-To: <10358635.post@talk.nabble.com> References: <10358635.post@talk.nabble.com> Message-ID: On May 7, 2007, at 10:45 AM, ZulloP wrote: > > there is any way to get the CSS code completion function to display > the IDs > or class used in the html file? > > let's stay I have the following on index.html: >
ipsum dolorem
> > Now, opening style.css file (in same project) and pressing > [command] + > [escape] buttons, I would like textmate showing up the suggestion > "lorem" as > the ID is present on index.html file. > > ...any suggestion? I hope I was clear enough :P > many thanks in advance. > -- > View this message in context: http://www.nabble.com/CSS-code- > completion-from-html-file--tf3704144.html#a10358635 > Sent from the textmate users mailing list archive at Nabble.com. Yes. It already kindof does this. Needs some work though. Code Completion ScreenCast http://trippledoubleyou.subtlegradient.com/stuff/SubtleGradient% 20TextMate%20Code%20Completion%20Screencast.mov thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From oblivious at subtlegradient.com Tue May 8 21:16:52 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Tue, 8 May 2007 17:16:52 -0400 Subject: [TxMt] CSS code completion from html file? In-Reply-To: References: <10358635.post@talk.nabble.com> Message-ID: <5BB9EE5E-7A2A-45DF-A4EA-50A3F4C06607@subtlegradient.com> On May 8, 2007, at 5:09 PM, Thomas Aylott (subtleGradient) wrote: I never really mentioned this because it's kindof half-broken I'm just too busy to finish it :( > Code Completion ScreenCast > http://trippledoubleyou.subtlegradient.com/stuff/SubtleGradient% > 20TextMate%20Code%20Completion%20Screencast.mov > thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From steve at narbat.com Tue May 8 21:19:31 2007 From: steve at narbat.com (Steve King) Date: Tue, 8 May 2007 17:19:31 -0400 (EDT) Subject: [TxMt] Shortcut for replace in selection In-Reply-To: <126F6AAE-3B1F-48C2-B903-FE8090CCCEED@hanover.edu> References: <82081AC5-749E-4834-B321-0F7AA8E884B1@simplicidade.org> <126F6AAE-3B1F-48C2-B903-FE8090CCCEED@hanover.edu> Message-ID: On Mon, 7 May 2007, Charilaos Skiadas wrote: > On May 7, 2007, at 9:21 AM, Pedro Melo wrote: > >> the most common search & replace I do is "Replace in Selection". I can do >> everything with the keyboard, including switching RegExp on and off, but I >> need to use the Alt/option key to switch to In Selection and the mouse to >> do it. >> >> I was wondering, is there anyway to access those buttons with the keyboard? >> > Unless I've misunderstood you, Shift-Control-Cmd-F would do it. I don't know about Pedro, but the reason that doesn't work for me is that the Shift-Control-Cmd-F command doesn't open the Find dialog. It just executes the last find/replace operation on the selection. So you have to open the Find dialog (Cmd-F), enter the search/replace terms, close the dialog (Esc), then execute it (Shift-Control-Cmd-F). To me, that's much more awkward than just reaching for the mouse. This may help Pedro, though: You can tab through the controls in the Find dialog, including the buttons. So open the dialog, enter the "find" term, tab, enter the "replace" term, tab five more times to highlight the "Replace All" button, press option to change it to "In Selection", and finally hit space to press the button. Still a pain in the backside, but at least it's doable. -- Steve King, From skiadas at hanover.edu Tue May 8 23:29:56 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Tue, 8 May 2007 19:29:56 -0400 Subject: [TxMt] Shortcut for replace in selection In-Reply-To: References: <82081AC5-749E-4834-B321-0F7AA8E884B1@simplicidade.org> <126F6AAE-3B1F-48C2-B903-FE8090CCCEED@hanover.edu> Message-ID: <660CB9F5-52CE-4FE7-B55C-917106F00F77@hanover.edu> On May 8, 2007, at 5:19 PM, Steve King wrote: > On Mon, 7 May 2007, Charilaos Skiadas wrote: > >> On May 7, 2007, at 9:21 AM, Pedro Melo wrote: >> >>> the most common search & replace I do is "Replace in Selection". >>> I can do everything with the keyboard, including switching RegExp >>> on and off, but I need to use the Alt/option key to switch to In >>> Selection and the mouse to do it. >>> I was wondering, is there anyway to access those buttons with the >>> keyboard? >> Unless I've misunderstood you, Shift-Control-Cmd-F would do it. > > I don't know about Pedro, but the reason that doesn't work for me > is that the Shift-Control-Cmd-F command doesn't open the Find > dialog. It just executes the last find/replace operation on the > selection. So you have to open the Find dialog (Cmd-F), enter the > search/replace terms, close the dialog (Esc), then execute it > (Shift-Control-Cmd-F). To me, that's much more awkward than just > reaching for the mouse. No you don't have to close the dialog, just type shift-control-cmd-F with the dialog window open. It is true it will not open the Find dialog, but that's just one more keystroke, certainly better than other alternatives. Btw, I prefer to use cmd-W to close the find window, easier for me than esc. But that's neither here nor there ;). > This may help Pedro, though: You can tab through the controls in > the Find dialog, including the buttons. So open the dialog, enter > the "find" term, tab, enter the "replace" term, tab five more times > to highlight the "Replace All" button, press option to change it to > "In Selection", and finally hit space to press the button. Still a > pain in the backside, but at least it's doable. > > -- > Steve King, > Haris Skiadas Department of Mathematics and Computer Science Hanover College From info at webrevolution.org Wed May 9 07:15:36 2007 From: info at webrevolution.org (ZulloP) Date: Wed, 9 May 2007 00:15:36 -0700 (PDT) Subject: [TxMt] CSS code completion from html file? In-Reply-To: <5BB9EE5E-7A2A-45DF-A4EA-50A3F4C06607@subtlegradient.com> References: <10358635.post@talk.nabble.com> <5BB9EE5E-7A2A-45DF-A4EA-50A3F4C06607@subtlegradient.com> Message-ID: <10389501.post@talk.nabble.com> Hello Thomas, thank you for replying. I hope this will be solved soon, it is the only missing feature to make TextMate perfect at 100% for me. Have a great day. -- View this message in context: http://www.nabble.com/CSS-code-completion-from-html-file--tf3704144.html#a10389501 Sent from the textmate users mailing list archive at Nabble.com. From bibiko at eva.mpg.de Wed May 9 07:26:18 2007 From: bibiko at eva.mpg.de (Hans-Joerg Bibiko) Date: Wed, 9 May 2007 09:26:18 +0200 Subject: [TxMt] Tiny bug in Bundle Editor Message-ID: Hi, I found a tiny bug (resp. 'evil' pitfall) in the bundle editor. I opened the bundle editor, went to a command 'A' and pressed CTRL +APPLE+E for "Edit in TextMate". OK. Then I looked for a code snippet in an other command 'B' using the bundle editor. I copy&pasted it. Fine. But then I saved my changes. TM wrote my stuff back in that command which was active in the bundle editor (in my case command 'B'!, not 'A' which I actually was editing). Well, TM wrote it back to command 'B' but the bundle editor didn't save it fortunately, and command 'A' was unchanged. The tricky thing only is that all my changes are gone because I also closed my editing window. Would it be possible that TM remembers the command which I actually editing? Regards, Hans From spamhalde at fastmail.fm Wed May 9 08:08:19 2007 From: spamhalde at fastmail.fm (rowkajjh) Date: Wed, 9 May 2007 10:08:19 +0200 Subject: [TxMt] [LaTex] Problem with Reformat Message-ID: <1hxuaq0.1ra6et41i2mpgeN%spamhalde@fastmail.fm> Hello, when I type an enumeration I get: \begin{enumerate} \item Geringe Tiefensch?rfe. sdfdsfsdfdsfdsfsdfdsf erscheinen sdfsdfsdf Bild war selten. \item dfdfdf dsf sdfsd f sdf \end{enumerate} Is there a possibility to get it this way: \begin{enumerate} \item Geringe Tiefensch?rfe. sdfdsfsdfdsfdsfsdfdsf erscheinen sdfsdfsdf Bild war selten. \item dfdfdf dsf sdfsd f sdf \end{enumerate} I believe this is more readable. Second questions: When I press in the eq. Ctrl+Q i get this: \begin{enumerate} \item Geringe Tiefensch?rfe. sdfdsfsdfdsfdsfsdfdsf erscheinen sdfsdfsdf Bild war selten. \item dfdfdf dsf sdfsd f sdf \end{enumerate} Surely wrong. The items shouldbe aligned. Is there a way to achieve this? Bye From robin.houston at gmail.com Wed May 9 08:29:58 2007 From: robin.houston at gmail.com (Robin Houston) Date: Wed, 9 May 2007 09:29:58 +0100 Subject: [TxMt] Shortcut for replace in selection In-Reply-To: References: <82081AC5-749E-4834-B321-0F7AA8E884B1@simplicidade.org> <126F6AAE-3B1F-48C2-B903-FE8090CCCEED@hanover.edu> Message-ID: <1b795e7b0705090129w58a63125yc91798f60066f120@mail.gmail.com> On 5/8/07, Steve King wrote: > > You can tab through the controls in the Find dialog, including the > buttons. Whether or not this is true depends on a system setting (in the Keyboard & Mouse preference pane, Keyboard Shortcuts tab). Robin -------------- next part -------------- An HTML attachment was scrubbed... URL: From paul.mccann at adelaide.edu.au Wed May 9 08:44:02 2007 From: paul.mccann at adelaide.edu.au (Paul McCann) Date: Wed, 9 May 2007 18:14:02 +0930 Subject: [TxMt] [LaTex] Problem with Reformat In-Reply-To: <1hxuaq0.1ra6et41i2mpgeN%spamhalde@fastmail.fm> References: <1hxuaq0.1ra6et41i2mpgeN%spamhalde@fastmail.fm> Message-ID: <81EAA4AD-45F3-4A6A-B45C-7B15146BFC1A@adelaide.edu.au> rowkajjh asked: > When I press in the eq. Ctrl+Q i get this: > > \begin{enumerate} \item Geringe Tiefensch?rfe. sdfdsfsdfdsfdsfsdfdsf > erscheinen sdfsdfsdf Bild > war selten. \item dfdfdf dsf sdfsd f sdf \end{enumerate} > > Surely wrong. The items shouldbe aligned. Is there a way to achieve > this? No, not wrong, the control-q is for reformatting paragraphs of text: it's not aware of the language (note that it lives in the text menu, not in a particular bundle). What you're probably seeking is the "tidy" command in the LaTeX bundle: it's bound to control-shift-H. It doesn't do the "reindent" text that you're seeking in Question 1, but it does reflow things in a language sensitive way. Cheers, Paul From mainman at dancourse.co.uk Wed May 9 13:22:15 2007 From: mainman at dancourse.co.uk (Dan Course) Date: Wed, 9 May 2007 14:22:15 +0100 Subject: [TxMt] Open file Browser Message-ID: <996bf4970705090622o48fe4cf4q65fbfd3c92263a8c@mail.gmail.com> Hi List-o-mate, I've starting writing my own snippets and can use the whole, "${1:insert stuff}" ok now, but I wondered if there was a way to open a File Browser window? eg, my current html img snippet is, ${3:$2} but it'd be cool to have, ${2:alt_text} Thank you, DanC -- danCourse www.dancourse.co.uk 07790 13 83 23 Flash2.0 & PHP Freelancer -------------- next part -------------- An HTML attachment was scrubbed... URL: From skiadas at hanover.edu Wed May 9 13:32:17 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Wed, 9 May 2007 09:32:17 -0400 Subject: [TxMt] Open file Browser In-Reply-To: <996bf4970705090622o48fe4cf4q65fbfd3c92263a8c@mail.gmail.com> References: <996bf4970705090622o48fe4cf4q65fbfd3c92263a8c@mail.gmail.com> Message-ID: Hi Dan, On May 9, 2007, at 9:22 AM, Dan Course wrote: > Hi List-o-mate, > > I've starting writing my own snippets and can use the whole, > "${1:insert stuff}" ok now, but I wondered if there was a way to > open a File Browser window? > > eg, my current html img snippet is, > > ${3:$2} > > but it'd be cool to have, > > ${2:alt_text} > If I understand correctly what you are trying to achieve, then I think it is better to write a drag command instead, that recognizes the various image files. Then you can locate the images with something like Launchbar of Quicksilver, which are in my opinion better suited for the job, and just drag the image into the document, and then an appropriate snippet will be created. You can even go as far as having it automatically set dimensions, or something like that, using info from the image. You might also want to have a look at the ImageBrowser bundle. > > Thank you, > > DanC > > -- > danCourse > www.dancourse.co.uk > 07790 13 83 23 > > Flash2.0 & PHP Freelancer Haris Skiadas Department of Mathematics and Computer Science Hanover College From lists.cpruitt at cliffpruitt.com Wed May 9 15:11:07 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Wed, 9 May 2007 11:11:07 -0400 Subject: [TxMt] WSC TextMate Bundle? Message-ID: <248314D0-2828-4D76-BDF5-EAF24B97FB18@cliffpruitt.com> Hey everyone, I'm new to the list as of today. I'm writing to ask if anyone out there has (and can make available), or knows of, a WSC bundle for TextMate. WSC's are XML files that Windows uses as a kind of COM object class definition. My employer is pushing to move everything we have in classic ASP over to WSCs and working without a good TextMate bundle or even a language definition is a pain to say the least. If nobody has an existing bundle I'm going to need to make on myself but I'd rather not re-invent the wheel here if someone better than I (which isn't hard to find) has already built the foundation. Any help or pointers in the right direction is much appreciated... - Cliff From textmate at minimaldesign.net Wed May 9 15:22:13 2007 From: textmate at minimaldesign.net (Yann B) Date: Wed, 9 May 2007 11:22:13 -0400 Subject: [TxMt] Additions to CSS bundle? Message-ID: <098AA187-7187-4E06-B3CA-FE8ADB50BA8E@minimaldesign.net> I just notice a few new additions to the CSS bundle, such as: CodeCompletion CSS CodeCompletion CSS Properties CodeCompletion CSS Property Values Has it been there for a while? I tried using it but nothing happens when I use the shortcuts... How are those meant to be used exactly? Thanks! From oblivious at subtlegradient.com Wed May 9 15:35:51 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Wed, 9 May 2007 11:35:51 -0400 Subject: [TxMt] Additions to CSS bundle? In-Reply-To: <098AA187-7187-4E06-B3CA-FE8ADB50BA8E@minimaldesign.net> References: <098AA187-7187-4E06-B3CA-FE8ADB50BA8E@minimaldesign.net> Message-ID: <1AF59498-5524-44F8-A9CF-602B077337C4@subtlegradient.com> On May 9, 2007, at 11:22 AM, Yann B wrote: > I just notice a few new additions to the CSS bundle, such as: > > CodeCompletion CSS > CodeCompletion CSS Properties > CodeCompletion CSS Property Values > > Has it been there for a while? I tried using it but nothing happens > when I use the shortcuts... How are those meant to be used exactly? > Thanks! Screencast http://trippledoubleyou.subtlegradient.com/stuff/SubtleGradient% 20TextMate%20Code%20Completion%20Screencast.mov You should just be able to hit opt-escape occasionally to get a menu of completions. Same list of words as in the regular escape completions prefs thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From jacobolus at gmail.com Wed May 9 17:08:16 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Wed, 09 May 2007 13:08:16 -0400 Subject: [TxMt] Re: WSC TextMate Bundle? In-Reply-To: <248314D0-2828-4D76-BDF5-EAF24B97FB18@cliffpruitt.com> References: <248314D0-2828-4D76-BDF5-EAF24B97FB18@cliffpruitt.com> Message-ID: Cliff Pruitt wrote: > ... WSC's are *XML files that Windows uses* ... I doubt there's anything out there, in that case. > If nobody has an existing bundle I'm going to need to make on myself but > I'd rather not re-invent the wheel here if someone better than I (which > isn't hard to find) has already built the foundation. > > Any help or pointers in the right direction is much appreciated... New language grammars are fortunately quite easy to get started on. You can make something reasonably useful and functional in an afternoon. If you have any trouble, ask on IRC. -Jacob From lists.cpruitt at cliffpruitt.com Wed May 9 17:50:21 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Wed, 9 May 2007 13:50:21 -0400 Subject: [TxMt] Re: WSC TextMate Bundle? In-Reply-To: References: <248314D0-2828-4D76-BDF5-EAF24B97FB18@cliffpruitt.com> Message-ID: <58265938-E02C-4EBA-896D-90C7633D26D9@cliffpruitt.com> >> ... WSC's are *XML files that Windows uses* ... > > I doubt there's anything out there, in that case. Yeah I know... trust me, this is not by choice here... But still I figured I'd ask. Its the same concept as embedding VBScript into HTML for asp pages and TextMate has bundles for ASP that work well out of the box. > >> If nobody has an existing bundle I'm going to need to make on >> myself but I'd rather not re-invent the wheel here if someone >> better than I (which isn't hard to find) has already built the >> foundation. >> Any help or pointers in the right direction is much appreciated... > > New language grammars are fortunately quite easy to get started > on. You can make something reasonably useful and functional in an > afternoon. If you have any trouble, ask on IRC. I've messed with language grammars a bit. And I know I can make it work, especially with XML and ASP scopes already being available in other bundles. I just thought I'd check first and see if someone that understood more about WSC's had something already put together. Guess I get to spend time doing some work before I do any work. :-) - Cliff From textmate at skurfer.com Wed May 9 20:03:48 2007 From: textmate at skurfer.com (Rob McBroom) Date: Wed, 9 May 2007 16:03:48 -0400 Subject: [TxMt] Tiny bug in Bundle Editor In-Reply-To: References: Message-ID: <613AC140-200D-4219-9EEC-4D75EDBE92E4@skurfer.com> On May 9, 2007, at 3:26 AM, Hans-Joerg Bibiko wrote: > I opened the bundle editor, went to a command 'A' and pressed CTRL > +APPLE+E for "Edit in TextMate". OK. > Then I looked for a code snippet in an other command 'B' using the > bundle editor. I copy&pasted it. Fine. But then I saved my changes. > TM wrote my stuff back in that command which was active in the > bundle editor (in my case command 'B'!, not 'A' which I actually > was editing). The notes for "Edit in TextMate" mention this: > ?if you call upon the Edit in TextMate action and close the window > which held the text, or was calling the service from the field > editors text view and advance focus, before the text has been > returned, do not be surprised if the text does not show up in the > proper text view. It's been said on this list that when using "Edit in TextMate", you should simply not touch the originating application/window, just to be safe. --- Rob McBroom I didn't "switch" to Apple... my OS did. From textmate at skurfer.com Wed May 9 20:54:30 2007 From: textmate at skurfer.com (Rob McBroom) Date: Wed, 9 May 2007 16:54:30 -0400 Subject: [TxMt] drag command for inserting links to local files Message-ID: <0931BE40-5BA9-4B76-BC11-3C219BB13743@skurfer.com> I created this a while back, but I had forgotten about it until a recent discussion of Drag Commands. If you're using the pre-insalled Apache under Mac OS X, the DocumentRoot is set to `/Library/WebServer/Documents/`. I try to avoid attachments as much as possible, so I'll usually put a file in that location and just send people a URL that leads them to it. To make this easier, I created a Drag Command that applies to any file in that directory. For example, if I drop /Library/WebServer/ Documents/some.zip in a document, it inserts http:// kendra.oit.gatech.edu/some.zip instead. It's currently scoped to "text.mail,text.html" and I usually only use it for e-mail, but perhaps it should be scoped for all "text"? Anyway, I thought this might be a useful addition to the Mail or Text bundle. On a related note, what's the preferred way to say "I thought this might be a useful addition to the XYZ bundle"? :) FYI - If you're looking at the command and wondering why all the gymnastics to get the Fully Qualified Domain Name for the local machine, it is intended to work in either of these situations: 1. `hostname` returns something appropriate, like "kendra" and `domainname` returns something appropriate like "oit.gatech.edu". 2. `hostname` erroneously returns the FQDN (like "kendra.oit.gatech.edu") and `domainname` returns nothing at all. (For reasons unknown, I think most systems are misconfigured like this by default.) --- Rob McBroom I didn't "switch" to Apple... my OS did. -------------- next part -------------- A non-text attachment was scrubbed... Name: Mail Link.tmDragCommand Type: application/octet-stream Size: 894 bytes Desc: not available URL: -------------- next part -------------- From eric at aplosmedia.com Wed May 9 22:33:57 2007 From: eric at aplosmedia.com (Eric Coleman) Date: Wed, 9 May 2007 18:33:57 -0400 Subject: [TxMt] New Window with Selection Service? Message-ID: I believe I read the TextMate Service menu was disabled / being replaced, however, I think having an item thats 'new window with selection' would be great... I seem to use it very often... - Eric From fredb7 at gmail.com Thu May 10 00:51:42 2007 From: fredb7 at gmail.com (Fred B) Date: Thu, 10 May 2007 02:51:42 +0200 Subject: [TxMt] New Window with Selection Service? In-Reply-To: References: Message-ID: <9c31463d0705091751v94ad143wce7b6b3344e8ad73@mail.gmail.com> On 5/10/07, Eric Coleman wrote: > I believe I read the TextMate Service menu was disabled / being > replaced, however, I think having an item thats 'new window with > selection' would be great... I seem to use it very often... There is a contextual menu (using OnMyCommand) to do that in the repository. If you prefer a service, it's really easy to make one with ThisService[2]. [1]: http://macromates.com/svn/Bundles/trunk/Tools/CM/ [2]: http://wafflesoftware.net/thisservice/ -- FredB From barmstrong at gmail.com Thu May 10 04:10:18 2007 From: barmstrong at gmail.com (Brian Armstrong) Date: Wed, 9 May 2007 23:10:18 -0500 Subject: [TxMt] Multiple Tabs Message-ID: <75e366820705092110o1094c08aka331fce5bae39b2b@mail.gmail.com> Xavier, MacFUSE is awesome! Thank you so much! I switched from PC where I loved using WedDrive, and have been looking for something like that for a while now. I'm surprised MacFUSE is not more well know. Thanks a million! Brian From jnutting at gmail.com Thu May 10 08:49:33 2007 From: jnutting at gmail.com (Jack Nutting) Date: Thu, 10 May 2007 10:49:33 +0200 Subject: [TxMt] subversion and colordiff Message-ID: Hi all, I've been a paid member of the TextMate-o-sphere for a couple months now, but have just started dipping into its mighty goodness. One thing that I've found that is not quite so good is how the subversion plugin won't play nice with colordiff. In my .subversion/config, I've set it up to use colordiff instead of diff. I do a lot of my work from the command-line, so this is pretty important for me. Unfortunately, the subversion plugin doesn't like this. If you look here: http://www.nuthole.com/img/tm_ss1.png you'll see what I'm talking about. The upper half ("Untitled 705") shows the result of me doing a "Diff with Newest (HEAD)" with my preferred .subversion/config settings intact, while the lower half ("Untitled 706") shows the much prettier version that the subversion bundle does all on its own if I remove my settings. Now, I'd just accept that "that's just the way it is", except for the fact that the bundles doesn't *always* do this. In particular, if I bring up an SVN Log from within TextMate, and then click on a link to see a diff in there, the resulting diff is displayed in a TextMate-colorized fashion, apparently ignoring my .subversion/config settings (hooray!). So what I wonder is, if the plugin can ignore my settings and do its own colorization in one case, why can't it do it all the time? -- // jack // http://www.nuthole.com From ciawal at gmail.com Thu May 10 09:49:35 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Thu, 10 May 2007 10:49:35 +0100 Subject: [TxMt] subversion and colordiff In-Reply-To: References: Message-ID: <2CC90435-00CF-4A60-AC62-6B59D7305449@gmail.com> On 10 May 2007, at 09:49, Jack Nutting wrote: > So what I wonder is, if the plugin can ignore my > settings and do its own colorization in one case, why can't it do it > all the time? You should be able to just set TM_SVN_DIFF_CMD to diff I think (In TextMate preferences). Using a diff which produces colours isn't ideal since as you can see you'll end up with garbage in the resulting text. -------------- next part -------------- An HTML attachment was scrubbed... URL: From n.kobschaetzki at googlemail.com Thu May 10 11:13:14 2007 From: n.kobschaetzki at googlemail.com (=?ISO-8859-1?Q?Niels_Kobsch=E4tzki?=) Date: Thu, 10 May 2007 13:13:14 +0200 Subject: [TxMt] Is the following pdfsync-instruction right? Message-ID: Hi! Skim (skim-app.sourceforge.net), a very neat and free pdf-viewer supports now pdfsync and they set up a wiki with some instructions how to enable Skim as viewer for pdfsync in Textmate. But I think the instructions are more complex than they should be. The site is: http://skim-app.sourceforge.net/wiki/index.php/ LaTeX_and_PDFSync Isn't it even in the standard-install of TextMate only necessary to set the Shell Variable TM_LATEX_VIEWER to Skim? Niels From jnutting at gmail.com Thu May 10 11:15:44 2007 From: jnutting at gmail.com (Jack Nutting) Date: Thu, 10 May 2007 13:15:44 +0200 Subject: [TxMt] subversion and colordiff In-Reply-To: <2CC90435-00CF-4A60-AC62-6B59D7305449@gmail.com> References: <2CC90435-00CF-4A60-AC62-6B59D7305449@gmail.com> Message-ID: On 5/10/07, Ciar?n Walsh wrote: > You should be able to just set TM_SVN_DIFF_CMD to diff I think (In TextMate > preferences). > Using a diff which produces colours isn't ideal since as you can see you'll > end up with garbage in the resulting text. Woohoo, that did it! Thanks a bunch. I still wonder why getting a diff from the log already did the right thing, but anyway this solves my current need. -- // jack // http://www.nuthole.com From skiadas at hanover.edu Thu May 10 12:12:41 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Thu, 10 May 2007 08:12:41 -0400 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: References: Message-ID: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> On May 10, 2007, at 7:13 AM, Niels Kobsch?tzki wrote: > Hi! > > Skim (skim-app.sourceforge.net), a very neat and free pdf-viewer > supports now pdfsync and they set up a wiki with some instructions > how to enable Skim as viewer for pdfsync in Textmate. But I think > the instructions are more complex than they should be. > > The site is: http://skim-app.sourceforge.net/wiki/index.php/ > LaTeX_and_PDFSync > > Isn't it even in the standard-install of TextMate only necessary to > set the Shell Variable TM_LATEX_VIEWER to Skim? > No, the LaTeX and View, and the other sync command, need to make an extra call if the viewer supports pdfsync. Currently we are only handling TeXniscope and PDFView, but I think we should be able to add Skim to the list. I haven't tried Skim, what are its advantages over PDFView? > Niels Haris Skiadas Department of Mathematics and Computer Science Hanover College From maillists at gmx.de Thu May 10 12:21:14 2007 From: maillists at gmx.de (Christian Burk) Date: Thu, 10 May 2007 14:21:14 +0200 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> Message-ID: <12B58EF0-DFE4-4242-AE02-6881747E47E2@gmx.de> Am 10.05.2007 um 14:12 schrieb Charilaos Skiadas: > On May 10, 2007, at 7:13 AM, Niels Kobsch?tzki wrote: > >> Hi! >> >> Skim (skim-app.sourceforge.net), a very neat and free pdf-viewer >> supports now pdfsync and they set up a wiki with some instructions >> how to enable Skim as viewer for pdfsync in Textmate. But I think >> the instructions are more complex than they should be. >> >> The site is: http://skim-app.sourceforge.net/wiki/index.php/ >> LaTeX_and_PDFSync >> >> Isn't it even in the standard-install of TextMate only necessary >> to set the Shell Variable TM_LATEX_VIEWER to Skim? >> > No, the LaTeX and View, and the other sync command, need to make an > extra call if the viewer supports pdfsync. Currently we are only > handling TeXniscope and PDFView, but I think we should be able to > add Skim to the list. > > I haven't tried Skim, what are its advantages over PDFView? Skim has some great feature regarding creating notes and so on... Would it also be possible to use TeXShop with pdfsync? I write all my stuff with TextMate and it's amazing. Afterwards I typeset it with TeXShop. Now it would be great if I could jump easily between the pdf and the source. Thanks Christian From n.kobschaetzki at googlemail.com Thu May 10 12:21:50 2007 From: n.kobschaetzki at googlemail.com (=?ISO-8859-1?Q?Niels_Kobsch=E4tzki?=) Date: Thu, 10 May 2007 14:21:50 +0200 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> Message-ID: On May 10, 2007, at 2:12 PM, Charilaos Skiadas wrote: > > On May 10, 2007, at 7:13 AM, Niels Kobsch?tzki wrote: > >> Hi! >> >> Skim (skim-app.sourceforge.net), a very neat and free pdf-viewer >> supports now pdfsync and they set up a wiki with some instructions >> how to enable Skim as viewer for pdfsync in Textmate. But I think >> the instructions are more complex than they should be. >> >> The site is: http://skim-app.sourceforge.net/wiki/index.php/ >> LaTeX_and_PDFSync >> >> Isn't it even in the standard-install of TextMate only necessary >> to set the Shell Variable TM_LATEX_VIEWER to Skim? >> > No, the LaTeX and View, and the other sync command, need to make an > extra call if the viewer supports pdfsync. Currently we are only > handling TeXniscope and PDFView, but I think we should be able to > add Skim to the list. Good to know :) > > I haven't tried Skim, what are its advantages over PDFView? As a general PDF-viewer its advantage is that you can highlight text and add notes to pdfs which aren't embedded in the file itself (like Preview does it) but in the metadata of the file (which is great but makes some problems when you copy it over to another computer - but there are workarounds for it which are directly embedded in Skim). Niels From n.kobschaetzki at googlemail.com Thu May 10 12:23:45 2007 From: n.kobschaetzki at googlemail.com (=?ISO-8859-1?Q?Niels_Kobsch=E4tzki?=) Date: Thu, 10 May 2007 14:23:45 +0200 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <12B58EF0-DFE4-4242-AE02-6881747E47E2@gmx.de> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <12B58EF0-DFE4-4242-AE02-6881747E47E2@gmx.de> Message-ID: <004DD298-5D9D-4310-AC31-54BA8A98FDE3@googlemail.com> On May 10, 2007, at 2:21 PM, Christian Burk wrote: > Would it also be possible to use TeXShop with pdfsync? I write all > my stuff with TextMate and it's amazing. Afterwards I typeset it > with TeXShop. Now it would be great if I could jump easily between > the pdf and the source. Why do you typeset it with TeXShop? What's the advantage of it? Niels From maillists at gmx.de Thu May 10 12:54:56 2007 From: maillists at gmx.de (Christian Burk) Date: Thu, 10 May 2007 14:54:56 +0200 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <004DD298-5D9D-4310-AC31-54BA8A98FDE3@googlemail.com> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <12B58EF0-DFE4-4242-AE02-6881747E47E2@gmx.de> <004DD298-5D9D-4310-AC31-54BA8A98FDE3@googlemail.com> Message-ID: <682A1889-14DC-4E2A-9D1A-73F22F62F1ED@gmx.de> Am 10.05.2007 um 14:23 schrieb Niels Kobsch?tzki: > On May 10, 2007, at 2:21 PM, Christian Burk wrote: > > > >> Would it also be possible to use TeXShop with pdfsync? I write all >> my stuff with TextMate and it's amazing. Afterwards I typeset it >> with TeXShop. Now it would be great if I could jump easily between >> the pdf and the source. > > Why do you typeset it with TeXShop? What's the advantage of it? When I worked with TeXShop only, I created my engines for creating a nomeclature, a glossary and engines for several runs e.g. LaTeX > BibTeX > LaTeX > LaTeX. Furthermore, I like the different magnifications via mouse click. Christian From eli at markelikalderon.com Thu May 10 13:01:20 2007 From: eli at markelikalderon.com (Mark Eli Kalderon) Date: Thu, 10 May 2007 14:01:20 +0100 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> Message-ID: <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> On May 10 2007, at 13:12, Charilaos Skiadas wrote: > > On May 10, 2007, at 7:13 AM, Niels Kobsch?tzki wrote: > >> Hi! >> >> Skim (skim-app.sourceforge.net), a very neat and free pdf-viewer >> supports now pdfsync and they set up a wiki with some instructions >> how to enable Skim as viewer for pdfsync in Textmate. But I think >> the instructions are more complex than they should be. >> >> The site is: http://skim-app.sourceforge.net/wiki/index.php/ >> LaTeX_and_PDFSync >> >> Isn't it even in the standard-install of TextMate only necessary >> to set the Shell Variable TM_LATEX_VIEWER to Skim? >> > No, the LaTeX and View, and the other sync command, need to make an > extra call if the viewer supports pdfsync. Currently we are only > handling TeXniscope and PDFView, but I think we should be able to > add Skim to the list. > > I haven't tried Skim, what are its advantages over PDFView? > One reason TextMate should support Skim out of the box is that there is evidence that development of PDFView may halt. On the Sourceforge tracker, Andrea Bergia, PDFView?s developer, writes:[1] > Hello, I am the developer of PDFView, an application which seems > superseded by your wonderful Skim in many regards. I actually plan > to use it as my default PDF reader? Best, Mark [1]: From n.kobschaetzki at googlemail.com Thu May 10 13:04:33 2007 From: n.kobschaetzki at googlemail.com (=?ISO-8859-1?Q?Niels_Kobsch=E4tzki?=) Date: Thu, 10 May 2007 15:04:33 +0200 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> Message-ID: <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> On May 10, 2007, at 3:01 PM, Mark Eli Kalderon wrote: > > On May 10 2007, at 13:12, Charilaos Skiadas wrote: > >> >> On May 10, 2007, at 7:13 AM, Niels Kobsch?tzki wrote: >> >>> Hi! >>> >>> Skim (skim-app.sourceforge.net), a very neat and free pdf-viewer >>> supports now pdfsync and they set up a wiki with some >>> instructions how to enable Skim as viewer for pdfsync in >>> Textmate. But I think the instructions are more complex than they >>> should be. >>> >>> The site is: http://skim-app.sourceforge.net/wiki/index.php/ >>> LaTeX_and_PDFSync >>> >>> Isn't it even in the standard-install of TextMate only necessary >>> to set the Shell Variable TM_LATEX_VIEWER to Skim? >>> >> No, the LaTeX and View, and the other sync command, need to make >> an extra call if the viewer supports pdfsync. Currently we are >> only handling TeXniscope and PDFView, but I think we should be >> able to add Skim to the list. >> >> I haven't tried Skim, what are its advantages over PDFView? >> > > One reason TextMate should support Skim out of the box is that > there is evidence that development of PDFView may halt. On the > Sourceforge tracker, Andrea Bergia, PDFView?s developer, writes:[1] >> Hello, I am the developer of PDFView, an application which seems >> superseded by your wonderful Skim in many regards. I actually plan >> to use it as my default PDF reader? > Best, Mark > > [1]: 20func=detail&aid=1693191&group_id=192583&atid=941984> Didn't he even think about joining or even joined the ppl developing Skim? Niels From lists at arachnedesign.net Thu May 10 13:14:36 2007 From: lists at arachnedesign.net (Steve Lianoglou) Date: Thu, 10 May 2007 09:14:36 -0400 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> Message-ID: >> One reason TextMate should support Skim out of the box is that >> there is evidence that development of PDFView may halt. On the >> Sourceforge tracker, Andrea Bergia, PDFView?s developer, writes:[1] >>> Hello, I am the developer of PDFView, an application which seems >>> superseded by your wonderful Skim in many regards. I actually >>> plan to use it as my default PDF reader? >> Best, Mark >> >> [1]: > 20func=detail&aid=1693191&group_id=192583&atid=941984> > > Didn't he even think about joining or even joined the ppl > developing Skim? Apparently he did .. if you look at the last comment on that thread (from Andrea) he writes: """ It works. Thanks for the great speed, and for the quality of the software. I am seriously thinking about declaring PDFView "dead" and Skim as the "successor"; I'll just wait for some more LaTeX support (and maybe I'll try to help a bit with writing it). Again, thanks. """ as well as offering to whip up an Italian localization ... -steve From n.kobschaetzki at googlemail.com Thu May 10 13:17:15 2007 From: n.kobschaetzki at googlemail.com (=?ISO-8859-1?Q?Niels_Kobsch=E4tzki?=) Date: Thu, 10 May 2007 15:17:15 +0200 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> Message-ID: <5D65CF03-1EEB-4EDF-914F-8FF10F4EF037@googlemail.com> On May 10, 2007, at 3:14 PM, Steve Lianoglou wrote: >>> One reason TextMate should support Skim out of the box is that >>> there is evidence that development of PDFView may halt. On the >>> Sourceforge tracker, Andrea Bergia, PDFView?s developer, writes:[1] >>>> Hello, I am the developer of PDFView, an application which seems >>>> superseded by your wonderful Skim in many regards. I actually >>>> plan to use it as my default PDF reader? >>> Best, Mark >>> >>> [1]: >> 20func=detail&aid=1693191&group_id=192583&atid=941984> >> >> Didn't he even think about joining or even joined the ppl >> developing Skim? > > Apparently he did .. if you look at the last comment on that thread > (from Andrea) he writes: > > """ > It works. Thanks for the great speed, and for the quality of the > software. > I am seriously thinking about declaring PDFView "dead" and Skim as the > "successor"; I'll just wait for some more LaTeX support (and maybe > I'll try > to help a bit with writing it). > > Again, thanks. > """ > > as well as offering to whip up an Italian localization ... that's the reason why there's one in 0.3 ;) Niels From skiadas at hanover.edu Thu May 10 13:33:10 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Thu, 10 May 2007 09:33:10 -0400 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> Message-ID: <02C042C0-3930-4525-ABC2-BCCD75909E67@hanover.edu> On May 10, 2007, at 9:01 AM, Mark Eli Kalderon wrote: > One reason TextMate should support Skim out of the box is that > there is evidence that development of PDFView may halt. On the > Sourceforge tracker, Andrea Bergia, PDFView?s developer, writes:[1] >> Hello, I am the developer of PDFView, an application which seems >> superseded by your wonderful Skim in many regards. I actually plan >> to use it as my default PDF reader? > Best, Mark Well, I for one am convinced! I just hope Skim's life span is not as short as PDFSync's ;). I'll try to add support for Skim this weekend. (Also need to update the docs for some time now). > [1]: 20func=detail&aid=1693191&group_id=192583&atid=941984> Haris Skiadas Department of Mathematics and Computer Science Hanover College From edouard.gilbert at eleves.bretagne.ens-cachan.fr Thu May 10 13:35:42 2007 From: edouard.gilbert at eleves.bretagne.ens-cachan.fr (=?ISO-8859-1?Q?=C9douard_Gilbert?=) Date: Thu, 10 May 2007 15:35:42 +0200 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> Message-ID: >>> One reason TextMate should support Skim out of the box is that >>> there is evidence that development of PDFView may halt. On the >>> Sourceforge tracker, Andrea Bergia, PDFView?s developer, writes:[1] >>>> Hello, I am the developer of PDFView, an application which seems >>>> superseded by your wonderful Skim in many regards. I actually >>>> plan to use it as my default PDF reader? >>> Best, Mark >>> >>> [1]: >> 20func=detail&aid=1693191&group_id=192583&atid=941984> >> >> Didn't he even think about joining or even joined the ppl >> developing Skim? > > Apparently he did .. if you look at the last comment on that thread > (from Andrea) he writes: > > """ > It works. Thanks for the great speed, and for the quality of the > software. > I am seriously thinking about declaring PDFView "dead" and Skim as the > "successor"; I'll just wait for some more LaTeX support (and maybe > I'll try > to help a bit with writing it). > > Again, thanks. That would be great. If I'm right, PDFViewer was on it's way to include TeXShop Spotlight-based source/PDF sync, and I'd like to get rid of pdfsync. That function included in Skm would be even better. Is anyone able to have the suggested ?Show in Skim (pdfsync)? command they describe working? It only switch to Skim with me but does not jump to the right place. ?douard From skiadas at hanover.edu Thu May 10 13:41:19 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Thu, 10 May 2007 09:41:19 -0400 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> Message-ID: <95B0BC24-DBD4-4EE9-B046-D11F49690437@hanover.edu> On May 10, 2007, at 9:35 AM, ?douard Gilbert wrote: >> >> """ >> It works. Thanks for the great speed, and for the quality of the >> software. >> I am seriously thinking about declaring PDFView "dead" and Skim as >> the >> "successor"; I'll just wait for some more LaTeX support (and maybe >> I'll try >> to help a bit with writing it). >> >> Again, thanks. > > That would be great. If I'm right, PDFViewer was on it's way to > include TeXShop Spotlight-based source/PDF sync, and I'd like to > get rid of pdfsync. That function included in Skm would be even > better. > > Is anyone able to have the suggested ?Show in Skim (pdfsync)? > command they describe working? It only switch to Skim with me but > does not jump to the right place. Is that with single files, or with projects? I haven't tried their command yet, so I don't know, but if their code is similar to PDFSync's, then that had some problems on its first versions of dealing with syncing a master file when run from one of the included files. > ?douard Haris Skiadas Department of Mathematics and Computer Science Hanover College From edouard.gilbert at eleves.bretagne.ens-cachan.fr Thu May 10 13:50:33 2007 From: edouard.gilbert at eleves.bretagne.ens-cachan.fr (=?ISO-8859-1?Q?=C9douard_Gilbert?=) Date: Thu, 10 May 2007 15:50:33 +0200 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <95B0BC24-DBD4-4EE9-B046-D11F49690437@hanover.edu> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <95B0BC24-DBD4-4EE9-B046-D11F49690437@hanover.edu> Message-ID: <0025028C-EB9D-4DBB-A2D8-6D4876F8CC01@eleves.bretagne.ens-cachan.fr> Le 10 mai 07 ? 15:41, Charilaos Skiadas a ?crit : >> Is anyone able to have the suggested ?Show in Skim (pdfsync)? >> command they describe working? It only switch to Skim with me but >> does not jump to the right place. > > Is that with single files, or with projects? I haven't tried their > command yet, so I don't know, but if their code is similar to > PDFSync's, then that had some problems on its first versions of > dealing with syncing a master file when run from one of the > included files. Single file. I have only tried with one file, though, and as I don't use pdfsync that often (read ?I can't remember when I did last time?), it may be due to my tex file being a bit dirty. Is there any recommendation to use pdfsync, such as ?never \usepackage{pdfsync} after \usepackage{somepackage}?? ?douard From jasper at logt.nu Thu May 10 14:06:58 2007 From: jasper at logt.nu (Jasper van der Meulen) Date: Thu, 10 May 2007 16:06:58 +0200 Subject: [TxMt] Symbol window on 2nd screen Message-ID: <03DA1830-9552-4168-ADFE-A37BF149D265@logt.nu> Hi, I'm every so often on another location where i work on two screen's. The only thing i always need to adjust once is to drag the symbol window to the screen where the main textmate window is.\ Is there a config thing i can set, or is it a feature for TM2 ? ps: the other windows (goto file, bundle editor, etc) also come in the wrong screen Regards J. -------------- next part -------------- An HTML attachment was scrubbed... URL: From andre.cruz at segula.pt Thu May 10 14:39:33 2007 From: andre.cruz at segula.pt (=?ISO-8859-1?Q?Andr=E9_Cruz?=) Date: Thu, 10 May 2007 15:39:33 +0100 Subject: [TxMt] UTF8 on command output problems (ex. perl tidy) Message-ID: <77379ED5-5A21-4EFE-9A3A-B45AFD7AE2F9@segula.pt> Hello. I use TextMate 1.5.5. I came across a problem exibited by the perl bundle Tidy command. If the output of a command, in this case perltidy, contains chars in utf8, all the output is discarded and we end up with a blank document. For example this script: ################## my $body = < I finally cleaned up my HTML bundle, if anyone interested, it's there: http://tinyurl.com/2jjkt3 basic idea is to assign same key shortcut for all phrase, same shortcut for all block, same shortcut for all inline, etc... elements. sorta the way BBEdit used to work (well, it probably still does, just haven't opened in in a looooong time). It also adds tab triggers to basically all tags. Not revolutionary, just a little update to the great built in bundle. It saves me time though, so I'm thinking it might help a couple other people... I even made my first screencast to show you how to use it! enjoy :) - Yann -------------- next part -------------- An HTML attachment was scrubbed... URL: From ciawal at gmail.com Thu May 10 14:55:40 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Thu, 10 May 2007 15:55:40 +0100 Subject: [TxMt] UTF8 on command output problems (ex. perl tidy) In-Reply-To: <77379ED5-5A21-4EFE-9A3A-B45AFD7AE2F9@segula.pt> References: <77379ED5-5A21-4EFE-9A3A-B45AFD7AE2F9@segula.pt> Message-ID: <2157132C-5371-40C5-A418-0C7C09513B7D@gmail.com> On 10 May 2007, at 15:39, Andr? Cruz wrote: > If I run the tidy command on this file, I end up with a blank > document. Perltidy works fine though because I tried redirecting > the output of the command to a file and it's all there. I just committed a change which I think should fix it. You can svn up, or if you aren't running from svn then: ? Open the bundle editor ? Expand the Perl bundle ? Click on the Tidy command ? Prepend ?__CF_USER_TEXT_ENCODING=$UID:0x8000100:0x8000100 ? before ?perltidy -st?? ? Close the bundle editor After that it should work. From andre.cruz at segula.pt Thu May 10 15:01:37 2007 From: andre.cruz at segula.pt (=?ISO-8859-1?Q?Andr=E9_Cruz?=) Date: Thu, 10 May 2007 16:01:37 +0100 Subject: [TxMt] Re: PERL - Tidy does not work In-Reply-To: <0E69FB01-CC87-4132-B50C-641855715887@segula.pt> References: <0E69FB01-CC87-4132-B50C-641855715887@segula.pt> Message-ID: <2BFA201A-E98D-4E32-8D9A-13E6561A0CAC@segula.pt> On 2007/05/10, Ciar?n Walsh wrote: > ? Prepend ?__CF_USER_TEXT_ENCODING=$UID:0x8000100:0x8000100 ? before > ?perltidy -st?? Nope.. Didn't work. Thanks for the help though, Andr? Cruz From ciawal at gmail.com Thu May 10 15:04:50 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Thu, 10 May 2007 16:04:50 +0100 Subject: [TxMt] Re: PERL - Tidy does not work In-Reply-To: <2BFA201A-E98D-4E32-8D9A-13E6561A0CAC@segula.pt> References: <0E69FB01-CC87-4132-B50C-641855715887@segula.pt> <2BFA201A-E98D-4E32-8D9A-13E6561A0CAC@segula.pt> Message-ID: On 10 May 2007, at 16:01, Andr? Cruz wrote: > Nope.. Didn't work. With that setting and your example, it now works for me. does env|sort ?R include it? -------------- next part -------------- An HTML attachment was scrubbed... URL: From andre.cruz at segula.pt Thu May 10 15:14:31 2007 From: andre.cruz at segula.pt (=?ISO-8859-1?Q?Andr=E9_Cruz?=) Date: Thu, 10 May 2007 16:14:31 +0100 Subject: [TxMt] Re: PERL - Tidy does not work In-Reply-To: <0E69FB01-CC87-4132-B50C-641855715887@segula.pt> References: <0E69FB01-CC87-4132-B50C-641855715887@segula.pt> Message-ID: <604A14A0-631D-49AC-93C0-B6F039FCF7CE@segula.pt> On 2007/05/10, Ciar?n Walsh wrote: > does env|sort ?R include it? You mean if the env var is set? env will not include it since it is set only for the perltidy command. But just to check the value I ran __CF_USER_TEXT_ENCODING=$UID: 0x8000100:0x8000100 env|sort This is the value set: __CF_USER_TEXT_ENCODING=501:0x8000100:0x8000100 Andr? Cruz From harrison at Math.Berkeley.EDU Thu May 10 15:29:05 2007 From: harrison at Math.Berkeley.EDU (Jenny Harrison) Date: Thu, 10 May 2007 08:29:05 -0700 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <95B0BC24-DBD4-4EE9-B046-D11F49690437@hanover.edu> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <95B0BC24-DBD4-4EE9-B046-D11F49690437@hanover.edu> Message-ID: The Latex command for calling Skim works just as it is posted in http://skim-app.sourceforge.net/wiki/index.php/ LaTeX_and_PDFSync#Setting_up_TextMate I used these: Save: Nothing Input: None Output: Show as Tooltip Scope selector: text.tex.latex Set TM_LATEX_VIEWER to Skim I have not experimented much, but Skim came right up. Jenny On May 10, 2007, at 6:41 AM, Charilaos Skiadas wrote: > On May 10, 2007, at 9:35 AM, ?douard Gilbert wrote: > >>> >>> """ >>> It works. Thanks for the great speed, and for the quality of the >>> software. >>> I am seriously thinking about declaring PDFView "dead" and Skim >>> as the >>> "successor"; I'll just wait for some more LaTeX support (and >>> maybe I'll try >>> to help a bit with writing it). >>> >>> Again, thanks. >> >> That would be great. If I'm right, PDFViewer was on it's way to >> include TeXShop Spotlight-based source/PDF sync, and I'd like to >> get rid of pdfsync. That function included in Skm would be even >> better. >> >> Is anyone able to have the suggested ?Show in Skim (pdfsync)? >> command they describe working? It only switch to Skim with me but >> does not jump to the right place. > > Is that with single files, or with projects? I haven't tried their > command yet, so I don't know, but if their code is similar to > PDFSync's, then that had some problems on its first versions of > dealing with syncing a master file when run from one of the > included files. > >> ?douard > > Haris Skiadas > Department of Mathematics and Computer Science > Hanover College > > > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From andre.cruz at segula.pt Thu May 10 15:31:33 2007 From: andre.cruz at segula.pt (=?ISO-8859-1?Q?Andr=E9_Cruz?=) Date: Thu, 10 May 2007 16:31:33 +0100 Subject: [TxMt] Perl indentation question Message-ID: <8E7F0FBA-2381-41B0-8543-F2379B1CA34B@segula.pt> Hello. I don't know who is responsible for the indentation of Perl buffers (textmate author or bundle author?) but there is a problem with structures of the kind: ### my $teste; $sth_comments->bind_columns( undef, \$journalid, \$jtalkid ); my $teste2; ### This is correctly indented, according to the Text->Indent Selection command. But I was expecting this: ### my $teste; $sth_comments->bind_columns( undef, \$journalid, \$jtalkid ); my $teste2; ### Regards, Andr? Cruz From harrison at Math.Berkeley.EDU Thu May 10 16:27:12 2007 From: harrison at Math.Berkeley.EDU (Jenny Harrison) Date: Thu, 10 May 2007 09:27:12 -0700 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> Message-ID: It jumps to the right place for me in both directions. After we sort this out, I would like to learn about the new "TeXShop Spotlight-based source/PDF sync". Jenny > That would be great. If I'm right, PDFViewer was on it's way to > include TeXShop Spotlight-based source/PDF sync, and I'd like to > get rid of pdfsync. That function included in Skm would be even > better. > > Is anyone able to have the suggested ?Show in Skim (pdfsync)? > command they describe working? It only switch to Skim with me but > does not jump to the right place. > > ?douard > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From harrison at Math.Berkeley.EDU Thu May 10 19:11:15 2007 From: harrison at Math.Berkeley.EDU (Jenny Harrison) Date: Thu, 10 May 2007 12:11:15 -0700 Subject: [TxMt] Move blocks of text using "Go To Symbol"? Message-ID: <982A546C-9555-488E-A7F3-3819BA30F177@math.berkeley.edu> Hello everyone, I live in the latex bundle, but this feature request may be relevant to others. I would like to be able to move blocks of text in the latex file by simply moving corresponding headers in the "Go to Symbol" sidebar. This would replace my need to use OminOutliner to organize material. (There seems to be no satisfactory way to port a Latex file from TextMate into OmniOutliner without a great deal of hand work.) A related feature request would be a Latex logic checker. No matter how we move blocks around, we may wish to check that the references maintain their logical ordering. It would be nice to have a command to do this for us, especially for long documents. I am no programmer, but I imagine this should be easy to do -- find each \ref that occurs before its \label. Cheers, Jenny ____________________________________ Jenny Harrison Professor of Mathematics University of California, Berkeley 851 Evans Hall Berkeley CA 94720-3270 Tele: 510-642-9666 Fax: 510-642-5270 Email: harrison at math.berkeley.edu Web: http://math.berkeley.edu/~harrison/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From igor.sutton at gmail.com Thu May 10 16:01:23 2007 From: igor.sutton at gmail.com (Igor Sutton Lopes) Date: Thu, 10 May 2007 13:01:23 -0300 Subject: [TxMt] UTF8 on command output problems (ex. perl tidy) In-Reply-To: <77379ED5-5A21-4EFE-9A3A-B45AFD7AE2F9@segula.pt> References: <77379ED5-5A21-4EFE-9A3A-B45AFD7AE2F9@segula.pt> Message-ID: <573864AF-3D09-4C7E-A4E9-5AA14432A5F6@gmail.com> Andr?, On May 10, 2007, at 11:39 AM, Andr? Cruz wrote: > Hello. > > I use TextMate 1.5.5. I came across a problem exibited by the perl > bundle Tidy command. > > If the output of a command, in this case perltidy, contains chars > in utf8, all the output is discarded and we end up with a blank > document. For example this script: > > ################## > > my $body = < Repar?mos > END > > ############ You must save your file before tidying it :-) Good luck! -- Igor Sutton igor.sutton at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: PGP.sig Type: application/pgp-signature Size: 186 bytes Desc: This is a digitally signed message part URL: From bchoate at gmail.com Thu May 10 20:03:20 2007 From: bchoate at gmail.com (Brad Choate) Date: Thu, 10 May 2007 13:03:20 -0700 Subject: [TxMt] UTF8 on command output problems (ex. perl tidy) In-Reply-To: <573864AF-3D09-4C7E-A4E9-5AA14432A5F6@gmail.com> References: <77379ED5-5A21-4EFE-9A3A-B45AFD7AE2F9@segula.pt> <573864AF-3D09-4C7E-A4E9-5AA14432A5F6@gmail.com> Message-ID: Um, shouldn't the command enforce that then? -------------- next part -------------- A non-text attachment was scrubbed... Name: pastedGraphic.png Type: image/png Size: 11950 bytes Desc: not available URL: -------------- next part -------------- On May 10, 2007, at 9:01 AM, Igor Sutton Lopes wrote: > Andr?, > > On May 10, 2007, at 11:39 AM, Andr? Cruz wrote: > >> Hello. >> >> I use TextMate 1.5.5. I came across a problem exibited by the perl >> bundle Tidy command. >> >> If the output of a command, in this case perltidy, contains chars >> in utf8, all the output is discarded and we end up with a blank >> document. For example this script: >> >> ################## >> >> my $body = <> Repar?mos >> END >> >> ############ > > You must save your file before tidying it :-) > > Good luck! > > -- > Igor Sutton > igor.sutton at gmail.com > > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From skiadas at hanover.edu Thu May 10 20:50:22 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Thu, 10 May 2007 16:50:22 -0400 Subject: [TxMt] Move blocks of text using "Go To Symbol"? In-Reply-To: <982A546C-9555-488E-A7F3-3819BA30F177@math.berkeley.edu> References: <982A546C-9555-488E-A7F3-3819BA30F177@math.berkeley.edu> Message-ID: <52B78EB4-5933-4C3B-97CB-12ADC762FE12@hanover.edu> On May 10, 2007, at 3:11 PM, Jenny Harrison wrote: > Hello everyone, > > I live in the latex bundle, but this feature request may be > relevant to others. I would like to be able to move blocks of text > in the latex file by simply moving corresponding headers in the "Go > to Symbol" sidebar. This would replace my need to use > OminOutliner to organize material. (There seems to be no > satisfactory way to port a Latex file from TextMate into > OmniOutliner without a great deal of hand work.) That's an interesting idea. Don't about about in general, but we might be able to have something like this in place with a custom command using a custom nib with a tree structure, where it presents the various sectioning items and you can then move them around. Once you are done, the command then rearranges the text and replaces the entire contents of the current document with the new contents. I would be very hesitant about making it work across multiple files, but within a single file it shouldn't be too hard to do. Such a command would of course have to work under the assumption that, once it encounters a \section{} command, then everything until the next \section{} command is part of this section. > A related feature request would be a Latex logic checker. No > matter how we move blocks around, we may wish to check that the > references maintain their logical ordering. It would be nice to > have a command to do this for us, especially for long documents. I > am no programmer, but I imagine this should be easy to do -- find > each \ref that occurs before its \label. But very often you want \refs to appear before their \labels. I don't see how you can establish a logical ordering by determining that a \ref appears before its \label. Plus, you might also have multiple \refs. Or perhaps I have misunderstood what you mean? > Cheers, > > Jenny > > ____________________________________ > > Jenny Harrison > Professor of Mathematics > University of California, Berkeley > 851 Evans Hall > Berkeley CA 94720-3270 > Tele: 510-642-9666 > Fax: 510-642-5270 > Email: harrison at math.berkeley.edu > Web: http://math.berkeley.edu/~harrison/ Haris Skiadas Department of Mathematics and Computer Science Hanover College From harrison at Math.Berkeley.EDU Thu May 10 20:59:40 2007 From: harrison at Math.Berkeley.EDU (Jenny Harrison) Date: Thu, 10 May 2007 13:59:40 -0700 Subject: [TxMt] Move blocks of text using "Go To Symbol"? In-Reply-To: <52B78EB4-5933-4C3B-97CB-12ADC762FE12@hanover.edu> References: <982A546C-9555-488E-A7F3-3819BA30F177@math.berkeley.edu> <52B78EB4-5933-4C3B-97CB-12ADC762FE12@hanover.edu> Message-ID: <86021BA1-C063-4DE8-8964-6043535F7E93@math.berkeley.edu> On May 10, 2007, at 1:50 PM, Charilaos Skiadas wrote: >> >> I live in the latex bundle, but this feature request may be >> relevant to others. I would like to be able to move blocks of >> text in the latex file by simply moving corresponding headers in >> the "Go to Symbol" sidebar. This would replace my need to use >> OminOutliner to organize material. (There seems to be no >> satisfactory way to port a Latex file from TextMate into >> OmniOutliner without a great deal of hand work.) > > That's an interesting idea. Don't about about in general, but we > might be able to have something like this in place with a custom > command using a custom nib with a tree structure, where it presents > the various sectioning items and you can then move them around. > Once you are done, the command then rearranges the text and > replaces the entire contents of the current document with the new > contents. I would be very hesitant about making it work across > multiple files, but within a single file it shouldn't be too hard > to do. Such a command would of course have to work under the > assumption that, once it encounters a \section{} command, then > everything until the next \section{} command is part of this section. I would be delighted to see this working in a single file. > >> A related feature request would be a Latex logic checker. No >> matter how we move blocks around, we may wish to check that the >> references maintain their logical ordering. It would be nice to >> have a command to do this for us, especially for long documents. >> I am no programmer, but I imagine this should be easy to do -- >> find each \ref that occurs before its \label. > > But very often you want \refs to appear before their \labels. I > don't see how you can establish a logical ordering by determining > that a \ref appears before its \label. Plus, you might also have > multiple \refs. > Or perhaps I have misunderstood what you mean? > Yes, you do often want \refs to appear before \labels, such as in an introduction, but it would be nice to double check each of these, especially when proving theorems using lemmas spread throughout a book, say. Jenny -------------- next part -------------- An HTML attachment was scrubbed... URL: From sebastian.graessl at gmail.com Thu May 10 21:46:28 2007 From: sebastian.graessl at gmail.com (=?ISO-8859-1?Q?Sebastian_Gr=E4=DFl?=) Date: Thu, 10 May 2007 23:46:28 +0200 Subject: [TxMt] New Home of the GetBundle Message-ID: <02577642-69A6-4143-ACAE-C0810A2D241F@gmail.com> Hello there! I just wanted to tell you that the GetBundle has now it's own page and will get some improvements like turning it into a Plugin(maybe). The new site can be found at http://projects.validcode.net/getbundle Sebastian From edouard.gilbert at eleves.bretagne.ens-cachan.fr Thu May 10 21:52:54 2007 From: edouard.gilbert at eleves.bretagne.ens-cachan.fr (=?ISO-8859-1?Q?=C9douard_Gilbert?=) Date: Thu, 10 May 2007 23:52:54 +0200 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> Message-ID: <9EAFBCE2-AE68-4585-8178-A8E7B3A91BB9@eleves.bretagne.ens-cachan.fr> > It jumps to the right place for me in both directions. It appears its a problem with my source. It indeed works with another (simpler) file. I'll check out. > After we sort this out, I would like to learn about the new > "TeXShop Spotlight-based source/PDF sync". Not quite so new, since version 2.0, I think. More information can be found in TeXShop Help. Advanced Help > PDFSync, more precisely. Apparently, it's based on search in PDF files. I think it's a feature included for Spotlight, I think. ?douard From tom at tommai.de Thu May 10 22:37:02 2007 From: tom at tommai.de (Thomas Mai) Date: Fri, 11 May 2007 00:37:02 +0200 Subject: [TxMt] Several newbie-questions Message-ID: Hi! I'm new to TextMate - and so there came up some questions which I've gathered here. Thanks in advance for any tip! Bye, Tom How can I open the file at the cursor directly from inside the editor? Can TM hilight the matching brackets? (I'm using "pastels on dark" color scheme; if thats important...) How do I make the cursor follow when I've scrolled some pages with Ctrl-CursorUp/Down? "Standard-behaviour" is that the cursor stays where I've started. How do I find the next match (for the same criteria) when searching incrementally with Ctrl+S? Is there a simple calculator in TM? I prefer bookmarks that I can access directly, e.g. something like ^1 for line 40, ^2 for line 88 etc - instead of F2. Can I have that with TM? From andre.cruz at segula.pt Thu May 10 22:58:12 2007 From: andre.cruz at segula.pt (=?ISO-8859-1?Q?Andr=E9_Cruz?=) Date: Thu, 10 May 2007 23:58:12 +0100 Subject: [TxMt] UTF8 on command output problems (ex. perl tidy) In-Reply-To: <573864AF-3D09-4C7E-A4E9-5AA14432A5F6@gmail.com> References: <77379ED5-5A21-4EFE-9A3A-B45AFD7AE2F9@segula.pt> <573864AF-3D09-4C7E-A4E9-5AA14432A5F6@gmail.com> Message-ID: On 2007/05/10, at 17:01, Igor Sutton Lopes wrote: > > You must save your file before tidying it :-) Very funny Igor... :) Of course I saved it. Does the Tidy command work for you? Andr? Cruz From edouard.gilbert at eleves.bretagne.ens-cachan.fr Thu May 10 23:08:11 2007 From: edouard.gilbert at eleves.bretagne.ens-cachan.fr (=?ISO-8859-1?Q?=C9douard_Gilbert?=) Date: Fri, 11 May 2007 01:08:11 +0200 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> Message-ID: <0A523320-5CD3-41EA-8FAB-0249C6CF7EA2@eleves.bretagne.ens-cachan.fr> >> It jumps to the right place for me in both directions. > > It appears its a problem with my source. It indeed works with > another (simpler) file. I'll check out. Using PDFView, syncing works with that other file. Any idea where the problem might come from? ?douard From skiadas at hanover.edu Thu May 10 23:20:30 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Thu, 10 May 2007 19:20:30 -0400 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <0A523320-5CD3-41EA-8FAB-0249C6CF7EA2@eleves.bretagne.ens-cachan.fr> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <0A523320-5CD3-41EA-8FAB-0249C6CF7EA2@eleves.bretagne.ens-cachan.fr> Message-ID: <05FE2668-5743-42A5-A9E6-E5CFA0814426@hanover.edu> On May 10, 2007, at 7:08 PM, ?douard Gilbert wrote: >>> It jumps to the right place for me in both directions. >> >> It appears its a problem with my source. It indeed works with >> another (simpler) file. I'll check out. > > Using PDFView, syncing works with that other file. Any idea where > the problem might come from? Send me your file when you get the chance, if possible, and when in the weekend I set things up with Skim I'll see if I can figure out what's wrong. If for whatever reason you can't send me your file, try to create a minimal example demonstrating the problem, by removing more and more from the file and checking if the problem is still there. > ?douard Haris Skiadas Department of Mathematics and Computer Science Hanover College From grijalva at gmail.com Fri May 11 00:21:33 2007 From: grijalva at gmail.com (Dave Grijalva) Date: Thu, 10 May 2007 17:21:33 -0700 Subject: [TxMt] Flex 2 Bundle In-Reply-To: <603BBEAA-811E-406A-AF0E-D0026AE7E139@helvector.org> References: <34847.1177497719@helvector.org> <000601c7874b$de40bcb0$872aa8c0@Backstop.local> <06D173BB-D966-42DE-8DD9-62A717F309C9@helvector.org> <212FE32C-F442-4067-89E7-E099511FCB6F@skia.net> <603BBEAA-811E-406A-AF0E-D0026AE7E139@helvector.org> Message-ID: I've been playing with the flex bundles for a while now. It looks like there are lots of different ways of building Flex at this point. I've been using rake: http://theblogthatnoonereads.tunasoft.com/2007/04/29/building-flex-on-rails/ -dave On 4/26/07, Simon Gregory wrote: > > > The grammar I've attached deals with the tag problem > > brought up by Dave and also adds scopes for little things like > > I've simply created a new language item from your file and checked it > into the repository. It's looking far better already ;) Although I'm > colour blind and it took me a while to realise it was actually doing > anything (with the Twilight theme)... but that's another story. > > The only thing that has occurred to me to do was reverting the scope > back to ActionScript 3 in any binding situations. ie > > > > Yes/No ? Any other suggestions? > > Simon > > > > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > -------------- next part -------------- An HTML attachment was scrubbed... URL: From amaxwell at mac.com Fri May 11 01:01:16 2007 From: amaxwell at mac.com (Adam R. Maxwell) Date: Thu, 10 May 2007 18:01:16 -0700 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> Message-ID: <9BCB9D35-1D8A-4424-9209-BC5E7D9DF07B@mac.com> On May 10, 2007, at 06:35, ?douard Gilbert wrote: >>> Apparently he did .. if you look at the last comment on that >>> thread (from Andrea) he writes: >> >> """ >> It works. Thanks for the great speed, and for the quality of the >> software. >> I am seriously thinking about declaring PDFView "dead" and Skim as >> the >> "successor"; I'll just wait for some more LaTeX support (and maybe >> I'll try >> to help a bit with writing it). >> >> Again, thanks. > > That would be great. If I'm right, PDFViewer was on it's way to > include TeXShop Spotlight-based source/PDF sync, Just to be clear, TeXShop's alternate syncing is based on PDFKit, and has nothing to do with Spotlight AFAIK. > and I'd like to get rid of pdfsync. That function included in Skm > would be even better. Why? If I recall correctly, one advantage of pdfsync is that it is more robust with equations and figures. Be sure you have the most recent version of the package from CTAN, though, as it has a number of fixes. -- Adam From igor.sutton at gmail.com Fri May 11 03:19:25 2007 From: igor.sutton at gmail.com (Igor Sutton Lopes) Date: Fri, 11 May 2007 00:19:25 -0300 Subject: [TxMt] UTF8 on command output problems (ex. perl tidy) In-Reply-To: References: <77379ED5-5A21-4EFE-9A3A-B45AFD7AE2F9@segula.pt> <573864AF-3D09-4C7E-A4E9-5AA14432A5F6@gmail.com> Message-ID: On May 10, 2007, at 7:58 PM, Andr? Cruz wrote: > > On 2007/05/10, at 17:01, Igor Sutton Lopes wrote: > >> >> You must save your file before tidying it :-) > > Very funny Igor... :) > > Of course I saved it. Does the Tidy command work for you? Yes. I created another Tidy command, calling 'perltidy'. The first time I used the Tidy command it worked with the file contents, not the buffer contents. -- Igor Sutton igor.sutton at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: PGP.sig Type: application/pgp-signature Size: 186 bytes Desc: This is a digitally signed message part URL: From jacobolus at gmail.com Fri May 11 03:43:01 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Thu, 10 May 2007 23:43:01 -0400 Subject: [TxMt] Re: Several newbie-questions In-Reply-To: References: Message-ID: Thomas Mai wrote: > How can I open the file at the cursor directly from inside the editor? You'll have to explain. Are you talking about a complete file path? In what language file? > Can TM hilight the matching brackets? (I'm using "pastels on dark" color > scheme; if thats important...) When you arrow past the final bracket, the starting bracket is highlighted. You can also select everything inside a pair of brackets with Edit ? Select ? Enclosing Brackets. > How do I make the cursor follow when I've scrolled some pages with > Ctrl-CursorUp/Down? "Standard-behaviour" is that the cursor stays where > I've started. see [here](http://macromates.com/blog/archives/2005/07/05/key-bindings-for-switchers/) > How do I find the next match (for the same criteria) when searching > incrementally with Ctrl+S? press ?S again > Is there a simple calculator in TM? There are a few, but you can certainly make your own if they don't do enough. Take a look through the bundles. (hint, there's a "math" bundle) > I prefer bookmarks that I can access directly, e.g. something like ^1 > for line 40, ^2 for line 88 etc - instead of F2. Can I have that with TM? You could probably make some commands for such a thing. -Jacob From jacobolus at gmail.com Fri May 11 03:45:12 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Thu, 10 May 2007 23:45:12 -0400 Subject: [TxMt] Re: Move blocks of text using "Go To Symbol"? In-Reply-To: <982A546C-9555-488E-A7F3-3819BA30F177@math.berkeley.edu> References: <982A546C-9555-488E-A7F3-3819BA30F177@math.berkeley.edu> Message-ID: Jenny Harrison wrote: > I live in the latex bundle, but this feature request may be relevant to > others. I would like to be able to move blocks of text in the latex > file by simply moving corresponding headers in the "Go to Symbol" > sidebar. This would replace my need to use OminOutliner to organize > material. (There seems to be no satisfactory way to port a Latex file > from TextMate into OmniOutliner without a great deal of hand work.) Glad you put this up in an email. After you chatted with us at Macworld about it, I did mention it to haris and allan. :) It would be nice to solve more generally than just for LaTeX, if possible. -Jacob From n.kobschaetzki at googlemail.com Fri May 11 04:31:52 2007 From: n.kobschaetzki at googlemail.com (=?ISO-8859-1?Q?Niels_Kobsch=E4tzki?=) Date: Fri, 11 May 2007 06:31:52 +0200 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <9BCB9D35-1D8A-4424-9209-BC5E7D9DF07B@mac.com> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <9BCB9D35-1D8A-4424-9209-BC5E7D9DF07B@mac.com> Message-ID: <9689A36F-1A80-47A1-AA8C-0CA62795530B@googlemail.com> On May 11, 2007, at 3:01 AM, Adam R. Maxwell wrote: > > On May 10, 2007, at 06:35, ?douard Gilbert wrote: > >>>> Apparently he did .. if you look at the last comment on that >>>> thread (from Andrea) he writes: >>> >>> """ >>> It works. Thanks for the great speed, and for the quality of the >>> software. >>> I am seriously thinking about declaring PDFView "dead" and Skim >>> as the >>> "successor"; I'll just wait for some more LaTeX support (and >>> maybe I'll try >>> to help a bit with writing it). >>> >>> Again, thanks. >> >> That would be great. If I'm right, PDFViewer was on it's way to >> include TeXShop Spotlight-based source/PDF sync, > > Just to be clear, TeXShop's alternate syncing is based on PDFKit, > and has nothing to do with Spotlight AFAIK. > >> and I'd like to get rid of pdfsync. That function included in Skm >> would be even better. > > Why? If I recall correctly, one advantage of pdfsync is that it is > more robust with equations and figures. Be sure you have the most > recent version of the package from CTAN, though, as it has a number > of fixes. Will it be enough just to install it? I see that my only pdfsync on the system is in TextMate itself (/Applications/TextMate.app/Contents/ SharedSupport/Bundles/Latex.tmbundle/Support/tex/latex/pdfsync.sty) and this is Version 0.6 - maybe it's time for TextMate to upgrade the version to 1.0 ;) Niels From amaxwell at mac.com Fri May 11 04:45:26 2007 From: amaxwell at mac.com (Adam R. Maxwell) Date: Thu, 10 May 2007 21:45:26 -0700 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <9689A36F-1A80-47A1-AA8C-0CA62795530B@googlemail.com> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <9BCB9D35-1D8A-4424-9209-BC5E7D9DF07B@mac.com> <9689A36F-1A80-47A1-AA8C-0CA62795530B@googlemail.com> Message-ID: <2391A6D7-9F79-4C2B-B5CA-A48D9D765400@mac.com> On May 10, 2007, at 21:31, Niels Kobsch?tzki wrote: > On May 11, 2007, at 3:01 AM, Adam R. Maxwell wrote: > >> >> On May 10, 2007, at 06:35, ?douard Gilbert wrote: >> >>>>> and I'd like to get rid of pdfsync. That function included in >>>>> Skm would be even better. >> >> Why? If I recall correctly, one advantage of pdfsync is that it is >> more robust with equations and figures. Be sure you have the most >> recent version of the package from CTAN, though, as it has a number >> of fixes. > > Will it be enough just to install it? I see that my only pdfsync on > the system is in TextMate itself (/Applications/TextMate.app/ > Contents/SharedSupport/Bundles/Latex.tmbundle/Support/tex/latex/ > pdfsync.sty) and this is Version 0.6 - maybe it's time for TextMate > to upgrade the version to 1.0 ;) Hopefully you could install it in ~/Library/texmf and override TextMate's bundled version. http://www.ctan.org/tex-archive/macros/latex/contrib/pdfsync/pdfsync.sty is certainly newer. -- Adam From dave.baldwin at 3dlabs.com Fri May 11 07:38:37 2007 From: dave.baldwin at 3dlabs.com (Dave Baldwin) Date: Fri, 11 May 2007 08:38:37 +0100 Subject: [TxMt] Re: Move blocks of text using "Go To Symbol"? In-Reply-To: References: <982A546C-9555-488E-A7F3-3819BA30F177@math.berkeley.edu> Message-ID: <14C763D7-CBAA-41D6-814A-CF7D28E2D137@3dlabs.com> If you fold your code then you can just drag and drop the folds around. Not quite what you want especially as latex doesn't fold cleanly unless you add extra fold markers (AFAIK), and nothing like as powerful as rearranging things in a true outliner, but may be good enough. Dave. On 11 May 2007, at 04:45, Jacob Rus wrote: > Jenny Harrison wrote: >> I live in the latex bundle, but this feature request may be >> relevant to others. I would like to be able to move blocks of >> text in the latex file by simply moving corresponding headers in >> the "Go to Symbol" sidebar. This would replace my need to use >> OminOutliner to organize material. (There seems to be no >> satisfactory way to port a Latex file from TextMate into >> OmniOutliner without a great deal of hand work.) > > Glad you put this up in an email. After you chatted with us at > Macworld about it, I did mention it to haris and allan. :) > > It would be nice to solve more generally than just for LaTeX, if > possible. > > -Jacob > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From throw-away-1 at macromates.com Fri May 11 08:41:49 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 11 May 2007 10:41:49 +0200 Subject: [TxMt] subversion and colordiff In-Reply-To: References: <2CC90435-00CF-4A60-AC62-6B59D7305449@gmail.com> Message-ID: <6A6EDC6A-70C6-4856-904A-0DD1434D90B7@macromates.com> On 10. May 2007, at 13:15, Jack Nutting wrote: > [...] I still wonder why getting a diff from the log already did > the right thing, but anyway this solves my current need. The log message says: ? status and log: ensure that 'diff' is used as the --diff-cmd and not user-set diff program from the subversion config note: should probably be revised to use TM_SVN_DIFF_CMD instead So they were intentionally fixed for the problem you experienced, but not in the preferred way :) From throw-away-1 at macromates.com Fri May 11 08:50:50 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 11 May 2007 10:50:50 +0200 Subject: [TxMt] Scope and Preprocessing for personal Markup In-Reply-To: <163123eb0705052257l3b717e67xea1f21d555303802@mail.gmail.com> References: <163123eb0705052257l3b717e67xea1f21d555303802@mail.gmail.com> Message-ID: <22C095CC-0300-4B71-AEF7-A541C99B22D8@macromates.com> On 6. May 2007, at 07:57, J Fischer wrote: > [...] > My bundle is called "jmarkup" and I've set most of the scope > selectors to > "text." (BTW, I still don't competely get how to choose scope > selectors, > despite reading that section many times.) That?s the scope selectors of your snippets (and commands)? If you want it to work in all text documents, that?d be fine, although the trailing comma is not needed. You can also use a scope selector e.g. of: ?text.tex, text.html.markdown, text.jmarkup? to limit it to onky those 3 scopes. > I'll probably do most of my writing in Latex or Markdown (or MMD), and > currently I have to go back and forth between syntax coloring for > either > Latex or jmarkup. > > 1) Can I somehow set my scope so that I can see it colored while > I'm in > Latex and MMD? If I understand you correctly, you have basically done *extensions* to LaTeX, but as its own grammar, thus you switch between having your extensions colored, or the ?native? LaTeX syntax, is that correct? > 2) Could someone point me to a place explaining how I could process my > markup before the latex. E.g. So that when I hit the key combo to > preview > the Latex, everything is preprocessed to replace my [[note > syntax ]] with > Latex markup for left and right margin notes. While not rocket science, this is not trivial either. LaTeX works with files on disk, that means, if you want to preprocess your files before giving them to pdflatex,but still retain the non- preprocessed version (for further editing), you would effectively need to either copy your latex files to a temporary build location, where you run pdflatex on your master file, or alternatively, backup all your latex files, then preprocess them, and restore again after having called pdflatex. With LaTeX, I think it?s better to define new commands in the language, than use preprocessing. > 3) Referring to #2 above, could I have separate processing- > replacements set > up for whether I was making an output for myself (e.g. working > draft with > all notes and markup) or for my advisor (e.g. print draft without > notes and > hiding my in-line styles, like "revise" or "check facts")? You can, yes. Though I think LaTeX has packages for ?drafts?, so it?d probably be better to learn that system, than setting up this tool chain. > 4) What would the best bundle be to use as an example of how to > gather all > "action" markups in to a separate document? For example, I might > have a fact > that is suffixed with [!check this!] and I want to gather all lines > that > have that [!...!] in them. I assume this might be similar to the > TODO or > GTDalt bundles but haven't checked them out yet. Yes, this is effectively what the TODO bundle does. Probably you?d be better off with using markup such as: % TODO check this, and simply run the Show TODO List action from the TODO bundle (it has a help file with details about the markup). From throw-away-1 at macromates.com Fri May 11 08:59:00 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 11 May 2007 10:59:00 +0200 Subject: [TxMt] Changing look of Markdown docs In-Reply-To: References: Message-ID: <788F88E7-1D06-4311-88FE-BC77A2B5D43C@macromates.com> On 8. May 2007, at 12:52, Nigel Green wrote: > [...] > Is it possible to change the way headings are recognised? In > particular I would like to have the following: > > ## Heading 1 { > Some text in here... > } > ## Heading 2 { > Some text in here... > } > [...] > Means I get all the headings recognised correctly. Both versions > above are recognised and converted to HTML correctly by the > Markdown.pl script so I presume the highlighting is down to the > language grammar? I looked at it and tried to change it myself but > broke all the other formatting as well so think I need some > professional input on this one! If Markdown recognizes the above (as it does) we should fix the grammar. Recent Markdown beta also made a slight change to how links are recognized, so I am going to update the grammar shortly, just waiting for John to classify a few new problems (with his latest beta) as either bugs or by design, so I know how to update syntax highlighting for these ;) > I know its not a life-changing query but I'd like to understand the > language grammar stuff better and this looks like a good starter > project!! The Markdown grammar is IMO quite nicely structured and all, but it?s also pretty hardcore, because it has some monster regexps and it ?hides? some implicit Markdown rules about when which block level element breaks a paragraph etc. From throw-away-1 at macromates.com Fri May 11 09:06:28 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 11 May 2007 11:06:28 +0200 Subject: [TxMt] drag command for inserting links to local files In-Reply-To: <0931BE40-5BA9-4B76-BC11-3C219BB13743@skurfer.com> References: <0931BE40-5BA9-4B76-BC11-3C219BB13743@skurfer.com> Message-ID: <8B29A9EB-1C49-4861-918C-37CE94812935@macromates.com> On 9. May 2007, at 22:54, Rob McBroom wrote: > I created this a while back, but I had forgotten about it until a > recent discussion of Drag Commands. > > If you're using the pre-insalled Apache under Mac OS X, the > DocumentRoot is set to `/Library/WebServer/Documents/`. I try to > avoid attachments as much as possible, so I'll usually put a file > in that location and just send people a URL that leads them to it. > To make this easier, I created a Drag Command that applies to any > file in that directory. For example, if I drop /Library/WebServer/ > Documents/some.zip in a document, it inserts http:// > kendra.oit.gatech.edu/some.zip instead. That?s a nice idea. I have something akin to this using Quicksilver, where if I ?? a file while in Finder, Quicksilver will upload it to my server, and put the resulting link on the clipboard (unfortunately ?? fails me quite often as a hotkey). Anyway, for this bundle item I have two comments: 1) it doesn?t find my fully qualified domain name, so we need: a) a note about how the user can set it up!?! b) a fallback variable or so for the domain name 2) would be nice if it allowed to copy files not in ~/Sites or / Library/WebServer/Documents to be copied to some ?temporary? folder of either location. That way, we can drag arbitrary files to the letter, not just those already located in the right location. > It's currently scoped to "text.mail,text.html" and I usually only > use it for e-mail, but perhaps it should be scoped for all "text"? > Anyway, I thought this might be a useful addition to the Mail or > Text bundle. I think currently it should be limited to text.mail. > On a related note, what's the preferred way to say "I thought this > might be a useful addition to the XYZ bundle"? :) Just send it here :) From throw-away-1 at macromates.com Fri May 11 09:11:06 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 11 May 2007 11:11:06 +0200 Subject: [TxMt] Symbol window on 2nd screen In-Reply-To: <03DA1830-9552-4168-ADFE-A37BF149D265@logt.nu> References: <03DA1830-9552-4168-ADFE-A37BF149D265@logt.nu> Message-ID: <7E73A3DB-05CF-47DB-BC2B-1141F26135BC@macromates.com> On 10. May 2007, at 16:06, Jasper van der Meulen wrote: > I'm every so often on another location where i work on two screen's. > The only thing i always need to adjust once is to drag the symbol > window to the screen where the main textmate window is.\ > Is there a config thing i can set, or is it a feature for TM2 ? > > ps: the other windows (goto file, bundle editor, etc) also come in > the wrong screen So all these windows open on the screen which does *not* have the currently active window? They should, by default, open at the screen with the active window. But they will also remember window position. Is your setup that you have a laptop, and often work on just this laptop, then sometimes, you connect a secondary screen, drag the TextMate window to the secondary screen, and now need to do the same for all the other windows? If so, it is likely because they remember their position, and re-use them. Maybe this can be fixed by going to the system preferences and configure the external screen to be the ?main? screen (i.e. have the origin of the coordinate system), when connected. From throw-away-1 at macromates.com Fri May 11 09:20:48 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 11 May 2007 11:20:48 +0200 Subject: [TxMt] Perl indentation question In-Reply-To: <8E7F0FBA-2381-41B0-8543-F2379B1CA34B@segula.pt> References: <8E7F0FBA-2381-41B0-8543-F2379B1CA34B@segula.pt> Message-ID: On 10. May 2007, at 17:31, Andr? Cruz wrote: > I don't know who is responsible for the indentation of Perl buffers > (textmate author or bundle author?) but there is a problem with > structures of the kind: [...] The indentation system is explained here: http://macromates.com/ textmate/manual/appendix#indentation_rules Updating the Perl patterns to those of C would at least fix your reported problem, but might introduce others. I?ll gladly help some Perl programmer adjust the patterns to Perl, but I know too little Perl myself to do proper patterns for Perl indentation. From andre.cruz at segula.pt Fri May 11 09:45:00 2007 From: andre.cruz at segula.pt (=?ISO-8859-1?Q?Andr=E9_Cruz?=) Date: Fri, 11 May 2007 10:45:00 +0100 Subject: [TxMt] Perl indentation question In-Reply-To: References: <8E7F0FBA-2381-41B0-8543-F2379B1CA34B@segula.pt> Message-ID: On 2007/05/11, at 10:20, Allan Odgaard wrote: > The indentation system is explained here: http://macromates.com/ > textmate/manual/appendix#indentation_rules > > Updating the Perl patterns to those of C would at least fix your > reported problem, but might introduce others. > > I?ll gladly help some Perl programmer adjust the patterns to Perl, > but I know too little Perl myself to do proper patterns for Perl > indentation. I can see that the C scope has the Identation Rules preference setting, but Perl does not. Where do the languages that don't have this defined get their indentation rules? Regards, Andr? Cruz From throw-away-1 at macromates.com Fri May 11 09:47:20 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 11 May 2007 11:47:20 +0200 Subject: [TxMt] Perl indentation question In-Reply-To: References: <8E7F0FBA-2381-41B0-8543-F2379B1CA34B@segula.pt> Message-ID: On 11. May 2007, at 11:45, Andr? Cruz wrote: > On 2007/05/11, at 10:20, Allan Odgaard wrote: >> The indentation system is explained here: http://macromates.com/ >> textmate/manual/appendix#indentation_rules >> >> Updating the Perl patterns to those of C would at least fix your >> reported problem, but might introduce others. >> >> I?ll gladly help some Perl programmer adjust the patterns to Perl, >> but I know too little Perl myself to do proper patterns for Perl >> indentation. > I can see that the C scope has the Identation Rules preference > setting, but Perl does not. > Where do the languages that don't have this defined get their > indentation rules? In that case, they would inherit the default patterns likely in the Source bundle, and if there are none, TM has some hardcoded defaults. Basically the defaults just increase/decrease indent when seeing brackets. From throw-away-1 at macromates.com Fri May 11 10:56:06 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 11 May 2007 12:56:06 +0200 Subject: [TxMt] XCode - Clickable error messages In-Reply-To: <535CB77A-7214-4F44-911B-32C01ACEB77D@bitart.com> References: <429C6234-FBFC-4772-8791-7D4B47A75347@incomumdesign.com> <99193443-B5C9-4A73-A3F0-B743EFEEC1AE@bitart.com> <7B89CFDC-4F07-438B-AE49-08F4DC3F4E24@macromates.com> <535CB77A-7214-4F44-911B-32C01ACEB77D@bitart.com> Message-ID: On 6. May 2007, at 18:17, Gerd Knops wrote: > On May 5, 2007, at 4:10 AM, Allan Odgaard wrote: > >> On 3. May 2007, at 16:37, Gerd Knops wrote: >> >>> [...] >>> You know, I still haven't forgiven you for removing that output >>> option where one could enter a pattern. Since then my tools spend >>> a lot more code on formatting output then on getting their job done. >> >> Here?s an idea: write your own tool and use that: >> >> ?my command?|?my tool that catches output? >> >> You could do that tool in a dozen lines of perl and use tm_dialog >> to open the output console. Within a few hours, you should have >> something vastly superior to that crappy window I killed. >> > While true (and I have done that), the key here is "Within a few > hours" * languages/compilers/whatever used... The old method, while > it may have been crappy, allowed me to get something reasonable > within a minute or three. If you did the tool as I outlined, that is just as re-usable as the old system. From throw-away-1 at macromates.com Fri May 11 11:16:04 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 11 May 2007 13:16:04 +0200 Subject: [TxMt] New Home of the GetBundle In-Reply-To: <02577642-69A6-4143-ACAE-C0810A2D241F@gmail.com> References: <02577642-69A6-4143-ACAE-C0810A2D241F@gmail.com> Message-ID: <5B91ADB9-CA00-48F6-B744-A503104EF5B7@macromates.com> On 10. May 2007, at 23:46, Sebastian Gr??l wrote: > I just wanted to tell you that the GetBundle has now it's own page > and will get some improvements like turning it into a Plugin(maybe). > > The new site can be found at http://projects.validcode.net/getbundle Did you see my latest updates to the version at the repository? Basically this bundle should NOT checkout the Support folder, because this is causing heaps of problems when users then have a newer Support folder than their default bundles. Additionally I made it checkout bundles at a revision corresponding to their current Support folder, that might not give them the latest version, but it will give them something which works with their current setup :) I did not get around to fixing the auto-updater script. From tom at tommai.de Fri May 11 11:40:51 2007 From: tom at tommai.de (Thomas Mai) Date: Fri, 11 May 2007 13:40:51 +0200 Subject: [TxMt] Re: Several newbie-questions In-Reply-To: References: Message-ID: <4FBAD9D4-318D-4B78-A113-20D3555A469E@tommai.de> Hi Jacob, thanks for your help! > >> How can I open the file at the cursor directly from inside the >> editor? > > You'll have to explain. Are you talking about a complete file > path? In what language file? I'm coding in PHP, JavaScript, CSS and HTML and, yes, a complete file path can be part of the file name. What I mean is: Let's say there's something like "require 'shared/ session.inc.php';" in my code. Now I'd like to move the cursor above the filename, press any shortcut, and - voil? - TextMate opens the file. > >> Can TM hilight the matching brackets? (I'm using "pastels on dark" >> color scheme; if thats important...) > > When you arrow past the final bracket, the starting bracket is > highlighted. You can also select everything inside a pair of > brackets with Edit ? Select ? Enclosing Brackets. Ah ja, I expected that - but that does not "really" work in my TM copy. Some short, one-time-only flashing can be seen when I move the cursor from left to right over the closing bracket. But... I guess there should be more ;) Bye, Tom From andre.cruz at segula.pt Fri May 11 11:48:25 2007 From: andre.cruz at segula.pt (=?ISO-8859-1?Q?Andr=E9_Cruz?=) Date: Fri, 11 May 2007 12:48:25 +0100 Subject: [TxMt] Re: Several newbie-questions In-Reply-To: <4FBAD9D4-318D-4B78-A113-20D3555A469E@tommai.de> References: <4FBAD9D4-318D-4B78-A113-20D3555A469E@tommai.de> Message-ID: On 2007/05/11, at 12:40, Thomas Mai wrote: >>> Can TM hilight the matching brackets? (I'm using "pastels on >>> dark" color scheme; if thats important...) >> >> When you arrow past the final bracket, the starting bracket is >> highlighted. You can also select everything inside a pair of >> brackets with Edit ? Select ? Enclosing Brackets. > > Ah ja, I expected that - but that does not "really" work in my TM > copy. > Some short, one-time-only flashing can be seen when I move the > cursor from left to right over the closing bracket. > But... I guess there should be more ;) Yes.. I too think it is much too quick.. Very easy to go unnoticed. Is it configurable? Andr? Cruz From ciawal at gmail.com Fri May 11 11:54:50 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Fri, 11 May 2007 12:54:50 +0100 Subject: [TxMt] Re: Several newbie-questions In-Reply-To: <4FBAD9D4-318D-4B78-A113-20D3555A469E@tommai.de> References: <4FBAD9D4-318D-4B78-A113-20D3555A469E@tommai.de> Message-ID: On 11 May 2007, at 12:40, Thomas Mai wrote: > Let's say there's something like "require 'shared/ > session.inc.php';" in my code. Now I'd like to move the cursor > above the filename, press any shortcut, and - voil? - TextMate > opens the file. The PHP bundle includes a ?Jump to Included File? command which can do this, in fact if you configure your PHP include path then it can even search for the file in there. Check out the bundle help ? from Bundles ? PHP ? Help ? for more info. -------------- next part -------------- An HTML attachment was scrubbed... URL: From skiadas at hanover.edu Fri May 11 12:15:44 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Fri, 11 May 2007 08:15:44 -0400 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <2391A6D7-9F79-4C2B-B5CA-A48D9D765400@mac.com> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <9BCB9D35-1D8A-4424-9209-BC5E7D9DF07B@mac.com> <9689A36F-1A80-47A1-AA8C-0CA62795530B@googlemail.com> <2391A6D7-9F79-4C2B-B5CA-A48D9D765400@mac.com> Message-ID: On May 11, 2007, at 12:45 AM, Adam R. Maxwell wrote: >> Will it be enough just to install it? I see that my only pdfsync >> on the system is in TextMate itself (/Applications/TextMate.app/ >> Contents/SharedSupport/Bundles/Latex.tmbundle/Support/tex/latex/ >> pdfsync.sty) and this is Version 0.6 - maybe it's time for >> TextMate to upgrade the version to 1.0 ;) > Hopefully you could install it in ~/Library/texmf and override > TextMate's bundled version. http://www.ctan.org/tex-archive/macros/ > latex/contrib/pdfsync/pdfsync.sty is certainly newer. I think it should be enough to just install a newer version in your local texmf tree, any such version should take precedence over TextMate's built in package. That said, i just updated the LaTeX bundle to include the newest pdfsync.sty. > -- > Adam Haris Skiadas Department of Mathematics and Computer Science Hanover College From tom at tommai.de Fri May 11 13:48:50 2007 From: tom at tommai.de (Thomas Mai) Date: Fri, 11 May 2007 15:48:50 +0200 Subject: [TxMt] Re: Several newbie-questions In-Reply-To: References: <4FBAD9D4-318D-4B78-A113-20D3555A469E@tommai.de> Message-ID: <8B35CE78-D203-4A81-B16B-CB6F177140F2@tommai.de> Hi Ciar?n, > The PHP bundle includes a ?Jump to Included File? command which > can do this, in fact if you configure your PHP include path then it > can even search for the file in there. > Check out the bundle help ? from Bundles ? PHP ? Help ? for > more info. that command is missing in my bundles. Could you post it here? Bye, Tom From throw-away-1 at macromates.com Fri May 11 14:02:04 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 11 May 2007 16:02:04 +0200 Subject: [TxMt] Re: Several newbie-questions In-Reply-To: References: <4FBAD9D4-318D-4B78-A113-20D3555A469E@tommai.de> Message-ID: <011916BB-04D5-4B50-8008-6A0AD685D3BE@macromates.com> On 11. May 2007, at 13:48, Andr? Cruz wrote: >> Some short, one-time-only flashing can be seen when I move the >> cursor from left to right over the closing bracket. >> But... I guess there should be more ;) > Yes.. I too think it is much too quick.. Very easy to go unnoticed. > Is it configurable? Not configurable -- I haven?t looked at it for 2.x yet, but I plan to? From ciawal at gmail.com Fri May 11 14:29:18 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Fri, 11 May 2007 15:29:18 +0100 Subject: [TxMt] Re: Several newbie-questions In-Reply-To: <8B35CE78-D203-4A81-B16B-CB6F177140F2@tommai.de> References: <4FBAD9D4-318D-4B78-A113-20D3555A469E@tommai.de> <8B35CE78-D203-4A81-B16B-CB6F177140F2@tommai.de> Message-ID: <4DEE008B-A024-4B32-BD86-43B3810A5B68@gmail.com> On 11 May 2007, at 14:48, Thomas Mai wrote: > that command is missing in my bundles. Could you post it here? It should be included. Is your version of TextMate up to date? -------------- next part -------------- An HTML attachment was scrubbed... URL: From andre.cruz at segula.pt Fri May 11 14:43:37 2007 From: andre.cruz at segula.pt (=?ISO-8859-1?Q?Andr=E9_Cruz?=) Date: Fri, 11 May 2007 15:43:37 +0100 Subject: [TxMt] Perl indentation question In-Reply-To: References: <8E7F0FBA-2381-41B0-8543-F2379B1CA34B@segula.pt> Message-ID: <48FCE858-01A8-4B37-9E96-8182BC8EF91D@segula.pt> On 2007/05/11, at 10:47, Allan Odgaard wrote: >> I can see that the C scope has the Identation Rules preference >> setting, but Perl does not. >> Where do the languages that don't have this defined get their >> indentation rules? > > In that case, they would inherit the default patterns likely in the > Source bundle, and if there are none, TM has some hardcoded defaults. > > Basically the defaults just increase/decrease indent when seeing > brackets. > Since Perl has no specific config, can't you just copy C's for now? It's better than the current config... Also, regarding the Tidy command on the Perl bundle, it works on the file rather than the buffer and does not mandate that the file be saved. Also it doesn't deal well with UTF8 chars on the output of perltidy. I altered the command to: perltidy -q 2> /dev/null Input-> Entire document Output -> Replace document I would send the plist but what was stored on my homedir was just a delta... As long as I have your attention, is there a workaround for people like me that edit projects remotely via sshfs and every-time the textmate window gains focus it freezes for up to 5s? sshfs is the perfect companion to textmate, even version control works remotely but the delay makes it unusable. Thanks, Andr? Cruz From jacobolus at gmail.com Fri May 11 15:13:01 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Fri, 11 May 2007 11:13:01 -0400 Subject: [TxMt] Re: Perl indentation question In-Reply-To: <48FCE858-01A8-4B37-9E96-8182BC8EF91D@segula.pt> References: <8E7F0FBA-2381-41B0-8543-F2379B1CA34B@segula.pt> <48FCE858-01A8-4B37-9E96-8182BC8EF91D@segula.pt> Message-ID: Andr? Cruz wrote: > I would send the plist but what was stored on my homedir was just a > delta... If you drag from the bundle editor to the desktop, you'll get the full bundle item (i.e. not the delta) From grant at antiflux.org Fri May 11 15:18:58 2007 From: grant at antiflux.org (Grant Hollingworth) Date: Fri, 11 May 2007 09:18:58 -0600 Subject: [TxMt] subversion menu Message-ID: <20070511151858.GA19216@antiflux.org> This is a repeat of a comment I made on the latest TextMate blog post[1]. I remember some discussion on the list about the Subversion menu, but I can't find it. The command that I always want for Subversion is Diff with Newest. Why is that the second option? The CVS bundle has it as the first option. Do people really use Diff Revisions that often? The diff commands start at the eleventh position in the menu and so don't have number shortcuts. They also all start with 'Diff', so pressing 'd' only jumps to the first command. [1] http://macromates.com/blog/archives/2007/05/06/textmates-many-key-shortcuts/ From textmate at skurfer.com Fri May 11 15:26:25 2007 From: textmate at skurfer.com (Rob McBroom) Date: Fri, 11 May 2007 11:26:25 -0400 Subject: [TxMt] Several newbie-questions In-Reply-To: References: Message-ID: <2B87C9A7-1D19-48AE-B301-D6767721FF80@skurfer.com> On May 10, 2007, at 6:37 PM, Thomas Mai wrote: > How can I open the file at the cursor directly from inside the editor? Not sure what you mean. A file selected in the Finder? In TextMate's project drawer? > Can TM hilight the matching brackets? (I'm using "pastels on dark" > color scheme; if thats important...) When you type a closing bracket, the opening bracket will flash, but it happens quick and in many cases, the match is off-screen, which doesn't help you much. An alternative that a lot of us use is to place the cursor inside the brackets somewhere (but not inside any sub-brackets) and hit ??B (Edit ? Select ? Enclosing Brackets). If you want to jump to the beginning or end of the resulting selection, just hit ? or ?. > How do I make the cursor follow when I've scrolled some pages with > Ctrl-CursorUp/Down? "Standard-behaviour" is that the cursor stays > where I've started. This has been answered in the past, but I don't remember because it never bothered me. If you search the list archives, you should find it. > How do I find the next match (for the same criteria) when searching > incrementally with Ctrl+S? Hit ?S again (and again and again if needed). > Is there a simple calculator in TM? Check out the Math bundle. Most operations can be called with ??C. > I prefer bookmarks that I can access directly, e.g. something like > ^1 for line 40, ^2 for line 88 etc - instead of F2. Can I have that > with TM? Not that I know of, but someone else can chime in if they have any ideas. --- Rob McBroom I didn't "switch" to Apple... my OS did. From skiadas at hanover.edu Fri May 11 15:34:45 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Fri, 11 May 2007 11:34:45 -0400 Subject: [TxMt] subversion menu In-Reply-To: <20070511151858.GA19216@antiflux.org> References: <20070511151858.GA19216@antiflux.org> Message-ID: <2A8F067F-BB7B-4C7A-BB8B-375475E19469@hanover.edu> I second that, it would be nice to have Diff with Newest more easily accessible. I use it far more often than most of the first 10 options, and certainly more often than the Diff Revisions option. On May 11, 2007, at 11:18 AM, Grant Hollingworth wrote: > This is a repeat of a comment I made on the latest TextMate blog > post[1]. > > I remember some discussion on the list about the Subversion menu, > but I can't find it. > > The command that I always want for Subversion is Diff with Newest. > Why is that the second option? The CVS bundle has it as the first > option. Do people really use Diff Revisions that often? > > The diff commands start at the eleventh position in the menu and so > don't have number shortcuts. They also all start with 'Diff', so > pressing 'd' only jumps to the first command. > > [1] http://macromates.com/blog/archives/2007/05/06/textmates-many- > key-shortcuts/ Haris Skiadas Department of Mathematics and Computer Science Hanover College From throw-away-1 at macromates.com Fri May 11 15:41:33 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 11 May 2007 17:41:33 +0200 Subject: [TxMt] Perl indentation question In-Reply-To: <48FCE858-01A8-4B37-9E96-8182BC8EF91D@segula.pt> References: <8E7F0FBA-2381-41B0-8543-F2379B1CA34B@segula.pt> <48FCE858-01A8-4B37-9E96-8182BC8EF91D@segula.pt> Message-ID: On 11. May 2007, at 16:43, Andr? Cruz wrote: >> Basically the defaults just increase/decrease indent when seeing >> brackets. > Since Perl has no specific config, can't you just copy C's for now? > It's better than the current config... I can copy the one from C, but do you think that is better? For example C will indent after for, while, etc. w/o braces, but I don?t think that should be the case in Perl. You can always duplicate the Indentation preferences (from the C bundle), change the scope selector to source.perl, and let me know if it works out well, then I?ll make the change to the default bundle. > Also, regarding the Tidy command on the Perl bundle, it works on > the file rather than the buffer and does not mandate that the file > be saved. Also it doesn't deal well with UTF8 chars on the output > of perltidy. I altered the command to: > [...] I think Ciaren will update this command with one that works on the buffer (rather than the file). > As long as I have your attention, is there a workaround for people > like me that edit projects remotely via sshfs and every-time the > textmate window gains focus it freezes for up to 5s? sshfs is the > perfect companion to textmate, even version control works remotely > but the delay makes it unusable. http://macromates.com/wiki/Main/FAQ#drawerupdate From throw-away-1 at macromates.com Fri May 11 15:50:04 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 11 May 2007 17:50:04 +0200 Subject: [TxMt] subversion menu In-Reply-To: <20070511151858.GA19216@antiflux.org> References: <20070511151858.GA19216@antiflux.org> Message-ID: On 11. May 2007, at 17:18, Grant Hollingworth wrote: > This is a repeat of a comment I made on the latest TextMate blog > post[1]. > [...] It is a system menu, and thus we are victims of system rules. The system will, when you type a sequence of letters, sort all the items in the menu (alphabetically), then it will find (in this sorted list) the first item which is not (lexicographically) lower than what you typed. It will select that item in the original menu. This means that even if we did place ?Diff With Newest (HEAD)? as the first item starting with ?D?, the system would still pick ?Diff With Revision??. (I posted this on the blog as well) From throw-away-1 at macromates.com Fri May 11 15:53:23 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 11 May 2007 17:53:23 +0200 Subject: [TxMt] subversion menu In-Reply-To: References: <20070511151858.GA19216@antiflux.org> Message-ID: <1B96B357-2284-49BD-80D8-2DF197F9969B@macromates.com> On 11. May 2007, at 17:50, Allan Odgaard wrote: > [...] > This means that even if we did place ?Diff With Newest (HEAD)? as > the first item starting with ?D?, the system would still pick ?Diff > With Revision??. That should of course be ?Diff Revision?? ? if it was actually renamed to ?Diff With Revision??, it would be selected after ?Diff With Newest (HEAD)?. Several bundle items have actually been renamed to give better key accelerators when showing the disambiguation menu. From jnutting at gmail.com Fri May 11 16:09:40 2007 From: jnutting at gmail.com (Jack Nutting) Date: Fri, 11 May 2007 18:09:40 +0200 Subject: [TxMt] subversion menu In-Reply-To: <1B96B357-2284-49BD-80D8-2DF197F9969B@macromates.com> References: <20070511151858.GA19216@antiflux.org> <1B96B357-2284-49BD-80D8-2DF197F9969B@macromates.com> Message-ID: On 5/11/07, Allan Odgaard wrote: > That should of course be 'Diff Revision?' ? if it was actually > renamed to 'Diff With Revision?', it would be selected after 'Diff > With Newest (HEAD)'. > > Several bundle items have actually been renamed to give better key > accelerators when showing the disambiguation menu. > How about naming them "HEAD Diff", "PREV Diff", etc? -- // jack // http://www.nuthole.com From throw-away-1 at macromates.com Fri May 11 16:25:02 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 11 May 2007 18:25:02 +0200 Subject: [TxMt] subversion menu In-Reply-To: References: <20070511151858.GA19216@antiflux.org> <1B96B357-2284-49BD-80D8-2DF197F9969B@macromates.com> Message-ID: On 11. May 2007, at 18:09, Jack Nutting wrote: > On 5/11/07, Allan Odgaard wrote: >> That should of course be 'Diff Revision?' ? if it was actually >> renamed to 'Diff With Revision?', it would be selected after 'Diff >> With Newest (HEAD)'. >> >> Several bundle items have actually been renamed to give better key >> accelerators when showing the disambiguation menu. > How about naming them "HEAD Diff", "PREV Diff", etc? Other than looking awful and Blame losing it?s key (?B?) to ?BASE Diff? (but I use the latter more often than the former) then this might be a acceptable solution. From isd at strangetower.com Fri May 11 16:51:35 2007 From: isd at strangetower.com (Ian Smith-Dahl) Date: Fri, 11 May 2007 12:51:35 -0400 Subject: [TxMt] Print from F/R dialogue box? In-Reply-To: Message-ID: I'm working with a huge stack of obnoxiously-coded HTML pages, and I'm currently using reg exp to pull out outdated links. After some work, I've got the reg exp I want, and it's pulled up 100s of bad links. Is there any way to *print* the output for a Find in Project dialogue box? Or better, can I copy it to my clipboard? From tom at tommai.de Fri May 11 17:17:25 2007 From: tom at tommai.de (Thomas Mai) Date: Fri, 11 May 2007 19:17:25 +0200 Subject: [TxMt] Re: Several newbie-questions In-Reply-To: <4DEE008B-A024-4B32-BD86-43B3810A5B68@gmail.com> References: <4FBAD9D4-318D-4B78-A113-20D3555A469E@tommai.de> <8B35CE78-D203-4A81-B16B-CB6F177140F2@tommai.de> <4DEE008B-A024-4B32-BD86-43B3810A5B68@gmail.com> Message-ID: <7F116EDA-3EB0-4E90-9EF0-66BED1026927@tommai.de> > >> that command is missing in my bundles. Could you post it here? > It should be included. Is your version of TextMate up to date? Yes, I think so. It's 1.5.5 (1368) I've searched all bundles manually and via Ctrl+Apple+T - but no "Jump to..." existing. Then I've download a Trial version, extracted the commands and used them to update my bundles - no success. Hm... -------------- next part -------------- An HTML attachment was scrubbed... URL: From textmate at skurfer.com Fri May 11 17:22:24 2007 From: textmate at skurfer.com (Rob McBroom) Date: Fri, 11 May 2007 13:22:24 -0400 Subject: [TxMt] Re: Move blocks of text using "Go To Symbol"? In-Reply-To: References: <982A546C-9555-488E-A7F3-3819BA30F177@math.berkeley.edu> Message-ID: <6187B698-D62E-4D62-BAA2-D5C29F2430C2@skurfer.com> On May 10, 2007, at 11:45 PM, Jacob Rus wrote: > It would be nice to solve more generally than just for LaTeX, if > possible. I also like the idea, but how would it work for something like Markdown where only the H1, H2, etc. headers show up in the Symbols list, while in the user's mind, there are probably a lot of other things (paragraphs, lists) that should move along with that "Symbol"? --- Rob McBroom I didn't "switch" to Apple... my OS did. From throw-away-1 at macromates.com Fri May 11 17:27:47 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 11 May 2007 19:27:47 +0200 Subject: [TxMt] Re: Several newbie-questions In-Reply-To: <7F116EDA-3EB0-4E90-9EF0-66BED1026927@tommai.de> References: <4FBAD9D4-318D-4B78-A113-20D3555A469E@tommai.de> <8B35CE78-D203-4A81-B16B-CB6F177140F2@tommai.de> <4DEE008B-A024-4B32-BD86-43B3810A5B68@gmail.com> <7F116EDA-3EB0-4E90-9EF0-66BED1026927@tommai.de> Message-ID: On 11. May 2007, at 19:17, Thomas Mai wrote: >>> that command is missing in my bundles. Could you post it here? >> It should be included. Is your version of TextMate up to date? > Yes, I think so. It's 1.5.5 (1368) Use Preferences ? Software Update and switch to Cutting-Edge. Then you?ll get r1383. The command Ciaren speaks about is from 2007-03-08 -- r1368 is from 2007-03-04, so missed it by four days. From joachimvdh+TxMt at gmail.com Fri May 11 18:02:46 2007 From: joachimvdh+TxMt at gmail.com (Joachim) Date: Fri, 11 May 2007 20:02:46 +0200 Subject: [TxMt] as3 - svn -> Can't convert string from 'UTF-8' to native encoding - scope selector Message-ID: <947323060705111102w5c38e2dhcf2ba72faafe2fd1@mail.gmail.com> first of all, you're doing a great job on the as3 bundle !! *) why is the scope selector of the build and other commands source.actionscript.3 , while in the language file the scope is source.actionscript3. When trying to build, the shortcut won't work. With scope selector source.actionscript3 it does. herewith a delta file . *) that when you checkout the actionscript 3 bundle you get the following error svn co http://macromates.com/svn/Bundles/trunk/Review/Bundles/ActionScript\ 3.tmbundle svn: Can't convert string from 'UTF-8' to native encoding: svn: ActionScript 3.tmbundle/Commands/Insert Color?\226?\128?\166.tmCommand greetz Joachim --------------------------------------- http://4d.ratubagus.net -------------- next part -------------- A non-text attachment was scrubbed... Name: ActionScript 3.zip Type: application/zip Size: 14461 bytes Desc: not available URL: From textmate at skurfer.com Fri May 11 19:15:11 2007 From: textmate at skurfer.com (Rob McBroom) Date: Fri, 11 May 2007 15:15:11 -0400 Subject: [TxMt] drag command for inserting links to local files In-Reply-To: <8B29A9EB-1C49-4861-918C-37CE94812935@macromates.com> References: <0931BE40-5BA9-4B76-BC11-3C219BB13743@skurfer.com> <8B29A9EB-1C49-4861-918C-37CE94812935@macromates.com> Message-ID: <530553B2-59FA-4B5E-B847-A6D3B77F5263@skurfer.com> On May 11, 2007, at 5:06 AM, Allan Odgaard wrote: > Anyway, for this bundle item I have two comments: > > 1) it doesn?t find my fully qualified domain name, so we need: > a) a note about how the user can set it up!?! > b) a fallback variable or so for the domain name Ah, I suppose that on most systems, the FQDN won't be stored *anywhere* - not even in the wrong place. Instead, you'll see something like "Allan's-PowerBook-G4". Dammit, I thought TextMate users were nerds. ;) If we can't count on the local system, perhaps the command could look for a user defined variable and if it's not set, go to an external service to get a name (similar to the "Get Remote IP" script in Quicksilver's Extra Scripts plug-in). I don't see how we could have a hard-coded fallback that would be appropriate for everyone (unless we made it something awful like `set.TM_WEBSERVER.to.your.systems.fully.qaulified.domain.name.com`), which is a combination of both a and b. > 2) would be nice if it allowed to copy files not in ~/Sites or / > Library/WebServer/Documents to be copied to some ?temporary? folder > of either location. That way, we can drag arbitrary files to the > letter, not just those already located in the right location. So you're saying any file dropped into a text.mail scope would be copied to the temporary location (and a link inserted)? I might like that better. I'll have to think about it. Some questions: * If the temporary location doesn't exist, should the command create it or is that inappropriate? * How would it decide whether to use ~/Sites or /Library/WebServer/ Documents? Perhaps we could check for TM_DOCUMENTROOT and fall back to /Library/WebServer/Documents if it's not set. This would also be nice for people like Allan who use another system as the web server because the path could be anywhere (as long as it's always mounted, which it sounds like it is in Allan's case). * Should we use `ln` instead of copying (mostly to prevent the command from waiting on the copy operation, but also for disk space)? Ideally, this is how it should work in my mind: * If the file is on the same filesystem as the DocumentRoot, create a hard link * If the file is on a remote system and the DocumentRoot is on the local disk, create a symbolic link * If the DocumentRoot is on a remote system, copy the file regardless of where it comes from (this could make the command very slow) Sound about right? --- Rob McBroom I didn't "switch" to Apple... my OS did. From tom at tommai.de Fri May 11 20:17:04 2007 From: tom at tommai.de (Thomas Mai) Date: Fri, 11 May 2007 22:17:04 +0200 Subject: [TxMt] Re: Several newbie-questions In-Reply-To: References: <4FBAD9D4-318D-4B78-A113-20D3555A469E@tommai.de> <8B35CE78-D203-4A81-B16B-CB6F177140F2@tommai.de> <4DEE008B-A024-4B32-BD86-43B3810A5B68@gmail.com> <7F116EDA-3EB0-4E90-9EF0-66BED1026927@tommai.de> Message-ID: <3DA13221-ACE6-4499-B567-D54614DFBE7A@tommai.de> >>>> that command is missing in my bundles. Could you post it here? >>> It should be included. Is your version of TextMate up to date? >> Yes, I think so. It's 1.5.5 (1368) > > Use Preferences ? Software Update and switch to Cutting-Edge. Then > you?ll get r1383. > > The command Ciaren speaks about is from 2007-03-08 -- r1368 is from > 2007-03-04, so missed it by four days. That's it - now my copy can jump too :) Thanks a lot, Tom From harrison at Math.Berkeley.EDU Fri May 11 20:22:30 2007 From: harrison at Math.Berkeley.EDU (Jenny Harrison) Date: Fri, 11 May 2007 13:22:30 -0700 Subject: [TxMt] Several newbie-questions In-Reply-To: <2B87C9A7-1D19-48AE-B301-D6767721FF80@skurfer.com> References: <2B87C9A7-1D19-48AE-B301-D6767721FF80@skurfer.com> Message-ID: <42D2F3DA-ACEB-4B7F-9887-D836C707F338@math.berkeley.edu> On May 11, 2007, at 8:26 AM, Rob McBroom wrote: > > When you type a closing bracket, the opening bracket will flash, > but it happens quick and in many cases, the match is off-screen, > which doesn't help you much. An alternative that a lot of us use is > to place the cursor inside the brackets somewhere (but not inside > any sub-brackets) and hit ??B (Edit ? Select ? Enclosing > Brackets). If you want to jump to the beginning or end of the > resulting selection, just hit ? or ?. opt-ctr B is even better, as you can grab larger and larger sub- brackets by repeating. Jenny From mummer at whitefalls.org Fri May 11 20:52:09 2007 From: mummer at whitefalls.org (Michael Sheets) Date: Fri, 11 May 2007 15:52:09 -0500 Subject: [TxMt] as3 - svn -> Can't convert string from 'UTF-8' to native encoding - scope selector In-Reply-To: <947323060705111102w5c38e2dhcf2ba72faafe2fd1@mail.gmail.com> References: <947323060705111102w5c38e2dhcf2ba72faafe2fd1@mail.gmail.com> Message-ID: <05970A1B-35EC-45F1-8774-68A9823D9B0C@whitefalls.org> > *) why is the scope selector of the build and other commands > source.actionscript.3 , while in the language file the scope is > source.actionscript3. > When trying to build, the shortcut won't work. With scope selector > source.actionscript3 it does. > herewith a delta file . Everything in the bundle was changed to "source.actionscript.3" this allows commands to work with both versions of AS by just targeting source.actionscript The delta files you have there use source.actionscript3 so you'll need to add the . between there once you have updated your AS3 bundle to the one with the new "source.actionscript.3" scopes. > *) that when you checkout the actionscript 3 bundle you get the > following error http://macromates.com/textmate/manual/bundles#setting_lc_ctype From joachimvdh+TxMt at gmail.com Fri May 11 22:42:09 2007 From: joachimvdh+TxMt at gmail.com (Joachim) Date: Sat, 12 May 2007 00:42:09 +0200 Subject: [TxMt] as3 - svn -> Can't convert string from 'UTF-8' to native encoding - scope selector In-Reply-To: <05970A1B-35EC-45F1-8774-68A9823D9B0C@whitefalls.org> References: <947323060705111102w5c38e2dhcf2ba72faafe2fd1@mail.gmail.com> <05970A1B-35EC-45F1-8774-68A9823D9B0C@whitefalls.org> Message-ID: <947323060705111542y2e1e64b7r466423041e048b74@mail.gmail.com> tnx ! svn works now since the update (dot appeared in scopeName = 'source.actionscript.3') the ?B gives a menu, but not the ?B from the menu from actionscript 3, while i'm in that language selection ( it gives the ?B from actionscript) Joachim 2007/5/11, Michael Sheets : > > *) why is the scope selector of the build and other commands > > source.actionscript.3 , while in the language file the scope is > > source.actionscript3. > > When trying to build, the shortcut won't work. With scope selector > > source.actionscript3 it does. > > herewith a delta file . > > Everything in the bundle was changed to "source.actionscript.3" this > allows commands to work with both versions of AS by just targeting > source.actionscript > > The delta files you have there use source.actionscript3 so you'll > need to add the . between there once you have updated your AS3 bundle > to the one with the new "source.actionscript.3" scopes. > > > *) that when you checkout the actionscript 3 bundle you get the > > following error > > http://macromates.com/textmate/manual/bundles#setting_lc_ctype > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From skiadas at hanover.edu Fri May 11 23:49:05 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Fri, 11 May 2007 19:49:05 -0400 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <05FE2668-5743-42A5-A9E6-E5CFA0814426@hanover.edu> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <0A523320-5CD3-41EA-8FAB-0249C6CF7EA2@eleves.bretagne.ens-cachan.fr> <05FE2668-5743-42A5-A9E6-E5CFA0814426@hanover.edu> Message-ID: On May 10, 2007, at 7:20 PM, Charilaos Skiadas wrote: > On May 10, 2007, at 7:08 PM, ?douard Gilbert wrote: > >>>> It jumps to the right place for me in both directions. >>> >>> It appears its a problem with my source. It indeed works with >>> another (simpler) file. I'll check out. >> >> Using PDFView, syncing works with that other file. Any idea where >> the problem might come from? > > Send me your file when you get the chance, if possible, and when in > the weekend I set things up with Skim I'll see if I can figure out > what's wrong. I have now updated both the LaTeX and View command and the Show in PDF Viewer command to deal with Skim. Let me know if they don't work for you. (You'll of course need to set TM_LATEX_VIEWER to Skim). Edouard, I had no problems syncing with the files you sent me. So please update the LaTeX bundle and try again, and let me know if it still doesn't work. > >> ?douard Haris Skiadas Department of Mathematics and Computer Science Hanover College From skiadas at hanover.edu Fri May 11 23:51:31 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Fri, 11 May 2007 19:51:31 -0400 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <12B58EF0-DFE4-4242-AE02-6881747E47E2@gmx.de> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <12B58EF0-DFE4-4242-AE02-6881747E47E2@gmx.de> Message-ID: <670D3E1C-8567-42E8-9122-D22EAD45D58F@hanover.edu> On May 10, 2007, at 8:21 AM, Christian Burk wrote: > Am 10.05.2007 um 14:12 schrieb Charilaos Skiadas: > > Would it also be possible to use TeXShop with pdfsync? I write all > my stuff with TextMate and it's amazing. Afterwards I typeset it > with TeXShop. Now it would be great if I could jump easily between > the pdf and the source. To the best of my knowledge, TeXShop does not deal with syncing properly when it is set to use an external editor. But we can probably help you move your engines to TextMate. That should be relatively easy to do I think. Btw, are you aware of latexmk.pl, and that you can set it as the compiler in TextMate? > Thanks > Christian Haris Skiadas Department of Mathematics and Computer Science Hanover College From harrison at Math.Berkeley.EDU Fri May 11 23:56:56 2007 From: harrison at Math.Berkeley.EDU (Jenny Harrison) Date: Fri, 11 May 2007 16:56:56 -0700 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <0A523320-5CD3-41EA-8FAB-0249C6CF7EA2@eleves.bretagne.ens-cachan.fr> <05FE2668-5743-42A5-A9E6-E5CFA0814426@hanover.edu> Message-ID: <409EDACB-53EF-453F-BBA0-92EE622CF5EF@math.berkeley.edu> On May 11, 2007, at 4:49 PM, Charilaos Skiadas wrote: > I have now updated both the LaTeX and View command and the Show in > PDF Viewer command to deal with Skim. Let me know if they don't > work for you. (You'll of course need to set TM_LATEX_VIEWER to Skim). > Haris, Thanks for making it easy for us all. Everything is working well for me, except that Skim does not update the pdf file after I make a change in the Latex file. If I first close the pdf window in Skim, a new updated pdf window will appear after I run the Latex file. Jenny From tylerhall at gmail.com Sat May 12 00:00:49 2007 From: tylerhall at gmail.com (Tyler Hall) Date: Fri, 11 May 2007 19:00:49 -0500 Subject: [TxMt] Dynamic Snipplr Bundle Message-ID: Hi. My name is Tyler - I run Snipplr.com. (Allan blogged about us last summer.) I'm working on an updated bundle for Snipplr, and was wondering if anyone would be interested in helping me test it? (BTW: For the rest of this message when I say "snippet", I'm referring to a snippet stored on Snipplr, not a TextMate snippet.) I ask because I'm doing some strange stuff with it. Previously, I was sending a request to the server each time the user requested a snippet. This new version syncs your snippets and favorites directly into TextMate's bundle menu - giving you offline access to all your code stored in Snipplr. To do this, I'm generating the TextMate bundle on-the-fly using PHP on the server - so each user's bundle is customized for their account. I'm creating the tmSnippet's, tmBundle's, plists, etc.. It's also got an auto-update feature to keep the bundle's snippets in sync. So far everything is working. I need to add code to make it handle errors gracefully and also to check the integrity of the bundle before it installs an update of itself. Any feedback on how I can improve the way I'm doing this would be greatly appreciated. More info about the new bundle (and how to get it!) is available here: http://blog.snipplr.com/2007/05/09/new-snipplr-textmate-bundle-beta/ Thanks :) From skiadas at hanover.edu Sat May 12 00:10:09 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Fri, 11 May 2007 20:10:09 -0400 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <409EDACB-53EF-453F-BBA0-92EE622CF5EF@math.berkeley.edu> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <0A523320-5CD3-41EA-8FAB-0249C6CF7EA2@eleves.bretagne.ens-cachan.fr> <05FE2668-5743-42A5-A9E6-E5CFA0814426@hanover.edu> <409EDACB-53EF-453F-BBA0-92EE622CF5EF@math.berkeley.edu> Message-ID: <4256C9F2-E5C1-40F7-98CA-B74989F1F155@hanover.edu> Hi Jenny, On May 11, 2007, at 7:56 PM, Jenny Harrison wrote: > Haris, > > Thanks for making it easy for us all. Everything is working well > for me, except that Skim does not update the pdf file after I make > a change in the Latex file. If I first close the pdf window in > Skim, a new updated pdf window will appear after I run the Latex file. Have you checked the "Check for file updates" box in the Skim Preferences, under LaTeX? > Jenny Haris Skiadas Department of Mathematics and Computer Science Hanover College From andy at hexten.net Sat May 12 00:19:16 2007 From: andy at hexten.net (Andy Armstrong) Date: Sat, 12 May 2007 01:19:16 +0100 Subject: [TxMt] Feature request: shortcut to re-order tabs Message-ID: <42320C9C-3724-4C55-A155-E28519E90110@hexten.net> I fully expect someone to point out that this already exists :) I typically move between tabs using Cmd-Opt-Left and Cmd-Opt-Right. Typically I try to arrange the tabs so that the set of files I'm actively switching between are adjacent. If Cmd-Opt-Ctrl-Left and Cmd- Opt-Ctrl-Right moved the current tab to the left or right I could re- order the tabs as part of navigating to a different tab just by holding Ctrl down. Say I have four tabs: [*F1*] [ F2 ] [ F3 ] [ F4 ] I'm on F1 and I want to go to F3. I'd also like F1 and F3 to be adjacent to each other because I'm going to be switching between them. So Cmd-Opt-Ctrl-Right does [ F2 ] [*F1*] [ F3 ] [ F4 ] and then Cmd-Opt-Right does [ F2 ] [ F1 ] [*F3*] [ F4 ] -- Andy Armstrong, hexten.net From harrison at Math.Berkeley.EDU Sat May 12 00:22:25 2007 From: harrison at Math.Berkeley.EDU (Jenny Harrison) Date: Fri, 11 May 2007 17:22:25 -0700 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <4256C9F2-E5C1-40F7-98CA-B74989F1F155@hanover.edu> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <0A523320-5CD3-41EA-8FAB-0249C6CF7EA2@eleves.bretagne.ens-cachan.fr> <05FE2668-5743-42A5-A9E6-E5CFA0814426@hanover.edu> <409EDACB-53EF-453F-BBA0-92EE622CF5EF@math.berkeley.edu> <4256C9F2-E5C1-40F7-98CA-B74989F1F155@hanover.edu> Message-ID: <48487E85-12EA-4CF8-BBCD-328EFE1560BB@math.berkeley.edu> On May 11, 2007, at 5:10 PM, Charilaos Skiadas wrote: > Hi Jenny, > > On May 11, 2007, at 7:56 PM, Jenny Harrison wrote: >> Haris, >> >> Thanks for making it easy for us all. Everything is working well >> for me, except that Skim does not update the pdf file after I make >> a change in the Latex file. If I first close the pdf window in >> Skim, a new updated pdf window will appear after I run the Latex >> file. > > Have you checked the "Check for file updates" box in the Skim > Preferences, under LaTeX? > >> Jenny Thanks, it works perfectly now! From edouard.gilbert at eleves.bretagne.ens-cachan.fr Sat May 12 00:35:25 2007 From: edouard.gilbert at eleves.bretagne.ens-cachan.fr (=?ISO-8859-1?Q?=C9douard_Gilbert?=) Date: Sat, 12 May 2007 02:35:25 +0200 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <0A523320-5CD3-41EA-8FAB-0249C6CF7EA2@eleves.bretagne.ens-cachan.fr> <05FE2668-5743-42A5-A9E6-E5CFA0814426@hanover.edu> Message-ID: <546AEF03-51F3-479A-ADDA-6B68BFA3A438@eleves.bretagne.ens-cachan.fr> > I have now updated both the LaTeX and View command and the Show in > PDF Viewer command to deal with Skim. Let me know if they don't > work for you. (You'll of course need to set TM_LATEX_VIEWER to Skim). > > Edouard, I had no problems syncing with the files you sent me. So > please update the LaTeX bundle and try again, and let me know if it > still doesn't work. It appears that it's a path problem. When the path to my TeX file doesn't contain any space (I haven't tested it for other characters), it works as expected, but when it does, Skim just stays in the same place. The last line in the console reports: 79:79: syntax error: Expected string but found end of script. (-2741) The error remains the same when I try the same command, but used to be different when tried from other places. About your sript modification, wouldn't be if [[ "$V" == TeXniscope ]]; (...) elif [[ "$V" == PDFView ]]; (...) elif [[ "$V" == Skim ]]; (...) fi more logical than the current if [[ "$V" == TeXniscope ]]; (...) else if [[ "$V" == PDFView ]]; (...) if [[ "$V" == Skim ]]; (...) fi ? From skiadas at hanover.edu Sat May 12 00:56:18 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Fri, 11 May 2007 20:56:18 -0400 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <546AEF03-51F3-479A-ADDA-6B68BFA3A438@eleves.bretagne.ens-cachan.fr> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <0A523320-5CD3-41EA-8FAB-0249C6CF7EA2@eleves.bretagne.ens-cachan.fr> <05FE2668-5743-42A5-A9E6-E5CFA0814426@hanover.edu> <546AEF03-51F3-479A-ADDA-6B68BFA3A438@eleves.bretagne.ens-cachan.fr> Message-ID: On May 11, 2007, at 8:35 PM, ?douard Gilbert wrote: >> I have now updated both the LaTeX and View command and the Show in >> PDF Viewer command to deal with Skim. Let me know if they don't >> work for you. (You'll of course need to set TM_LATEX_VIEWER to Skim). >> >> Edouard, I had no problems syncing with the files you sent me. So >> please update the LaTeX bundle and try again, and let me know if >> it still doesn't work. > > It appears that it's a path problem. When the path to my TeX file > doesn't contain any space (I haven't tested it for other > characters), it works as expected, but when it does, Skim just > stays in the same place. > > The last line in the console reports: > > 79:79: syntax error: Expected string but found end of script. (-2741) > > The error remains the same when I try the same command, but used to > be different when tried from other places. I found the problem. It has to do with the code in the displayline script that Skim uses. The last line in that script should have been: /usr/bin/osascript -e "tell application \"Skim\"" -e "activate" -e "open POSIX file \"${file}\" at TeX line ${line} from source POSIX file \"${source}\"" -e "end tell" Note that the ${file}, ${source} etc are not surrounded by quotes any more. > About your sript modification, wouldn't be > > if [[ "$V" == TeXniscope ]]; (...) > elif [[ "$V" == PDFView ]]; (...) > elif [[ "$V" == Skim ]]; (...) > fi > > more logical than the current > > if [[ "$V" == TeXniscope ]]; (...) > else > if [[ "$V" == PDFView ]]; (...) > if [[ "$V" == Skim ]]; (...) > fi > > ? Yes, probably ;) Haris Skiadas Department of Mathematics and Computer Science Hanover College From edouard.gilbert at eleves.bretagne.ens-cachan.fr Sat May 12 01:08:08 2007 From: edouard.gilbert at eleves.bretagne.ens-cachan.fr (=?ISO-8859-1?Q?=C9douard_Gilbert?=) Date: Sat, 12 May 2007 03:08:08 +0200 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <0A523320-5CD3-41EA-8FAB-0249C6CF7EA2@eleves.bretagne.ens-cachan.fr> <05FE2668-5743-42A5-A9E6-E5CFA0814426@hanover.edu> <546AEF03-51F3-479A-ADDA-6B68BFA3A438@eleves.bretagne.ens-cachan.fr> Message-ID: <8D7CD79A-A05C-4D44-82F7-F2968A19CBD5@eleves.bretagne.ens-cachan.fr> Works perfectly, thank you very much. ?douard > I found the problem. It has to do with the code in the displayline > script that Skim uses. The last line in that script should have been: > > /usr/bin/osascript -e "tell application \"Skim\"" -e "activate" -e > "open POSIX file \"${file}\" at TeX line ${line} from source POSIX > file \"${source}\"" -e "end tell" > > Note that the ${file}, ${source} etc are not surrounded by quotes > any more. From amaxwell at mac.com Sat May 12 01:23:40 2007 From: amaxwell at mac.com (Adam R. Maxwell) Date: Fri, 11 May 2007 18:23:40 -0700 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <0A523320-5CD3-41EA-8FAB-0249C6CF7EA2@eleves.bretagne.ens-cachan.fr> <05FE2668-5743-42A5-A9E6-E5CFA0814426@hanover.edu> <546AEF03-51F3-479A-ADDA-6B68BFA3A438@eleves.bretagne.ens-cachan.fr> Message-ID: <22F3335F-2D6D-41E2-8731-E4BA615BC201@mac.com> On May 11, 2007, at 17:56, Charilaos Skiadas wrote: > I found the problem. It has to do with the code in the displayline > script that Skim uses. The last line in that script should have been: > > /usr/bin/osascript -e "tell application \"Skim\"" -e "activate" -e > "open POSIX file \"${file}\" at TeX line ${line} from source POSIX > file \"${source}\"" -e "end tell" > > Note that the ${file}, ${source} etc are not surrounded by quotes > any more. Thanks, Haris! I'll check that in for Skim. -- Adam From skiadas at hanover.edu Sat May 12 01:44:19 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Fri, 11 May 2007 21:44:19 -0400 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <22F3335F-2D6D-41E2-8731-E4BA615BC201@mac.com> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <0A523320-5CD3-41EA-8FAB-0249C6CF7EA2@eleves.bretagne.ens-cachan.fr> <05FE2668-5743-42A5-A9E6-E5CFA0814426@hanover.edu> <546AEF03-51F3-479A-ADDA-6B68BFA3A438@eleves.bretagne.ens-cachan.fr> <22F3335F-2D6D-41E2-8731-E4BA615BC201@mac.com> Message-ID: On May 11, 2007, at 9:23 PM, Adam R. Maxwell wrote: > On May 11, 2007, at 17:56, Charilaos Skiadas wrote: > >> I found the problem. It has to do with the code in the displayline >> script that Skim uses. The last line in that script should have been: >> >> /usr/bin/osascript -e "tell application \"Skim\"" -e "activate" -e >> "open POSIX file \"${file}\" at TeX line ${line} from source POSIX >> file \"${source}\"" -e "end tell" >> >> Note that the ${file}, ${source} etc are not surrounded by quotes >> any more. > > Thanks, Haris! I'll check that in for Skim. > Thank you for a great pdf viewer! Glad to be able to help, wish I had more time to contribute more to the development. > -- > Adam Haris Skiadas Department of Mathematics and Computer Science Hanover College From amaxwell at mac.com Sat May 12 01:49:44 2007 From: amaxwell at mac.com (Adam R. Maxwell) Date: Fri, 11 May 2007 18:49:44 -0700 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <0A523320-5CD3-41EA-8FAB-0249C6CF7EA2@eleves.bretagne.ens-cachan.fr> <05FE2668-5743-42A5-A9E6-E5CFA0814426@hanover.edu> <546AEF03-51F3-479A-ADDA-6B68BFA3A438@eleves.bretagne.ens-cachan.fr> <22F3335F-2D6D-41E2-8731-E4BA615BC201@mac.com> Message-ID: On May 11, 2007, at 18:44, Charilaos Skiadas wrote: > On May 11, 2007, at 9:23 PM, Adam R. Maxwell wrote: > >> On May 11, 2007, at 17:56, Charilaos Skiadas wrote: >> >>> I found the problem. It has to do with the code in the displayline >>> script that Skim uses. The last line in that script should have >>> been: >>> >>> /usr/bin/osascript -e "tell application \"Skim\"" -e "activate" -e >>> "open POSIX file \"${file}\" at TeX line ${line} from source POSIX >>> file \"${source}\"" -e "end tell" >>> >>> Note that the ${file}, ${source} etc are not surrounded by quotes >>> any more. >> >> Thanks, Haris! I'll check that in for Skim. >> > Thank you for a great pdf viewer! Glad to be able to help, wish I > had more time to contribute more to the development. You're quite welcome, but I have to say that Christiaan Hofman gets most of the credit for its current state. I occasionally contribute some fresh bugs :). -- Adam From frosty at sucs.org Sat May 12 02:08:39 2007 From: frosty at sucs.org (James Frost) Date: Sat, 12 May 2007 03:08:39 +0100 Subject: [TxMt] Auto-save every n minutes? Message-ID: Hi! Firstly, Textmate is a fantastic text editor! I use it all the time, and it constantly amazes me with something new and clever :-) Anyway, I would like to either request a new feature, or ask if anybody has an idea how/if it could be scripted as an automated task? Essentially I'd like to be able to set, on a per-document basis, the ability to have the document automatically save itself every minutes. Today, my macbook crashed, and I lost a fairly big chunk of an essay. It may actually be better if a way could be suggested to simply automate a task every n minutes - that way, I could have Textmate automatically commit a document to my svn/bzr repository! That'd be great! So... is this possible? Any help would be greatly appreciated. Thank you! James Frost From graham at grahamenglish.com Sat May 12 03:12:03 2007 From: graham at grahamenglish.com (Graham English) Date: Fri, 11 May 2007 23:12:03 -0400 Subject: [TxMt] Quicksilver text entry to TextMate? Message-ID: Is there a way to send a value to ${TM_BLOG_TITLE} through applescript in the TextMate blogging bundle? I'm thinking about creating a Quicksilver action that can use the text from Quicksilver to fill the title of the blogging HTML template. Thanks, Graham English From graham at grahamenglish.com Sat May 12 05:12:00 2007 From: graham at grahamenglish.com (Graham English) Date: Sat, 12 May 2007 01:12:00 -0400 Subject: [TxMt] Quicksilver text entry to TextMate? In-Reply-To: References: Message-ID: <51AAB187-D99F-4108-815A-F69D2D6A8D49@grahamenglish.com> It's not totally perfect, but here's what I managed to pull together. -- Place in ~/Library/Application Support/Quicksilver/Actions/ -- using terms from application "Quicksilver" on process text blogTitle set blogHeader to "Title: " & blogTitle & " Excerpt: " set myPath to "/Users/grahamenglish/Desktop/Writing/" & blogTitle & ".blog.html" do shell script "echo " & quoted form of blogTitle & " >> " & quoted form of myPath do shell script "open -a TextMate " & quoted form of myPath tell application "System Events" tell application "TextMate" to insert blogHeader end tell end process text end using terms from Warmest regards, Graham English On May 11, 2007, at 11:12 PM, Graham English wrote: > Is there a way to send a value to ${TM_BLOG_TITLE} through > applescript in the TextMate blogging bundle? > > I'm thinking about creating a Quicksilver action that can use the > text from Quicksilver to fill the title of the blogging HTML template. > > Thanks, > > Graham English > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate -------------- next part -------------- An HTML attachment was scrubbed... URL: From throw-away-1 at macromates.com Sat May 12 08:41:18 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sat, 12 May 2007 10:41:18 +0200 Subject: [TxMt] Auto-save every n minutes? In-Reply-To: References: Message-ID: On 12. May 2007, at 04:08, James Frost wrote: > [...] > Anyway, I would like to either request a new feature, or ask if > anybody has an idea how/if it could be scripted as an automated task? The only way I see it done using scripting is sending TM a ?Save All? key stroke every other minute. A future version will support implicit backups. From throw-away-1 at macromates.com Sat May 12 08:41:41 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sat, 12 May 2007 10:41:41 +0200 Subject: [TxMt] Feature request: shortcut to re-order tabs In-Reply-To: <42320C9C-3724-4C55-A155-E28519E90110@hexten.net> References: <42320C9C-3724-4C55-A155-E28519E90110@hexten.net> Message-ID: On 12. May 2007, at 02:19, Andy Armstrong wrote: > I fully expect someone to point out that this already exists :) [...] Doesn?t exist, but has been requested ;) From sebastian.graessl at gmail.com Sat May 12 12:24:24 2007 From: sebastian.graessl at gmail.com (Sebastian Graessl) Date: Sat, 12 May 2007 14:24:24 +0200 Subject: [TxMt] New Home of the GetBundle In-Reply-To: <5B91ADB9-CA00-48F6-B744-A503104EF5B7@macromates.com> References: <02577642-69A6-4143-ACAE-C0810A2D241F@gmail.com> <5B91ADB9-CA00-48F6-B744-A503104EF5B7@macromates.com> Message-ID: Because it is a zipped checkout, it should update itself when updating all bundles, shouldn't it? 2007/5/11, Allan Odgaard : > > On 10. May 2007, at 23:46, Sebastian Gr??l wrote: > > > I just wanted to tell you that the GetBundle has now it's own page > > and will get some improvements like turning it into a Plugin(maybe). > > > > The new site can be found at http://projects.validcode.net/getbundle > > Did you see my latest updates to the version at the repository? > > Basically this bundle should NOT checkout the Support folder, because > this is causing heaps of problems when users then have a newer > Support folder than their default bundles. > > Additionally I made it checkout bundles at a revision corresponding > to their current Support folder, that might not give them the latest > version, but it will give them something which works with their > current setup :) > > I did not get around to fixing the auto-updater script. > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > -------------- next part -------------- An HTML attachment was scrubbed... URL: From skiadas at hanover.edu Sat May 12 16:28:36 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Sat, 12 May 2007 12:28:36 -0400 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <0A523320-5CD3-41EA-8FAB-0249C6CF7EA2@eleves.bretagne.ens-cachan.fr> <05FE2668-5743-42A5-A9E6-E5CFA0814426@hanover.edu> <546AEF03-51F3-479A-ADDA-6B68BFA3A438@eleves.bretagne.ens-cachan.fr> <22F3335F-2D6D-41E2-8731-E4BA615BC201@mac.com> Message-ID: <9DE42EDA-BC23-4F7B-9CFC-29A4FD5DAF3E@hanover.edu> On May 11, 2007, at 9:49 PM, Adam R. Maxwell wrote: > > On May 11, 2007, at 18:44, Charilaos Skiadas wrote: > >> On May 11, 2007, at 9:23 PM, Adam R. Maxwell wrote: >> >>> On May 11, 2007, at 17:56, Charilaos Skiadas wrote: >>> >>>> I found the problem. It has to do with the code in the >>>> displayline script that Skim uses. The last line in that script >>>> should have been: >>>> >>>> /usr/bin/osascript -e "tell application \"Skim\"" -e "activate" - >>>> e "open POSIX file \"${file}\" at TeX line ${line} from source >>>> POSIX file \"${source}\"" -e "end tell" >>>> >>>> Note that the ${file}, ${source} etc are not surrounded by >>>> quotes any more. >>> >>> Thanks, Haris! I'll check that in for Skim. >>> >> Thank you for a great pdf viewer! Glad to be able to help, wish I >> had more time to contribute more to the development. > > You're quite welcome, but I have to say that Christiaan Hofman gets > most of the credit for its current state. I occasionally > contribute some fresh bugs :). > I wonder, would it be possible to change the order of arguments in displayline? TeXniscope and PDF View have the source filename before the pdf filename, but Skim does it the other way around. It probably makes it a bit harder handling the case where the source is omitted, but it would simplify the code on TextMate's side, allowing me to address all the viewer calls with a single call. Not a big deal really, but it would be nice. > -- > Adam Haris Skiadas Department of Mathematics and Computer Science Hanover College From amaxwell at mac.com Sat May 12 17:26:55 2007 From: amaxwell at mac.com (Adam R. Maxwell) Date: Sat, 12 May 2007 10:26:55 -0700 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <9DE42EDA-BC23-4F7B-9CFC-29A4FD5DAF3E@hanover.edu> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <0A523320-5CD3-41EA-8FAB-0249C6CF7EA2@eleves.bretagne.ens-cachan.fr> <05FE2668-5743-42A5-A9E6-E5CFA0814426@hanover.edu> <546AEF03-51F3-479A-ADDA-6B68BFA3A438@eleves.bretagne.ens-cachan.fr> <22F3335F-2D6D-41E2-8731-E4BA615BC201@mac.com> <9DE42EDA-BC23-4F7B-9CFC-29A4FD5DAF3E@hanover.edu> Message-ID: <636A3F75-C23D-4175-A541-0A24B35AD580@mac.com> On May 12, 2007, at 09:28, Charilaos Skiadas wrote: > I wonder, would it be possible to change the order of arguments in > displayline? TeXniscope and PDF View have the source filename before > the pdf filename, but Skim does it the other way around. It probably > makes it a bit harder handling the case where the source is omitted, > but it would simplify the code on TextMate's side, allowing me to > address all the viewer calls with a single call. I'm not sure if it's possible; my shell script memory is so poor that I'll write C/Obj-C first :). I think it's unfortunate that order of options matters at all, but changing it would break compatibility with 0.3...which perhaps isn't a big deal. Your best bet is to file a feature request at http://sourceforge.net/tracker/?group_id=192583&atid=941984 so it can be tracked. -- Adam From skiadas at hanover.edu Sat May 12 20:02:43 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Sat, 12 May 2007 16:02:43 -0400 Subject: [TxMt] Is the following pdfsync-instruction right? In-Reply-To: <636A3F75-C23D-4175-A541-0A24B35AD580@mac.com> References: <4FA4EEA2-A8C8-410B-B415-EBFD751E5A1A@hanover.edu> <85F88ABA-D836-4898-B1A3-7494FB9DB465@markelikalderon.com> <4F0C242A-D83C-484A-A75F-5B6F377D4E06@googlemail.com> <0A523320-5CD3-41EA-8FAB-0249C6CF7EA2@eleves.bretagne.ens-cachan.fr> <05FE2668-5743-42A5-A9E6-E5CFA0814426@hanover.edu> <546AEF03-51F3-479A-ADDA-6B68BFA3A438@eleves.bretagne.ens-cachan.fr> <22F3335F-2D6D-41E2-8731-E4BA615BC201@mac.com> <9DE42EDA-BC23-4F7B-9CFC-29A4FD5DAF3E@hanover.edu> <636A3F75-C23D-4175-A541-0A24B35AD580@mac.com> Message-ID: On May 12, 2007, at 1:26 PM, Adam R. Maxwell wrote: > > On May 12, 2007, at 09:28, Charilaos Skiadas wrote: > >> I wonder, would it be possible to change the order of arguments in >> displayline? TeXniscope and PDF View have the source filename >> before the pdf filename, but Skim does it the other way around. It >> probably makes it a bit harder handling the case where the source >> is omitted, but it would simplify the code on TextMate's side, >> allowing me to address all the viewer calls with a single call. > > I'm not sure if it's possible; my shell script memory is so poor > that I'll write C/Obj-C first :). I think it's unfortunate that > order of options matters at all, but changing it would break > compatibility with 0.3...which perhaps isn't a big deal. Your best > bet is to file a feature request at http://sourceforge.net/tracker/? > group_id=192583&atid=941984 so it can be tracked. > I just submitted it, number 1717886: http://sourceforge.net/tracker/ index.php?func=detail&aid=1717886&group_id=192583&atid=941984 Actually all that is needed is the addition of a forward-search.sh file with contents the following two lines: #!/bin/sh "${0/forward-search.sh/displayline}" "$1" "$3" "$2" This will not break compatibility with any previous version of Skim. displayline will still continue to work the same way. > -- > Adam Haris Skiadas Department of Mathematics and Computer Science Hanover College From ciawal at gmail.com Sun May 13 11:10:33 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Sun, 13 May 2007 12:10:33 +0100 Subject: [TxMt] Re: Several newbie-questions In-Reply-To: <3DA13221-ACE6-4499-B567-D54614DFBE7A@tommai.de> References: <4FBAD9D4-318D-4B78-A113-20D3555A469E@tommai.de> <8B35CE78-D203-4A81-B16B-CB6F177140F2@tommai.de> <4DEE008B-A024-4B32-BD86-43B3810A5B68@gmail.com> <7F116EDA-3EB0-4E90-9EF0-66BED1026927@tommai.de> <3DA13221-ACE6-4499-B567-D54614DFBE7A@tommai.de> Message-ID: On 11 May 2007, at 21:17, Thomas Mai wrote: >>>>> that command is missing in my bundles. Could you post it here? >>>> It should be included. Is your version of TextMate up to date? >>> Yes, I think so. It's 1.5.5 (1368) >> >> Use Preferences ? Software Update and switch to Cutting-Edge. >> Then you?ll get r1383. >> >> The command Ciaren speaks about is from 2007-03-08 -- r1368 is >> from 2007-03-04, so missed it by four days. > > > That's it - now my copy can jump too :) > > Thanks a lot, > Tom Sorry about that, it's been there some time now so I'd assumed it had been in a release. From groups at bphilipps.ch Sun May 13 15:23:10 2007 From: groups at bphilipps.ch (Bastian Philipps) Date: Sun, 13 May 2007 15:23:10 +0000 (UTC) Subject: [TxMt] Re: LaTeX Bundle: Typeset & View: Don't close on warnings References: <46226886.2010602@andersground.net> <462278B2.2070103@ruderich.com> Message-ID: Simon Ruderich writes: > Florian Gilcher wrote: > > i have a small problem with the Latex Bundle. When using Typset & View > > the popup window immediately closes after compile, if no error is > > thrown. If a warning is displayed, you can only see that there are > > warnings happening, but not where and why. Is there a possibility to > > have the windows stay on screen in that case? > > You can set TM_LATEX_ERRLVL = 0 in the "Shell Variables" tab of the > preferences. This works for me. > > Hope this helps, > Simon > -- Sadly setting TM_LATEX_ERRLVL = 0 in the preferences does not work for me. Looks to me that's related to the default options in the bundle command: # default option. V=${TM_LATEX_VIEWER:-html} EL=${TM_LATEX_ERRLVL:-1} M=${TM_LATEX_MASTER:-$TM_FILEPATH} DIR=`dirname "$M"` Is there any other way to keep the console open except editing the bundle command, as I do not want to mess with standard stuff and get problems in case of TM or bundle updates. Thanks a lot for your help in advance Greetz From skiadas at hanover.edu Sun May 13 15:51:51 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Sun, 13 May 2007 11:51:51 -0400 Subject: [TxMt] Re: LaTeX Bundle: Typeset & View: Don't close on warnings In-Reply-To: References: <46226886.2010602@andersground.net> <462278B2.2070103@ruderich.com> Message-ID: <25ACD532-11E3-4A53-B480-1B25879D0A4E@hanover.edu> On May 13, 2007, at 11:23 AM, Bastian Philipps wrote: > Simon Ruderich writes: >> Florian Gilcher wrote: >>> i have a small problem with the Latex Bundle. When using Typset & >>> View >>> the popup window immediately closes after compile, if no error is >>> thrown. If a warning is displayed, you can only see that there are >>> warnings happening, but not where and why. Is there a possibility to >>> have the windows stay on screen in that case? >> >> You can set TM_LATEX_ERRLVL = 0 in the "Shell Variables" tab of the >> preferences. This works for me. >> >> Hope this helps, >> Simon >> -- > > Sadly setting TM_LATEX_ERRLVL = 0 in the preferences does not work > for me. > Looks to me that's related to the default options in the bundle > command: > # default option. > V=${TM_LATEX_VIEWER:-html} > EL=${TM_LATEX_ERRLVL:-1} > M=${TM_LATEX_MASTER:-$TM_FILEPATH} > DIR=`dirname "$M"` No this part of the code is just fine, it basically sets EL to 1 if it is not already set. There was an error much further down, when an $RC <= $EL should nave been $RC < $EL. I just committed a fix. Now setting TM_LATEX_ERRLVL to 0 should always leave the window open, setting it to 1 should only leave the window open if there are at least warnings, and setting it to 2 should only leave the window open if there are errors. > Is there any other way to keep the console open except editing the > bundle > command, as I do not want to mess with standard stuff and get > problems in case > of TM or bundle updates. > > Thanks a lot for your help in advance > Greetz Haris Skiadas Department of Mathematics and Computer Science Hanover College From graham at grahamenglish.com Sun May 13 21:55:42 2007 From: graham at grahamenglish.com (Graham English) Date: Sun, 13 May 2007 17:55:42 -0400 Subject: [TxMt] Upload MP3 Drag Command? Message-ID: <4B8CD1D2-7132-4B9F-B44F-DDD9AF5405E6@grahamenglish.com> Has anyone created an upload command when mp3s are dragged onto a document? This would be a great podcasting feature for the blogging bundle. Thanks, Graham English From graham at grahamenglish.com Mon May 14 04:21:24 2007 From: graham at grahamenglish.com (Graham English) Date: Mon, 14 May 2007 00:21:24 -0400 Subject: [TxMt] Quicksilver action adding invisible characters Message-ID: <47D35DBD-6771-40AE-A229-6FEAB2A0B5B6@grahamenglish.com> Hello, I started using the GTDAlt bundle and I wrote a Quicksilver action in applescript to append text to my inbox.txt. I know I can just use Quicksilver's append text but I wanted to write something custom. The problem is it is adding invisible characters between every letter. Any ideas why? Here's my script: using terms from application "Quicksilver" on process text theText set this_file to (((path to desktop folder) as text) & "GTD:" & "inbox.txt") my write_to_file(theText, this_file, true) end process text end using terms from on write_to_file(theText, target_file, append_data) try set the target_file to the target_file as text set the open_target_file to ? open for access file target_file with write permission if append_data is false then ? set eof of the open_target_file to 0 write theText to the open_target_file starting at eof close access the open_target_file return true on error try close access file target_file end try return false end try end write_to_file Warmest regards, Graham English -------------- next part -------------- An HTML attachment was scrubbed... URL: From throw-away-1 at macromates.com Mon May 14 10:06:50 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Mon, 14 May 2007 12:06:50 +0200 Subject: [TxMt] New Home of the GetBundle In-Reply-To: References: <02577642-69A6-4143-ACAE-C0810A2D241F@gmail.com> <5B91ADB9-CA00-48F6-B744-A503104EF5B7@macromates.com> Message-ID: <9FCE3349-7C27-4817-A362-B5B28ED62333@macromates.com> On 12. May 2007, at 14:24, Sebastian Graessl wrote: > Because it is a zipped checkout, it should update itself when > updating all bundles, shouldn't it? You mean this is a zipped checkout from the public repository, so it should update to the version I speak about when updating bundles? Preferably also make sure the zip contains the updated version I speak about. > 2007/5/11, Allan Odgaard :On 10. May > 2007, at 23:46, Sebastian Gr??l wrote: > > > I just wanted to tell you that the GetBundle has now it's own page > > and will get some improvements like turning it into a Plugin(maybe). > > > > The new site can be found at http://projects.validcode.net/getbundle > > Did you see my latest updates to the version at the repository? > > Basically this bundle should NOT checkout the Support folder, because > this is causing heaps of problems when users then have a newer > Support folder than their default bundles. > > Additionally I made it checkout bundles at a revision corresponding > to their current Support folder, that might not give them the latest > version, but it will give them something which works with their > current setup :) > > I did not get around to fixing the auto-updater script. > > > ______________________________________________________________________ > For new threads USE THIS: textmate at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From throw-away-1 at macromates.com Mon May 14 10:38:57 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Mon, 14 May 2007 12:38:57 +0200 Subject: [TxMt] Quicksilver action adding invisible characters In-Reply-To: <47D35DBD-6771-40AE-A229-6FEAB2A0B5B6@grahamenglish.com> References: <47D35DBD-6771-40AE-A229-6FEAB2A0B5B6@grahamenglish.com> Message-ID: On 14. May 2007, at 06:21, Graham English wrote: > I started using the GTDAlt bundle and I wrote a Quicksilver action > in applescript to append text to my inbox.txt. I know I can just > use Quicksilver's append text but I wanted to write something > custom. The problem is it is adding invisible characters between > every letter. Any ideas why? Try run ?xxd? on the file to figure out which characters got inserted. That might help diagnosing the problem. From jasper at logt.nu Mon May 14 12:25:23 2007 From: jasper at logt.nu (Jasper van der Meulen) Date: Mon, 14 May 2007 14:25:23 +0200 Subject: [TxMt] Symbol window on 2nd screen In-Reply-To: <7E73A3DB-05CF-47DB-BC2B-1141F26135BC@macromates.com> References: <03DA1830-9552-4168-ADFE-A37BF149D265@logt.nu> <7E73A3DB-05CF-47DB-BC2B-1141F26135BC@macromates.com> Message-ID: On May 11, 2007, at 11:11 AM, Allan Odgaard wrote: > On 10. May 2007, at 16:06, Jasper van der Meulen wrote: > >> I'm every so often on another location where i work on two screen's. >> The only thing i always need to adjust once is to drag the symbol >> window to the screen where the main textmate window is.\ >> Is there a config thing i can set, or is it a feature for TM2 ? >> >> ps: the other windows (goto file, bundle editor, etc) also come in >> the wrong screen > > So all these windows open on the screen which does *not* have the > currently active window? > I've opened Textmate on the external screen and made it fullscreen and active. The windows(from textmate) open on my internal display (laptop screen) Or do you mean "other windows from other programs? > They should, by default, open at the screen with the active window. > But they will also remember window position. > > Is your setup that you have a laptop, and often work on just this > laptop, then sometimes, you connect a secondary screen, drag the > TextMate window to the secondary screen, and now need to do the > same for all the other windows? If so, it is likely because they > remember their position, and re-use them. Yes, that's the case .. for 70% i work at my laptop and the rest on an external screen > > Maybe this can be fixed by going to the system preferences and > configure the external screen to be the ?main? screen (i.e. have > the origin of the coordinate system), when connected. > I'll give it a try next time .. thanks > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From frosty at sucs.org Mon May 14 13:40:33 2007 From: frosty at sucs.org (James Frost) Date: Mon, 14 May 2007 14:40:33 +0100 Subject: [TxMt] Open Recent not working Message-ID: Hi, My File -> Open Recent menu item has stopped working. I click on an item and it doesn't open. The File menu stays highlighted until I do something else, and the document just doesn't open. Does anyone know what would cause this? Thanks, James Frost From frosty at sucs.org Mon May 14 13:43:47 2007 From: frosty at sucs.org (James Frost) Date: Mon, 14 May 2007 14:43:47 +0100 Subject: [TxMt] Re: Open Recent not working In-Reply-To: References: Message-ID: On 5/14/07, James Frost wrote: > My File -> Open Recent menu item has stopped working. I click on an > item and it doesn't open. The File menu stays highlighted until I do > something else, and the document just doesn't open. > > Does anyone know what would cause this? Ah, looks like it wasn't just Textmate, and it appears as though it was due to Menufela (an app that autohides the menubar). Sorry! James Frost From graham at grahamenglish.com Mon May 14 14:01:56 2007 From: graham at grahamenglish.com (Graham English) Date: Mon, 14 May 2007 10:01:56 -0400 Subject: [TxMt] Quicksilver action adding invisible characters In-Reply-To: References: <47D35DBD-6771-40AE-A229-6FEAB2A0B5B6@grahamenglish.com> Message-ID: <4B11DFE9-8B98-48AA-A7AA-131F3BE7D284@grahamenglish.com> I never figured out why it happened, but I managed to fix it. I used 'do shell script "echo "' which simplified the script and got it to work. The full script is here: http://integral.grahamenglish.net/ graham-english/append-to-inbox-quicksilver-action/ Thanks for your help. On May 14, 2007, at 6:38 AM, Allan Odgaard wrote: > On 14. May 2007, at 06:21, Graham English wrote: > >> I started using the GTDAlt bundle and I wrote a Quicksilver action >> in applescript to append text to my inbox.txt. I know I can just >> use Quicksilver's append text but I wanted to write something >> custom. The problem is it is adding invisible characters between >> every letter. Any ideas why? > > Try run ?xxd? on the file to figure out which characters got > inserted. That might help diagnosing the problem. > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From throw-away-1 at macromates.com Mon May 14 21:12:46 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Mon, 14 May 2007 23:12:46 +0200 Subject: [TxMt] Upload MP3 Drag Command? In-Reply-To: <4B8CD1D2-7132-4B9F-B44F-DDD9AF5405E6@grahamenglish.com> References: <4B8CD1D2-7132-4B9F-B44F-DDD9AF5405E6@grahamenglish.com> Message-ID: On 13. May 2007, at 23:55, Graham English wrote: > Has anyone created an upload command when mp3s are dragged onto a > document? This would be a great podcasting feature for the blogging > bundle. The same would be the case for binary files, or well, files in general. I don?t know if you intend to insert special markup for the uploaded MP3. Come to think of it, it might be a good idea with just one catch- all drag command, and then let it have an associative array of extension ? markup template. From a.h.jaffe at gmail.com Mon May 14 21:58:28 2007 From: a.h.jaffe at gmail.com (Andrew Jaffe) Date: Mon, 14 May 2007 22:58:28 +0100 Subject: [TxMt] GetBundle -- svn version issue Message-ID: <4648DB84.3070903@gmail.com> Hi- I really like the handy getBundle bundle... but it's been giving me some trouble. I've upgraded my own version of svn to 1.4.3. Unfortunately, this is backwards-incompatible with getBundle's internal version, which is 1.3. Since I've updated some of my bundles -- and the support folder -- by hand, it's used my newer version, but then getBundle's svn can no longer update them. Perhaps getBundle should probably use the local svn if that's possible? (Indeed it only uses the local svnversion, which will also cause a mismatch.) Yours, Andrew From simon at helvector.org Tue May 15 09:35:24 2007 From: simon at helvector.org (Simon Gregory) Date: Tue, 15 May 2007 02:35:24 -0700 Subject: [TxMt] Flex 2 Bundle Message-ID: <40719.1179221724@helvector.org> >I've been playing with the flex bundles for a while now.?? It looks like there are lots of different ways of building Flex at this point.?? I've been using rake: >http://theblogthatnoonereads.tunasoft.com/2007/04/29/building-flex-on-rails/ Yes, there's a lot of ways to invoke mxmlc/compc. Ideally I'd like to see just one build and one run command in the ActionScript 3 bundle but don't want to impose a particular method. Currently there is: mxmlc Ant fsch (A wrapper for mxmlc which caches the build in RAM and dramatically speeds up compilation - on my current project mxmlc takes 20+ seconds, with fsch this comes down to 4-5 seconds) Shell - project specific custom file. I'd imagine that we could quickly add rake and yaml to the equation too. Does anyone have any suggestions of a way to handle this? Would it be best to add the various build methods as templates then check for custom build scrips within a TM project before defaulting to a basic build? Are there any other bundle developers who've solved a similar problem? Cheers, Simon From oblivious at subtlegradient.com Tue May 15 11:16:59 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Tue, 15 May 2007 07:16:59 -0400 Subject: [TxMt] Flex 2 Bundle In-Reply-To: <40719.1179221724@helvector.org> References: <40719.1179221724@helvector.org> Message-ID: On May 15, 2007, at 5:35 AM, Simon Gregory wrote: >> I've been playing with the flex bundles for a while now. It looks >> like there are lots of different ways of building Flex at this > point. I've been using rake: >> http://theblogthatnoonereads.tunasoft.com/2007/04/29/building-flex- >> on-rails/ > > Yes, there's a lot of ways to invoke mxmlc/compc. Ideally I'd like > to see just one build and one run command in the > ActionScript 3 bundle but don't want to impose a particular method. > Currently there is: > > mxmlc > Ant > fsch (A wrapper for mxmlc which caches the build in RAM and > dramatically speeds up compilation - on my current project > mxmlc takes 20+ seconds, with fsch this comes down to 4-5 seconds) > Shell - project specific custom file. > > I'd imagine that we could quickly add rake and yaml to the equation > too. Does anyone have any suggestions of a way to handle > this? Would it be best to add the various build methods as > templates then check for custom build scrips within a TM project > before defaulting to a basic build? Are there any other bundle > developers who've solved a similar problem? > > Cheers, > Simon All my projects use custom build scripts in the project root. We have a custom Logger class with a custom ruby server that communicate back and forth. I wrote a simple command that uses the Textmate.system javascript hook to call it and write the results back to the html output menu as if it was a terminal window. That command is available in my personal (and rather outdated now) as3 bundle. All the CrazyEgg 2.0 team (me + two other dudes) are using my custom bundle right now. http://textmate.svn.subtlegradient.com/Bundles/Actionscript%203%20% 5BsG%5D.tmbundle http://textmate.svn.subtlegradient.com/Bundles/Actionscript%203%20% 5bsG%5d.tmbundle/Commands/Actionscript%20Runner.tmCommand For any other projects I work on that don't require a custom server to be running or any strange custom build junk, I'd like it to fallback to the fastest and best compilation that my system can handle. fsch sounds best if it's installed, otherwise fallback to simply mxmlc. I'd still leave the other build commands in there for people who need them, but I'd have a single command that tries a custom build script then fsch then finally falls back mxmlc. Bind that to ?B and you've got yourself the perfect build command. thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors From throw-away-1 at macromates.com Tue May 15 12:01:45 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Tue, 15 May 2007 14:01:45 +0200 Subject: [TxMt] Flex 2 Bundle In-Reply-To: <40719.1179221724@helvector.org> References: <40719.1179221724@helvector.org> Message-ID: <9F45AA0F-779F-4233-A3F4-6ADFE0393783@macromates.com> On 15. May 2007, at 11:35, Simon Gregory wrote: > [...] there's a lot of ways to invoke mxmlc/compc. Ideally I'd like > to see just one build and one run command in the > ActionScript 3 bundle but don't want to impose a particular method. > Currently there is: > > mxmlc > Ant > fsch (A wrapper for mxmlc which caches the build in RAM and > dramatically speeds up compilation - on my current project > mxmlc takes 20+ seconds, with fsch this comes down to 4-5 seconds) > Shell - project specific custom file. > > I'd imagine that we could quickly add rake and yaml to the equation > too. [...] Rake and Ant are general build systems and should have their own bundles, like we have one for Makefiles and another one for Xcode project files. I know Java presently has an Ant build command and Ruby has the Rake build, but if the build systems are used for other source types, we should factor it out, rather than duplicate. In 2.0 TM it will be possible to have some extra project attributes in the scope, making it possible for TM to figure out (via scope selectors) what build system should actually get the ?B/?R key equivalent -- for now though, it shouldn?t be too big a problem for a user to maybe change the scope selector of Make?s Build command to include his file types. > Does anyone have any suggestions of a way to handle this? Would it > be best to add the various build methods as templates then check > for custom build scrips within a TM project before defaulting to a > basic build? Are there any other bundle developers who've solved a > similar problem? I think what Thomas proposes is the proper scheme, i.e. have one command that first tries fsch, then falls back on mxmlc. I am not sure what the custom shell script covers. Is there a de facto standard for having custom shell scripts to build the project? From nick.forge at gmail.com Tue May 15 15:15:00 2007 From: nick.forge at gmail.com (Nick Forge) Date: Wed, 16 May 2007 01:15:00 +1000 Subject: [TxMt] CR/LF Line endings Message-ID: <49DEFB35-888C-4641-A515-77B04477ADCD@gmail.com> I have noticed that if I set Line Endings to "CRLF (Windows)" (when collaborating with windows people), line endings are correctly translated to windows style. I forgot to set Textmate back to Unix standard (LF), opened a text file, and when I next saved it it had CLRF line endings. When I changed Textmate back to LF mode, the line endings stayed as CRLF. Even if I delete then re-do all the linebreaks, they are still CLRF. I need to get this sorted right away, so I have used Fink to install dosunix to convert these "CRLFed" documents. Is this a bug in TextMate? It would be nice if there was some way to set the line endings by file, rather than having an app wide setting. Also, it would be great if this could be put in a bundle (LF->CRLF and vice-versa). Thanks, Nick Forge From ciawal at gmail.com Tue May 15 15:41:15 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Tue, 15 May 2007 16:41:15 +0100 Subject: [TxMt] CR/LF Line endings In-Reply-To: <49DEFB35-888C-4641-A515-77B04477ADCD@gmail.com> References: <49DEFB35-888C-4641-A515-77B04477ADCD@gmail.com> Message-ID: <2F319F7E-3B75-4AFA-BD20-81406E13C25F@gmail.com> On 15 May 2007, at 16:15, Nick Forge wrote: > I forgot to set Textmate back to Unix standard (LF), opened a text > file, and when I next saved it it had CLRF line endings. Do you have ?Use for existing files as well? checked in Preferences? -------------- next part -------------- An HTML attachment was scrubbed... URL: From markmiller66 at gmail.com Tue May 15 18:17:31 2007 From: markmiller66 at gmail.com (Mark Miller) Date: Tue, 15 May 2007 14:17:31 -0400 Subject: [TxMt] basic enclosing brackets question Message-ID: <16d846870705151117y11ae700epad561941fe45b907@mail.gmail.com> Hi, This is a first post so if this isn't the right place or I didn't search well enough, please let me know. I know you can select the contents between brackets with command-shift-B. However, this is the same key sequence that was select for breakpoints when coding in Ruby. I realize I could customize any way I want, but I figured I must be missing a fundamental way or working in TextMate if this key option was used for two different operations. Is there an easy trick to get the one I want? Thanks, Mark From stevemolitor at gmail.com Tue May 15 19:55:11 2007 From: stevemolitor at gmail.com (Steve Molitor) Date: Tue, 15 May 2007 14:55:11 -0500 Subject: [TxMt] Issue with default task and RakeMate Message-ID: <3e21ad60705151255q6db87fe6k4e2f110fd92d5d92@mail.gmail.com> I'm having a problem running the default task with RakeMate. Rake reports an error saying that '(default task)' is not a valid task. I worked around the problem by converting the 'task' variable returned by TextMate:: UI.request_item to a string on line 58 of rake_mate.rb: task = task.to_s Apparently request_item is return an Array, so 'task == DEFAULT_TASK' returns false. Converting task to a string fixes it. I'm using TextMate 1383, which is the latest cutting edge I believe. Steve -------------- next part -------------- An HTML attachment was scrubbed... URL: From zvistrash at gmail.com Tue May 15 20:17:41 2007 From: zvistrash at gmail.com (Zvi Biener) Date: Tue, 15 May 2007 22:17:41 +0200 Subject: [TxMt] output: show as HTML vs. Create New Document Message-ID: <54F4E6BB-B6F6-4FA4-ABA6-637C48C18FCF@gmail.com> Dear All, I have a strange situation wherein the output of a command appears properly if I select "Show as HTML", but disappears if I select "Create New Document" (i.e., a blank file appears). Why does this happen? Here is the full story: I wanted to modify the subversion Diff commands to use wdiff instead of subversions built-in capacities. I added an enviornment variable called "TM_SVN_DIFF_CMD", with a value "wdiff_svn_wrapper.sh". "wdiff_svn_wrapper.sh" is simply a wrapper script that calls "wdiff $6 $7". I do this in order to get read of the numerous options that subversion attaches, and retain only the file names. If I then use the commands "Diff Revisions..." or "Diff With Revision..." everything works perfectly: I get the appropriate comparison between the appropriate revision. If I use "Diff With Newest (Head)" or "Diff With Working Copy (Base)", etc., I get the appropriate output if I select "Show as HTML" for the output, but a blank document if I select "Create New Document" as output. What can be happening? Thanks, Zvi From throw-away-1 at macromates.com Tue May 15 20:25:14 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Tue, 15 May 2007 22:25:14 +0200 Subject: [TxMt] CR/LF Line endings In-Reply-To: <49DEFB35-888C-4641-A515-77B04477ADCD@gmail.com> References: <49DEFB35-888C-4641-A515-77B04477ADCD@gmail.com> Message-ID: On 15. May 2007, at 17:15, Nick Forge wrote: > [...] It would be nice if there was some way to set the line > endings by file, rather than having an app wide setting [...] You can set it when you save a file, just use Save As? instead of Save. From throw-away-1 at macromates.com Tue May 15 20:26:29 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Tue, 15 May 2007 22:26:29 +0200 Subject: [TxMt] basic enclosing brackets question In-Reply-To: <16d846870705151117y11ae700epad561941fe45b907@mail.gmail.com> References: <16d846870705151117y11ae700epad561941fe45b907@mail.gmail.com> Message-ID: <3F46CA9C-A423-4A49-B9EC-891407E33866@macromates.com> On 15. May 2007, at 20:17, Mark Miller wrote: > I know you can select the contents between brackets with > command-shift-B. However, this is the same key sequence that was > select for breakpoints when coding in Ruby. I take it this is a third party bundle? The bundle should change the default key. From throw-away-1 at macromates.com Tue May 15 20:29:19 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Tue, 15 May 2007 22:29:19 +0200 Subject: [TxMt] output: show as HTML vs. Create New Document In-Reply-To: <54F4E6BB-B6F6-4FA4-ABA6-637C48C18FCF@gmail.com> References: <54F4E6BB-B6F6-4FA4-ABA6-637C48C18FCF@gmail.com> Message-ID: <16EECFC1-D4C9-4A59-A87B-4A388A2918A7@macromates.com> On 15. May 2007, at 22:17, Zvi Biener wrote: > [...] I get the appropriate output if I select "Show as HTML" for > the output, but a blank document if I select "Create New Document" > as output. What can be happening? Most likely the result of the command is not (valid) UTF-8. TextMate expects the command result to be UTF-8, and presently it will not inform you, if it is not (it will just result in no output). From nick.forge at gmail.com Wed May 16 01:34:39 2007 From: nick.forge at gmail.com (Nick Forge) Date: Wed, 16 May 2007 11:34:39 +1000 Subject: [TxMt] CR/LF Line endings In-Reply-To: <2F319F7E-3B75-4AFA-BD20-81406E13C25F@gmail.com> References: <49DEFB35-888C-4641-A515-77B04477ADCD@gmail.com> <2F319F7E-3B75-4AFA-BD20-81406E13C25F@gmail.com> Message-ID: On 16/05/2007, at 1:41 AM, Ciar?n Walsh wrote: > On 15 May 2007, at 16:15, Nick Forge wrote: > >> I forgot to set Textmate back to Unix standard (LF), opened a text >> file, and when I next saved it it had CLRF line endings. > Do you have ?Use for existing files as well? checked in Preferences? Yes, I do. As I said, TM changed an LF file to CRLF using the preferences setting, but it failed to change them back. As Allan pointed out in his post, I can use Save As to get around this, so it's no big deal. It does however seem that the Preferences setting is a bit inconsistent - changing files in one direction but not the other. Thanks, Nick -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim at neologica.com.au Wed May 16 02:38:59 2007 From: tim at neologica.com.au (Tim Mansour) Date: Wed, 16 May 2007 12:38:59 +1000 Subject: [TxMt] CR/LF Line endings In-Reply-To: References: <49DEFB35-888C-4641-A515-77B04477ADCD@gmail.com> <2F319F7E-3B75-4AFA-BD20-81406E13C25F@gmail.com> Message-ID: <7E3B0613-E021-4FF0-9497-7CC0702CA5D9@neologica.com.au> On 16/05/2007, at 11:34 am, Nick Forge wrote: > As Allan pointed out in his post, I can use Save As to get around > this, so it's no big deal. It does however seem that the > Preferences setting is a bit inconsistent - changing files in one > direction but not the other. > And it would still be nice to have this as a widget in the document window, like BBEdit does, along with the file encoding. -- Tim Mansour Neologica Print & Promotions (ABN 63 904 335 408) 159 Commonwealth Street Surry Hills NSW 2010 Sydney 02 9212 1789 Melbourne 03 9012 7441 Mobile 0405 500 846 From mjijackson at gmail.com Wed May 16 04:06:18 2007 From: mjijackson at gmail.com (Michael Jackson) Date: Tue, 15 May 2007 22:06:18 -0600 Subject: [TxMt] Get tab of selected text in command Message-ID: Hello all, I'm working on a command that generates some functions for a set of variables, and I'd like to print out the result in line with the text that is selected. Is there any really clean way to do this that I'm not aware of? I need to get the tab indentation of one of the selected lines of text. Thanks, Michael -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2452 bytes Desc: not available URL: From eike+textmate at unorganized.net Wed May 16 07:29:53 2007 From: eike+textmate at unorganized.net (Eike Bernhardt) Date: Wed, 16 May 2007 09:29:53 +0200 Subject: [TxMt] Mercurial Bundle: Diff Commands Message-ID: <464AB2F1.1040107@unorganized.net> Hello, while testing mercurial I noticed that the diff commands in the Mercurial Bundle behave differently than what I'm used to from the svn bundle. When I select a folder in the drawer and issue any diff command using the subversion bundle, I get a diff for all files under that selected folder. The mercurial diff commands always use the currently active file in the diff commands. Changing the hg_diff.rb file enables me to select a folder and get a diff for everything under it: @@ -6,7 +6,7 @@ module Mercurial def Mercurial.diff_active_file( revision, command ) hg = ENV['TM_HG'] || 'hg' - target_path = ENV['TM_FILEPATH'] + target_path = ENV['TM_SELECTED_FILE'] || ENV['TM_FILEPATH'] work_path = ENV['WorkPath'] path = target_path.sub(/^#{work_path}\//, '') output_path = File.basename(target_path) + ".diff" (patch is attached) While I'm here .. I had to change all diff commands do something like ( "${TM_RUBY:=ruby}" -I "$TM_BUNDLE_SUPPORT/" <<END require 'hg_diff' Mercurial::diff_active_file("-r$rev2 -r$rev1", "Diff Revisions?") END ) | iconv -t UTF-8 -c since without the iconv call I'd get empty diff windows (probably because of incorrectly encoded german special chars inside the generated diff) -- but I'm not shure if this is just a local problem. Bye, Eike -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: hg_diff.rb.diff URL: From ciawal at gmail.com Wed May 16 07:53:28 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Wed, 16 May 2007 08:53:28 +0100 Subject: [TxMt] Get tab of selected text in command In-Reply-To: References: Message-ID: On 16 May 2007, at 05:06, Michael Jackson wrote: > I'd like to print out the result in line with the text that is > selected. Is there any really clean way to do this that I'm not > aware of? I need to get the tab indentation of one of the selected > lines of text. If you set the command to ?Insert as Snippet? (not Text) it'll automatically be indented as per the language?s indentation rules (as with auto-indent on pasting). This may not be what you want, but you didn't say what the selected text is or what language you're writing the command in, so I can't offer a code alternative. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mail at hinterland.nu Wed May 16 12:41:02 2007 From: mail at hinterland.nu (Bruno) Date: Wed, 16 May 2007 13:41:02 +0100 Subject: [TxMt] CSSEdit has nice interface Message-ID: I've been using CSSEdit for the last few days, and it's got a really nice interface. There is a left-hand pane which is the equivalent of the popup menu for functions in Textmate. And crucially, there is a live search box at the top which filters that pane, so you start typing, say 'news', and it shows all selectors with a class or id containing that word. I personally think that would be a great feature for Textmate to have, perhaps in a drawer on the other side from the Projects drawer. The popup menu is pretty unwieldy (IMHO) with big documents. --- Bruno From ciawal at gmail.com Wed May 16 13:10:59 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Wed, 16 May 2007 14:10:59 +0100 Subject: [TxMt] CSSEdit has nice interface In-Reply-To: References: Message-ID: <69439EC1-4DF9-4936-AD2D-3C7BBA16911D@gmail.com> On 16 May 2007, at 13:41, Bruno wrote: > I've been using CSSEdit for the last few days, and it's got a > really nice interface. There is a left-hand pane which is the > equivalent of the popup menu for functions in Textmate. And > crucially, there is a live search box at the top which filters that > pane, so you start typing, say 'news', and it shows all selectors > with a class or id containing that word. > > I personally think that would be a great feature for Textmate to > have, perhaps in a drawer on the other side from the Projects > drawer. The popup menu is pretty unwieldy (IMHO) with big documents. Try ??T, then try this: http://www.cocoabits.com/TmCodeBrowser/ From lists.cpruitt at cliffpruitt.com Wed May 16 13:22:36 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Wed, 16 May 2007 09:22:36 -0400 Subject: [TxMt] CR/LF Line endings In-Reply-To: <7E3B0613-E021-4FF0-9497-7CC0702CA5D9@neologica.com.au> References: <49DEFB35-888C-4641-A515-77B04477ADCD@gmail.com> <2F319F7E-3B75-4AFA-BD20-81406E13C25F@gmail.com> <7E3B0613-E021-4FF0-9497-7CC0702CA5D9@neologica.com.au> Message-ID: I don't know if I'd clutter the document window itself with widgets for one-time settings (lack of widgets was one of the things that made me fall in love with TM). After all, its not something you're going to be changing over & over for a single document. I think maybe a keystroke that displays a sheet or something for document specific settings would be nice, or even an addition to the right click contextual menu. One thing I'd like to see is the ability to set line endings & encoding on a per-project basis. Some projects I work on require collaboration with windows users & others don't. It'd be nice to say that any new file in whatever project would use these attributes. On May 15, 2007, at 10:38 PM, Tim Mansour wrote: > And it would still be nice to have this as a widget in the document > window, like BBEdit does, along with the file encoding. From jaguarcy at gmail.com Wed May 16 14:44:49 2007 From: jaguarcy at gmail.com (=?UTF-8?Q?Constantinos_Neophytou_=E2=99=8E?=) Date: Wed, 16 May 2007 17:44:49 +0300 Subject: [TxMt] Unicode Documents in LaTeX Message-ID: <67DA8B18-B8AE-4610-AD9B-195DBFA5CEC3@gmail.com> Hari, you might be able to easily answer this, but I'm posting this question here in case someone else knows as well... I'm trying to typeset a document entirely in Greek. Document body, section/chapter headers, everything. I have TeXniscope installed, using teTeX (and relevant packages) installed through macports. \usepackage[utf8]{inputenc} at the top produces errors for every character in the document, in the form of: ./untitled.tex:50: Package inputenc Error: Unicode char \u8:? not set up for us with LaTeX. etc. I definitely came across this problem before, but I don't remember if I eventually solved it or if I found it couldn't be solved... Anything I can try to resolve this? (or typeset everything in... ugh.. M$ w*rd??) Thanks, Constantinos -- What's your Dream? Make it happen with www.dostpost.com -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 1288 bytes Desc: not available URL: From mail at hinterland.nu Wed May 16 16:05:06 2007 From: mail at hinterland.nu (Bruno) Date: Wed, 16 May 2007 17:05:06 +0100 Subject: [TxMt] Re: CSSEdit has nice interface References: <69439EC1-4DF9-4936-AD2D-3C7BBA16911D@gmail.com> Message-ID: >> >> I personally think that would be a great feature for Textmate to have, >> perhaps in a drawer on the other side from the Projects drawer. The >> popup menu is pretty unwieldy (IMHO) with big documents. > Try ??T Oh, man. And there was me thinking I had had a good idea. I had - but Allan had had it first AND implemented it! What a doofus I am. > http://www.cocoabits.com/TmCodeBrowser/ And this looks great too. Ok, thanks - I'm outta here. Bruno From devlist at samuraicoder.net Wed May 16 16:16:00 2007 From: devlist at samuraicoder.net (Takaaki Kato) Date: Thu, 17 May 2007 01:16:00 +0900 Subject: [TxMt] Japanese Translation of TM Manual with Caution Message-ID: <0395E65E-AF61-42A9-8778-CE0112C2B4B4@samuraicoder.net> Hi TextMaters, I recently started to translate TextMate manual into Japanese. Subversion repository is located at http://macromates.com/svn/Bundles/ trunk/Manual/pages . `en` directory is a Markdown version of Allan's original manual, which I use as a source of translation and as a template. We can, therefore, expect the same look of the translation, sharing the same graphics and layout if Allan can tweak his script a bit. `ja` is used for the translation. Except for a `_read_me.mdown` file, the directory will have the same file names. My plan is to translate the all contents quickly but roughly, and polish the translation later on. At the moment, there's no way to *compile* a book from the files. (Note: I haven't even translated 5% of the Manual yet.) **Caution** TextMate doesn't support CJK at this moment. Users including those who use [Fake CJK Support](http://macromates.com/blog/archives/ 2006/11/09/faking-cjk-support/) are encouraged *not* to open files other than `_read_me` file in the directory with TextMate. TextMate or the entire system may hang. You may be able to open, but converting the Markdown to HTML may also be a cause of this hang. From my personal experience, handling lots of CJK text prones to this issue. Since I can't find anyone else who is using TextMate with a large set of Japanese text, the problem may be personal. But for now, my suggestion is that you not use TextMate to open the files. I get a few emails saying I'm putting virus, but .mdown files are just plain text files. Takaaki -- Takaaki Kato http://samuraicoder.net From jay-txmt at soffian.org Wed May 16 18:28:43 2007 From: jay-txmt at soffian.org (Jay Soffian) Date: Wed, 16 May 2007 14:28:43 -0400 Subject: [TxMt] access to symbol via TM_ variable? Message-ID: I'd love to have a command that can put the current symbol on the clipboard, and this would be short-work if the current symbol where available via a TM_* variable, but I'm not seeing it. My particular use case is Python and I'd like to be able to easily construct ".." or ".". I see no way of getting this information, short of writing a python- specific parser to grab it (using TM_LINE_NUMBER to figure out where the cursor is). Am I missing something? j. From jan at prima.de Wed May 16 18:43:49 2007 From: jan at prima.de (Jan Lehnardt) Date: Wed, 16 May 2007 20:43:49 +0200 Subject: [TxMt] Unicode Documents in LaTeX In-Reply-To: <67DA8B18-B8AE-4610-AD9B-195DBFA5CEC3@gmail.com> References: <67DA8B18-B8AE-4610-AD9B-195DBFA5CEC3@gmail.com> Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Heya Constantinos, On Wed 16 May 2007, at 16 May 16:44, Constantinos Neophytou ? wrote: > \usepackage[utf8]{inputenc} at the top produces errors for every > character in the document, in the form of: > > ./untitled.tex:50: Package inputenc Error: Unicode char \u8:? not > set up for us with LaTeX. > > etc. I definitely came across this problem before, but I don't > remember if I eventually solved it or if I found it couldn't be > solved... Anything I can try to resolve this? (or typeset > everything in... ugh.. M$ w*rd??) I am writing a LaTeX document in UTF8 and \usepackage[utf8]{inputenc} does it for me. Do you have encoding of the file set to UTF8 as well? If not, try File->Re-Open With Encoding -> UTF8 HTH, Jan - -- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (Darwin) iD8DBQFGS1Dm7KW8t7uWVrARAgXFAKC4aYe9AaWYQrlTD4W/8BX9/Z3F/wCgzNk+ ZD5Bm5Td/SiQhfnMu5MzXPk= =tLkT -----END PGP SIGNATURE----- From jaguarcy at gmail.com Wed May 16 18:48:26 2007 From: jaguarcy at gmail.com (=?UTF-8?Q?Constantinos_Neophytou_=E2=99=8E?=) Date: Wed, 16 May 2007 21:48:26 +0300 Subject: [TxMt] Unicode Documents in LaTeX In-Reply-To: References: <67DA8B18-B8AE-4610-AD9B-195DBFA5CEC3@gmail.com> Message-ID: yes I do, all my files are utf8. On May 16, 2007, at 9:43 PM, Jan Lehnardt wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Heya Constantinos, > On Wed 16 May 2007, at 16 May 16:44, Constantinos Neophytou ? wrote: >> \usepackage[utf8]{inputenc} at the top produces errors for every >> character in the document, in the form of: >> >> ./untitled.tex:50: Package inputenc Error: Unicode char \u8:? not >> set up for us with LaTeX. >> >> etc. I definitely came across this problem before, but I don't >> remember if I eventually solved it or if I found it couldn't be >> solved... Anything I can try to resolve this? (or typeset >> everything in... ugh.. M$ w*rd??) > > I am writing a LaTeX document in UTF8 and > \usepackage[utf8]{inputenc} does it for me. Do > you have encoding of the file set to UTF8 as well? > If not, try File->Re-Open With Encoding -> UTF8 > > HTH, > Jan > - -- > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.6 (Darwin) > > iD8DBQFGS1Dm7KW8t7uWVrARAgXFAKC4aYe9AaWYQrlTD4W/8BX9/Z3F/wCgzNk+ > ZD5Bm5Td/SiQhfnMu5MzXPk= > =tLkT > -----END PGP SIGNATURE----- > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate -- What's your Dream? Make it happen with www.dostpost.com -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 1288 bytes Desc: not available URL: From skiadas at hanover.edu Wed May 16 19:24:36 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Wed, 16 May 2007 15:24:36 -0400 Subject: [TxMt] Unicode Documents in LaTeX In-Reply-To: <67DA8B18-B8AE-4610-AD9B-195DBFA5CEC3@gmail.com> References: <67DA8B18-B8AE-4610-AD9B-195DBFA5CEC3@gmail.com> Message-ID: On May 16, 2007, at 10:44 AM, Constantinos Neophytou ? wrote: > Hari, you might be able to easily answer this, but I'm posting this > question here in case someone else knows as well... > > I'm trying to typeset a document entirely in Greek. Document body, > section/chapter headers, everything. I have TeXniscope installed, > using teTeX (and relevant packages) installed through macports. > > \usepackage[utf8]{inputenc} at the top produces errors for every > character in the document, in the form of: > > ./untitled.tex:50: Package inputenc Error: Unicode char \u8:? not > set up for us with LaTeX. > > etc. I definitely came across this problem before, but I don't > remember if I eventually solved it or if I found it couldn't be > solved... Anything I can try to resolve this? (or typeset > everything in... ugh.. M$ w*rd??) > > Thanks, Sorry I don't really have any ideas off the top of my head. But if you send me a sample file, I'll see what I can do. I personally never use anything but ASCII characters in my LaTeX documents. You might also want to ask around in the mactex users list. ( http:// www.esm.psu.edu/mac-tex/mailinglist.shtml, you should also read http://www.esm.psu.edu/mac-tex/ ) > Constantinos Haris Skiadas Department of Mathematics and Computer Science Hanover College From james at grayproductions.net Wed May 16 19:24:51 2007 From: james at grayproductions.net (James Edward Gray II) Date: Wed, 16 May 2007 14:24:51 -0500 Subject: [TxMt] Issue with default task and RakeMate In-Reply-To: <3e21ad60705151255q6db87fe6k4e2f110fd92d5d92@mail.gmail.com> References: <3e21ad60705151255q6db87fe6k4e2f110fd92d5d92@mail.gmail.com> Message-ID: On May 15, 2007, at 2:55 PM, Steve Molitor wrote: > Apparently request_item is return an Array, so 'task == > DEFAULT_TASK' returns false. Yes, this is an inconsistency with the old API TextMate::UI replaced. I've converted the the new library to the old expected behavior and this seems to fix the problem. Thanks for pointing this out. James Edward Gray II From lists+textmate at bueno.imap.cc Wed May 16 19:59:50 2007 From: lists+textmate at bueno.imap.cc (=?UTF-8?Q?=C3=81lex_Bueno?=) Date: Wed, 16 May 2007 15:59:50 -0400 Subject: [TxMt] Japanese Translation of TM Manual with Caution In-Reply-To: <0395E65E-AF61-42A9-8778-CE0112C2B4B4@samuraicoder.net> References: <0395E65E-AF61-42A9-8778-CE0112C2B4B4@samuraicoder.net> Message-ID: <2551D3C5-D790-4A9F-9C1C-2943A8351015@bueno.imap.cc> Kato san, TM converts 010_preface.mdown to HTML without hanging at all. I don't write much Japanese in TM (only really within latex files written in English), but I've never had a problem like that. I also tried adding much more Japanese text into the markdown file, and it still worked well. Perhaps you're having a problem with fonts. I'm using a font similarly modified to this one (http://d.hatena.ne.jp/hetima/ 20061102/1162435711), along with the plugin hack. Alex On 16 May 2007, at 12:16 pm, Takaaki Kato wrote: > Hi TextMaters, > > I recently started to translate TextMate manual into Japanese. > Subversion repository is located at http://macromates.com/svn/ > Bundles/trunk/Manual/pages . > `en` directory is a Markdown version of Allan's original manual, > which I use as a source of translation and as a template. We can, > therefore, expect the same look of the translation, sharing the > same graphics and layout if Allan can tweak his script a bit. > > `ja` is used for the translation. Except for a `_read_me.mdown` > file, the directory will have the same file names. My plan is to > translate the all contents quickly but roughly, and polish the > translation later on. At the moment, there's no way to *compile* a > book from the files. (Note: I haven't even translated 5% of the > Manual yet.) > > **Caution** > TextMate doesn't support CJK at this moment. Users including those > who use [Fake CJK Support](http://macromates.com/blog/archives/ > 2006/11/09/faking-cjk-support/) are encouraged *not* to open files > other than `_read_me` file in the directory with TextMate. TextMate > or the entire system may hang. You may be able to open, but > converting the Markdown to HTML may also be a cause of this hang. > From my personal experience, handling lots of CJK text prones to > this issue. > > Since I can't find anyone else who is using TextMate with a large > set of Japanese text, the problem may be personal. But for now, my > suggestion is that you not use TextMate to open the files. I get a > few emails saying I'm putting virus, but .mdown files are just > plain text files. > > > Takaaki > -- > Takaaki Kato > http://samuraicoder.net > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From jaguarcy at gmail.com Wed May 16 20:10:16 2007 From: jaguarcy at gmail.com (=?UTF-8?Q?Constantinos_Neophytou_=E2=99=8E?=) Date: Wed, 16 May 2007 23:10:16 +0300 Subject: [TxMt] Unicode Documents in LaTeX In-Reply-To: References: <67DA8B18-B8AE-4610-AD9B-195DBFA5CEC3@gmail.com> Message-ID: Unfortunate. I'm attaching a sample of the tex document I'm working on... Problem is I don't know if it *should* work or not, i.e. if I should be looking in my system configuration... -------------- next part -------------- A non-text attachment was scrubbed... Name: untitled.tex Type: application/octet-stream Size: 1222 bytes Desc: not available URL: -------------- next part -------------- On May 16, 2007, at 10:24 PM, Charilaos Skiadas wrote: > > On May 16, 2007, at 10:44 AM, Constantinos Neophytou ? wrote: > >> Hari, you might be able to easily answer this, but I'm posting >> this question here in case someone else knows as well... >> >> I'm trying to typeset a document entirely in Greek. Document body, >> section/chapter headers, everything. I have TeXniscope installed, >> using teTeX (and relevant packages) installed through macports. >> >> \usepackage[utf8]{inputenc} at the top produces errors for every >> character in the document, in the form of: >> >> ./untitled.tex:50: Package inputenc Error: Unicode char \u8:? not >> set up for us with LaTeX. >> >> etc. I definitely came across this problem before, but I don't >> remember if I eventually solved it or if I found it couldn't be >> solved... Anything I can try to resolve this? (or typeset >> everything in... ugh.. M$ w*rd??) >> >> Thanks, > > Sorry I don't really have any ideas off the top of my head. But if > you send me a sample file, I'll see what I can do. I personally > never use anything but ASCII characters in my LaTeX documents. You > might also want to ask around in the mactex users list. ( http:// > www.esm.psu.edu/mac-tex/mailinglist.shtml, you should also read > http://www.esm.psu.edu/mac-tex/ ) > >> Constantinos > > Haris Skiadas > Department of Mathematics and Computer Science > Hanover College > > > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate -- What's your Dream? Make it happen with www.dostpost.com -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 1288 bytes Desc: not available URL: From devlist at samuraicoder.net Wed May 16 20:25:59 2007 From: devlist at samuraicoder.net (Takaaki Kato) Date: Thu, 17 May 2007 05:25:59 +0900 Subject: [TxMt] Japanese Translation of TM Manual with Caution In-Reply-To: <2551D3C5-D790-4A9F-9C1C-2943A8351015@bueno.imap.cc> References: <0395E65E-AF61-42A9-8778-CE0112C2B4B4@samuraicoder.net> <2551D3C5-D790-4A9F-9C1C-2943A8351015@bueno.imap.cc> Message-ID: <90556736-38FE-4B35-9BFC-CA555300904A@samuraicoder.net> On May 17, 2007, at 4:59 AM, ?lex Bueno wrote: > Kato san, > > TM converts 010_preface.mdown to HTML without hanging at all. I > don't write much Japanese in TM (only really within latex files > written in English), but I've never had a problem like that. I also > tried adding much more Japanese text into the markdown file, and it > still worked well. Perhaps you're having a problem with fonts. I'm > using a font similarly modified to this one (http://d.hatena.ne.jp/ > hetima/20061102/1162435711), along with the plugin hack. > > Alex Thanks for your report, Alex. I myself still have this issue. So let me use the "caution" in read me file for a while. Takaaki From throw-away-1 at macromates.com Wed May 16 20:24:21 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Wed, 16 May 2007 22:24:21 +0200 Subject: [TxMt] Unicode Documents in LaTeX In-Reply-To: References: <67DA8B18-B8AE-4610-AD9B-195DBFA5CEC3@gmail.com> Message-ID: On 16. May 2007, at 22:10, Constantinos Neophytou ? wrote: > Unfortunate. I'm attaching a sample of the tex document I'm working > on... Problem is I don't know if it *should* work or not, i.e. if I > should be looking in my system configuration... Not having looked at the document, but LaTeX only has limited mappings of non-ASCII characters to its own font system, thus even with UTF-8, you?ll find that you can?t use much unicode with latex. But switching to xetex/xelatex will improve that significantly, since it uses the font (and layout) system of OS X. From throw-away-1 at macromates.com Wed May 16 20:27:01 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Wed, 16 May 2007 22:27:01 +0200 Subject: [TxMt] Japanese Translation of TM Manual with Caution In-Reply-To: <90556736-38FE-4B35-9BFC-CA555300904A@samuraicoder.net> References: <0395E65E-AF61-42A9-8778-CE0112C2B4B4@samuraicoder.net> <2551D3C5-D790-4A9F-9C1C-2943A8351015@bueno.imap.cc> <90556736-38FE-4B35-9BFC-CA555300904A@samuraicoder.net> Message-ID: On 16. May 2007, at 22:25, Takaaki Kato wrote: >> [...] > Thanks for your report, Alex. I myself still have this issue. So > let me use the "caution" in read me file for a while. Try this from Terminal and reboot afterwards: sudo rm -rf /Library/Caches/com.apple.ATS I?ve had many crash or ?taking down the system? reports caused by a corrupt font cache. From fredb7 at gmail.com Wed May 16 21:16:58 2007 From: fredb7 at gmail.com (Fred B) Date: Wed, 16 May 2007 23:16:58 +0200 Subject: [TxMt] Mercurial Bundle: Diff Commands In-Reply-To: <464AB2F1.1040107@unorganized.net> References: <464AB2F1.1040107@unorganized.net> Message-ID: <9c31463d0705161416v1ae0a561u86e6d17a83764775@mail.gmail.com> On 5/16/07, Eike Bernhardt wrote: > Hello, > > The mercurial diff commands always use the currently active file in the > diff commands. > > Changing the hg_diff.rb file enables me to select a folder and get a > diff for everything under it: Thanks for the patch, I just committed it. > While I'm here .. I had to change all diff commands do something like > (...) > since without the iconv call I'd get empty diff windows (probably > because of incorrectly encoded german special chars inside the generated > diff) -- but I'm not shure if this is just a local problem. I never had a problem like that (although I use accented chars). Anyway, changes applied too. Thanks for the feedback. I you have any ideas/improvements you want to discuss, feel free to contact me off-list. -- FredB From throw-away-1 at macromates.com Wed May 16 21:33:38 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Wed, 16 May 2007 23:33:38 +0200 Subject: [TxMt] Mercurial Bundle: Diff Commands In-Reply-To: <464AB2F1.1040107@unorganized.net> References: <464AB2F1.1040107@unorganized.net> Message-ID: On 16. May 2007, at 09:29, Eike Bernhardt wrote: > [...] > since without the iconv call I'd get empty diff windows (probably > because of incorrectly encoded german special chars inside the > generated > diff) -- but I'm not shure if this is just a local problem. What encoding do you use for your source files? The official party line is that all TM commands which work with files ?on disk? expect these to be in UTF-8. This includes stuff like diff?ing (via the SCM system), finding TODO tags in your project, etc. It also includes output from programs you run in TextMate, e.g. the various ScriptMate derivatives (PerlMate, RubyMate, PyMate, etc.), the Xcode target runner, etc. Having all these commands handle encoding is quite a lot of complexity (and non-trivial, since encodings (other than the various UTF-n variants) can?t be determined safely by just looking at the file). From jan at prima.de Wed May 16 21:38:16 2007 From: jan at prima.de (Jan Lehnardt) Date: Wed, 16 May 2007 23:38:16 +0200 Subject: [TxMt] Unicode Documents in LaTeX In-Reply-To: References: <67DA8B18-B8AE-4610-AD9B-195DBFA5CEC3@gmail.com> Message-ID: <0787E80F-0DD8-4F6D-B24A-0691D7206D95@prima.de> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Wed 16 May 2007, at 16 May 22:24, Allan Odgaard wrote: > But switching to xetex/xelatex will improve that significantly, > since it uses the font (and layout) system of OS X. Beware that this means that you can't use pdflatex's advanced features (like microtype or pdfpages) which is a dealbreaker for me. Cheers, Jan - -- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (Darwin) iD8DBQFGS3nI7KW8t7uWVrARArHGAJ9BuJe2Pz9ddINMCKIR1RYNmH4sZgCgqyNy Yh7ZFsd/3z/GfM+taCD3anc= =9MJo -----END PGP SIGNATURE----- From tim at neologica.com.au Wed May 16 21:46:02 2007 From: tim at neologica.com.au (Tim Mansour) Date: Thu, 17 May 2007 07:46:02 +1000 Subject: [TxMt] CR/LF Line endings In-Reply-To: References: <49DEFB35-888C-4641-A515-77B04477ADCD@gmail.com> <2F319F7E-3B75-4AFA-BD20-81406E13C25F@gmail.com> <7E3B0613-E021-4FF0-9497-7CC0702CA5D9@neologica.com.au> Message-ID: On 16/05/2007, at 11:22 pm, Cliff Pruitt wrote: > I don't know if I'd clutter the document window itself with widgets > for one-time settings (lack of widgets was one of the things that > made me fall in love with TM). After all, its not something you're > going to be changing over & over for a single document. That's true Cliff, but there are two uses for a widget: (1) perform an action, (2) provide feedback. Currently there's no quick visual way to tell what line endings or encoding a file has, and that's one thing I'd like. On the other hand, the "Tab Size" that's currently in the status bar is of no use to me at all. I agree with you wholeheartedly that TM should remain as clutter-free as possible, but the elements that constitute what clutter *is* there should be my choice. -- Tim Mansour From skiadas at hanover.edu Wed May 16 22:42:33 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Wed, 16 May 2007 18:42:33 -0400 Subject: [TxMt] Unicode Documents in LaTeX In-Reply-To: References: <67DA8B18-B8AE-4610-AD9B-195DBFA5CEC3@gmail.com> Message-ID: <36EDADD2-A040-4484-836B-D610F6D25C23@hanover.edu> Yeah I can't compile it either. If you have XeLaTeX installed, you might try to use it. To do that, add the following as the first line in your file: %!TEX TS-program = xelatex and remove the inputenc line. I actually don't have xelatex installed personally, so I can't really test this either. But if you have it or install it, then you should be able to make that work. As Allan said, LaTeX is a bit picky about what characters it allows. Another thing you can do is use the babel file, and write in "greeklish", like in the attached file, which should compile for you just fine. Not ideal I know, though it allows you to easily switch between english and greek text (look at the babel package for more info. Invest in a copy of the LaTeX Companion, 2nd edition, if you don't already have it. If you do, look at chapter 9.) It should probably not be too difficult to write a small Ruby script to convert from Greek to Greeklish and back, which might make things a bit better, i.e. you could write in Greek and then at the last moment convert things over to Greeklish. Of course we would need to be careful and make sure it skips commands etc. But if XeLaTeX is an option for you, I'd go with that. -------------- next part -------------- A non-text attachment was scrubbed... Name: untitled.tex Type: application/octet-stream Size: 1131 bytes Desc: not available URL: -------------- next part -------------- Haris Skiadas Department of Mathematics and Computer Science Hanover College On May 16, 2007, at 4:10 PM, Constantinos Neophytou ? wrote: > Unfortunate. I'm attaching a sample of the tex document I'm working > on... Problem is I don't know if it *should* work or not, i.e. if I > should be looking in my system configuration... > > > > On May 16, 2007, at 10:24 PM, Charilaos Skiadas wrote: > >> >> On May 16, 2007, at 10:44 AM, Constantinos Neophytou ? wrote: >> >>> Hari, you might be able to easily answer this, but I'm posting >>> this question here in case someone else knows as well... >>> >>> I'm trying to typeset a document entirely in Greek. Document >>> body, section/chapter headers, everything. I have TeXniscope >>> installed, using teTeX (and relevant packages) installed through >>> macports. >>> >>> \usepackage[utf8]{inputenc} at the top produces errors for every >>> character in the document, in the form of: >>> >>> ./untitled.tex:50: Package inputenc Error: Unicode char \u8:? not >>> set up for us with LaTeX. >>> >>> etc. I definitely came across this problem before, but I don't >>> remember if I eventually solved it or if I found it couldn't be >>> solved... Anything I can try to resolve this? (or typeset >>> everything in... ugh.. M$ w*rd??) >>> >>> Thanks, >> >> Sorry I don't really have any ideas off the top of my head. But if >> you send me a sample file, I'll see what I can do. I personally >> never use anything but ASCII characters in my LaTeX documents. You >> might also want to ask around in the mactex users list. ( http:// >> www.esm.psu.edu/mac-tex/mailinglist.shtml, you should also read >> http://www.esm.psu.edu/mac-tex/ ) >> >>> Constantinos >> >> Haris Skiadas >> Department of Mathematics and Computer Science >> Hanover College From roberto+textmate at keltia.freenix.fr Wed May 16 22:58:32 2007 From: roberto+textmate at keltia.freenix.fr (Ollivier Robert) Date: Thu, 17 May 2007 00:58:32 +0200 Subject: [TxMt] Unicode Documents in LaTeX In-Reply-To: References: <67DA8B18-B8AE-4610-AD9B-195DBFA5CEC3@gmail.com> Message-ID: <20070516225832.GA4722@keltia.freenix.fr> According to Jan Lehnardt: > I am writing a LaTeX document in UTF8 and > \usepackage[utf8]{inputenc} does it for me. Do > you have encoding of the file set to UTF8 as well? > If not, try File->Re-Open With Encoding -> UTF8 Here is what I use: % UTF-8 stuff \usepackage[notipa]{ucs} \usepackage[utf8x]{inputenc} \usepackage[T1]{fontenc} \usepackage{textcomp} -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto at keltia.freenix.fr Darwin sidhe.keltia.net Kernel Version 8.9.1: Thu Feb 22 20:55:00 PST 2007 i386 From skiadas at hanover.edu Thu May 17 00:22:32 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Wed, 16 May 2007 20:22:32 -0400 Subject: [TxMt] Unicode Documents in LaTeX In-Reply-To: <20070516225832.GA4722@keltia.freenix.fr> References: <67DA8B18-B8AE-4610-AD9B-195DBFA5CEC3@gmail.com> <20070516225832.GA4722@keltia.freenix.fr> Message-ID: <26ECF31B-9730-43B3-A2AF-B5D11C93A3DC@hanover.edu> On May 16, 2007, at 6:58 PM, Ollivier Robert wrote: > According to Jan Lehnardt: >> I am writing a LaTeX document in UTF8 and >> \usepackage[utf8]{inputenc} does it for me. Do >> you have encoding of the file set to UTF8 as well? >> If not, try File->Re-Open With Encoding -> UTF8 > > Here is what I use: > > % UTF-8 stuff > \usepackage[notipa]{ucs} > \usepackage[utf8x]{inputenc} > \usepackage[T1]{fontenc} > \usepackage{textcomp} That indeed seems to do it for the file that Constantinos is working on, once you add the babel stuff for greek. So this preamble would do it (notice the greek option in the documentclass): \documentclass[a4paper,12pt,greek]{report} % UTF-8 stuff \usepackage[notipa]{ucs} \usepackage[utf8x]{inputenc} \usepackage[T1]{fontenc} \usepackage{textcomp} \usepackage{babel} Haris Skiadas Department of Mathematics and Computer Science Hanover College From devlist at samuraicoder.net Thu May 17 01:33:32 2007 From: devlist at samuraicoder.net (Takaaki Kato) Date: Thu, 17 May 2007 10:33:32 +0900 Subject: [TxMt] Japanese Translation of TM Manual with Caution In-Reply-To: References: <0395E65E-AF61-42A9-8778-CE0112C2B4B4@samuraicoder.net> <2551D3C5-D790-4A9F-9C1C-2943A8351015@bueno.imap.cc> <90556736-38FE-4B35-9BFC-CA555300904A@samuraicoder.net> Message-ID: <0F07AA32-93B4-48D1-AB20-FDC95B241268@samuraicoder.net> On May 17, 2007, at 5:27 AM, Allan Odgaard wrote: > Try this from Terminal and reboot afterwards: > > sudo rm -rf /Library/Caches/com.apple.ATS Yeah. That may be the cause. Takaaki From mail at hinterland.nu Thu May 17 10:12:47 2007 From: mail at hinterland.nu (Bruno) Date: Thu, 17 May 2007 11:12:47 +0100 Subject: [TxMt] Rubymate-style output for shell Message-ID: Hi. This may be an another obvious thing I have missed, but: Running Ruby produces beautiful output, through Rubymate. But running shell commands splats the output into a plain window, with output and errors thrown in together, and line endings ignored. Is there any way to pipe shell output through Rubymate, or any similar functionality for the shell? --- Bruno From ciawal at gmail.com Thu May 17 10:37:06 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Thu, 17 May 2007 11:37:06 +0100 Subject: [TxMt] Rubymate-style output for shell In-Reply-To: References: Message-ID: <8071940C-8BF2-4DEE-8981-A4B878A267F4@gmail.com> On 17 May 2007, at 11:12, Bruno wrote: > running shell commands splats the output into a plain window, with > output and errors thrown in together, and line endings ignored. How are you running the command? Have you set the language to ?Shell Script (Bash)? and used ?R? You should get a nice HTML output window. -------------- next part -------------- An HTML attachment was scrubbed... URL: From throw-away-1 at macromates.com Thu May 17 11:19:23 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Thu, 17 May 2007 13:19:23 +0200 Subject: [TxMt] access to symbol via TM_ variable? In-Reply-To: References: Message-ID: <5FEE7BEE-23BD-4E57-BCC8-5F409029A83D@macromates.com> On 16. May 2007, at 20:28, Jay Soffian wrote: > I'd love to have a command that can put the current symbol on the > clipboard, and this would be short-work if the current symbol where > available via a TM_* variable, but I'm not seeing it. > > My particular use case is Python and I'd like to be able to easily > construct ".." or ".". So you would need more than just the symbol, thus you would need to grep the document (from stdin) anyway? > I see no way of getting this information, short of writing a python- > specific parser to grab it (using TM_LINE_NUMBER to figure out > where the cursor is). Am I missing something? It is not available. From mail at hinterland.nu Thu May 17 13:45:30 2007 From: mail at hinterland.nu (Bruno) Date: Thu, 17 May 2007 14:45:30 +0100 Subject: [TxMt] Re: Rubymate-style output for shell References: <8071940C-8BF2-4DEE-8981-A4B878A267F4@gmail.com> Message-ID: >> running shell commands splats the output into a plain window, with >> output and errors thrown in together, and line endings ignored. > How are you running the command? cmd-R = Shell->Execute Current File in Window. if [ ! -x "${TM_FILEPATH}" ] then echo "Cannot execute '${TM_FILEPATH}' : permission error" else "${TM_FILEPATH}" fi it outputs to an HTML window, but it ain't pretty. --- Bruno From throw-away-1 at macromates.com Thu May 17 14:05:35 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Thu, 17 May 2007 16:05:35 +0200 Subject: [TxMt] Re: Rubymate-style output for shell In-Reply-To: References: <8071940C-8BF2-4DEE-8981-A4B878A267F4@gmail.com> Message-ID: <209B1A62-88D3-469D-AB58-2CA447B9CA62@macromates.com> On 17. May 2007, at 15:45, Bruno wrote: >>> running shell commands splats the output into a plain window, with >>> output and errors thrown in together, and line endings ignored. >> How are you running the command? > > cmd-R = Shell->Execute Current File in Window. > [...] > it outputs to an HTML window, but it ain't pretty. Today it?s actually ?Shell Script ? Run Script? and the code has been updated since the version you pasted. Try http://macromates.com/wiki/Troubleshooting/RevertToDefaultBundles From fredb7 at gmail.com Thu May 17 14:43:40 2007 From: fredb7 at gmail.com (Fred B) Date: Thu, 17 May 2007 16:43:40 +0200 Subject: [TxMt] Mercurial Bundle: Diff Commands In-Reply-To: References: <464AB2F1.1040107@unorganized.net> Message-ID: <9c31463d0705170743p426058e2ybe9a03383e15767c@mail.gmail.com> On 5/16/07, Allan Odgaard wrote: > On 16. May 2007, at 09:29, Eike Bernhardt wrote: > > > [...] > > since without the iconv call I'd get empty diff windows (probably > > because of incorrectly encoded german special chars inside the > > generated > > diff) -- but I'm not shure if this is just a local problem. > > What encoding do you use for your source files? > > The official party line is that all TM commands which work with files > "on disk" expect these to be in UTF-8. > Ok. Removed the iconv stuff. Use UTF-8 or die is fine for me. ;) From mail at hinterland.nu Thu May 17 14:46:14 2007 From: mail at hinterland.nu (Bruno) Date: Thu, 17 May 2007 15:46:14 +0100 Subject: [TxMt] Re: Rubymate-style output for shell References: <209B1A62-88D3-469D-AB58-2CA447B9CA62@macromates.com> Message-ID: > Try http://macromates.com/wiki/Troubleshooting/RevertToDefaultBundles Thank you. I checked out the repository and removed my 'Pristine Copies', but the new Shell Script bundle didn't show up until I deleted UnixShell inside my own Bundles directory. I have to say that I find Bundle management a little hard to understand - but I guess most TM users are more geeky than me. :-) -- Bruno From jay-txmt at soffian.org Thu May 17 15:09:46 2007 From: jay-txmt at soffian.org (Jay Soffian) Date: Thu, 17 May 2007 11:09:46 -0400 Subject: [TxMt] access to symbol via TM_ variable? In-Reply-To: <5FEE7BEE-23BD-4E57-BCC8-5F409029A83D@macromates.com> References: <5FEE7BEE-23BD-4E57-BCC8-5F409029A83D@macromates.com> Message-ID: On May 17, 2007, at 7:41 AM, Allan Odgaard wrote: > So you would need more than just the symbol, thus you would need to > grep the document (from stdin) anyway? Well, I was thinking that TM_CURRENT_SYMBOL could be either a . or / separated path to the current symbol, where TextMate could use indentation in the current symbol to determine its nesting. Obviously for this to work properly requires a sane symbolTransformation. Perhaps even a separate transformation list is appropriate to allow bundle designers control over what TM_CURRENT_SYMBOL is set to. Anyway, I've attached the two commands I setup for Python. I find them highly useful in any case. :-) j. -------------- next part -------------- A non-text attachment was scrubbed... Name: Show Symbol.tmCommand Type: application/octet-stream Size: 1290 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Copy Symbol.tmCommand Type: application/octet-stream Size: 1336 bytes Desc: not available URL: From normjenson at comcast.net Thu May 17 15:36:14 2007 From: normjenson at comcast.net (Norman Jenson) Date: Thu, 17 May 2007 09:36:14 -0600 Subject: [TxMt] Blogging Bundle Message-ID: <3F3DF280-430B-41C7-99E2-F93E63FB24C3@comcast.net> Is it possible to set the status using the blogging bundle for MovableType weblogs? I'd like to be able to set the status to scheduled occasionally. From gerti-textmate at bitart.com Thu May 17 16:14:42 2007 From: gerti-textmate at bitart.com (Gerd Knops) Date: Thu, 17 May 2007 11:14:42 -0500 Subject: [TxMt] Subversion bundle and fmdiff Message-ID: <8A072F17-4FC8-4BA5-86AC-55E85EE4162C@bitart.com> Hi All, I am trying to use FileMerge for the 'Diff with...' commands in the Subversion bundle. The help file says to set $TM_SVN_DIFF_CMD to fmdiff. I guess that should be fmdiff.sh, which needs to be downloaded and installed first from elsewhere (help should mention that). Anyhow after I did set that up and run a diff, it does open in FileMerge, but the "Accessing Subversion Repository" panel in TextMate sticks around until FileMerge is quit. Am I doing something wrong, or is that a problem with the bundle? Thanks Gerd From brett at circlesixdesign.com Thu May 17 20:41:21 2007 From: brett at circlesixdesign.com (Brett Terpstra) Date: Thu, 17 May 2007 15:41:21 -0500 Subject: [TxMt] Strange Error Message-ID: I have a user of my FlickrMate bundle getting the following error... error 63 (File name too long) opening sem /tm_dialog async/ > nilsborchers/4. > tm_dialog (async_update): Window '4' doesn't exist > /Applications/TextMate.app/Contents/SharedSupport/Support/lib/ > dialog.rb:83:in /bin/bash: -c: line 1: unexpected EOF while looking > for matching `'' > /bin/bash: -c: line 4: syntax error: unexpected end of filecall' > from /Applications/TextMate.app/Contents/SharedSupport/ Support/lib/ > progress.rb:36:in /bin/bash: -c: line 1: unexpected EOF while > looking for matching `'' > /bin/bash: -c: line 3: syntax error: unexpected end of filecall' > from /Applications/TextMate.app/Contents/SharedSupport/ Support/lib/ > progress.rb:49:in /bin/bash: -c: line 1: unexpected EOF while > looking for matching `'' > /bin/bash: -c: line 3: syntax error: unexpected end of filefork' > from /Applications/TextMate.app/Contents/SharedSupport/ Support/lib/ > progress.rb:47:in /bin/bash: -c: line 1: unexpected EOF while > looking for matching `'' > /bin/bash: -c: line 3: syntax error: unexpected end of filedialog' > from /Applications/TextMate.app/Contents/SharedSupport/ Support/lib/ > progress.rb:40:in It's occurring during the "Browse Flickr Photos" command. If anyone is familiar with that particular error, could you please let me know what it might be related to? Thanks, Brett From brett at circlesixdesign.com Thu May 17 21:02:35 2007 From: brett at circlesixdesign.com (Brett Terpstra) Date: Thu, 17 May 2007 16:02:35 -0500 Subject: [TxMt] Upload MP3 Drag Command? In-Reply-To: References: <4B8CD1D2-7132-4B9F-B44F-DDD9AF5405E6@grahamenglish.com> Message-ID: <47A7D4ED-B57F-4E51-8431-FAA6A61258DD@circlesixdesign.com> I have the command I wrote a while back for uploading binaries using xmlrpc, but never did solve the strange problems I was having with some larger files. I'll dig it up and see if I can do anything on a new server. Brett On May 14, 2007, at 4:12 PM, Allan Odgaard wrote: > On 13. May 2007, at 23:55, Graham English wrote: > >> Has anyone created an upload command when mp3s are dragged onto a >> document? This would be a great podcasting feature for the >> blogging bundle. > > The same would be the case for binary files, or well, files in > general. > > I don?t know if you intend to insert special markup for the > uploaded MP3. Come to think of it, it might be a good idea with > just one catch-all drag command, and then let it have an > associative array of extension ? markup template. > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From throw-away-1 at macromates.com Thu May 17 22:02:19 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 18 May 2007 00:02:19 +0200 Subject: [TxMt] Strange Error In-Reply-To: References: Message-ID: <58769F50-FBFE-47A5-AF0C-DC1070E06380@macromates.com> On 17. May 2007, at 22:41, Brett Terpstra wrote: > I have a user of my FlickrMate bundle getting the following error... > > error 63 (File name too long) opening sem /tm_dialog async/ > nilsborchers/4. > [...] This was a bug (sort of) with tm_dialog -- ask him to update to Cutting-Edge, and he should get hte fix. It manifests itself when the username is 12 characters or more. From jacobolus at gmail.com Thu May 17 22:49:18 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Thu, 17 May 2007 18:49:18 -0400 Subject: [TxMt] new shirt ideas/slogans Message-ID: <464CDBEE.9010308@gmail.com> Hello friends, TextMate desperately needs some updated T-shirts, but behind every great T shirt is a great T shirt idea. So, even if you have no artistic talent whatsoever, you can think up ideas for slogans and designs. And even slogans that don't make it onto shirts could probably be useful for something. Anyway, once some good ideas have been offered up, it will be possible to make some design mockups based on those. I'm happy to spend a bit of time sometime doing some very basic designery stuff, though I'm hardly an expert, and other more qualified designers would of course be welcome to draw up shirts too. But first let's see if as a group we can't come up with some killer slogans. Anyone who contributes an idea/slogan, or a design, which ends up being printed on the shirts gets one free (says Allan; I'm a poor student and can't afford such things ;) To start off, I was thinking it could be something along the lines of "check and mate". -Jacob Rus From spicyjalapeno at gmail.com Thu May 17 22:56:00 2007 From: spicyjalapeno at gmail.com (spicyjalapeno at gmail.com) Date: Thu, 17 May 2007 15:56:00 -0700 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <464CDBEE.9010308@gmail.com> References: <464CDBEE.9010308@gmail.com> Message-ID: You've been Mated! -- ben.alpert From tylerhall at gmail.com Thu May 17 23:02:37 2007 From: tylerhall at gmail.com (Tyler Hall) Date: Thu, 17 May 2007 18:02:37 -0500 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> Message-ID: "TextMate is BBetter" On 5/17/07, spicyjalapeno at gmail.com wrote: > You've been Mated! > > -- > ben.alpert > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From doug at dougstewart.org Thu May 17 23:18:01 2007 From: doug at dougstewart.org (Douglas Stewart) Date: Thu, 17 May 2007 17:18:01 -0600 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> Message-ID: I do like "TextMate is BBetter" On May 17, 2007, at 5:02 PM, Tyler Hall wrote: > "TextMate is BBetter" > > On 5/17/07, spicyjalapeno at gmail.com wrote: >> You've been Mated! >> >> -- >> ben.alpert >> >> _____________________________________________________________________ >> _ >> For new threads USE THIS: textmate at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From ryanwilcox at mac.com Thu May 17 23:24:05 2007 From: ryanwilcox at mac.com (Ryan Wilcox) Date: Thu, 17 May 2007 19:24:05 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <464CDBEE.9010308@gmail.com> References: <464CDBEE.9010308@gmail.com> Message-ID: <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> On May 17, 2007, at 6:49 PM, Jacob Rus wrote: > But first let's see if as a group we can't come up with some killer > slogans. Ninjas Help Me: I TextMate _Ryan Wilcox From throw-away-1 at macromates.com Thu May 17 23:33:39 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 18 May 2007 01:33:39 +0200 Subject: [TxMt] access to symbol via TM_ variable? In-Reply-To: References: <5FEE7BEE-23BD-4E57-BCC8-5F409029A83D@macromates.com> Message-ID: <5D020BE6-934F-413C-ABAB-DB2DA58F7E82@macromates.com> On 17. May 2007, at 17:09, Jay Soffian wrote: > On May 17, 2007, at 7:41 AM, Allan Odgaard wrote: >> So you would need more than just the symbol, thus you would need >> to grep the document (from stdin) anyway? > Well, I was thinking that TM_CURRENT_SYMBOL could be either a . > or / separated path to the current symbol, where TextMate could use > indentation in the current symbol to determine its nesting. > Obviously for this to work properly requires a sane > symbolTransformation. Perhaps even a separate transformation list > is appropriate to allow bundle designers control over what > TM_CURRENT_SYMBOL is set to. Yeah, this won?t really work ;) But there will be something else (in 2.0) that could be used to gather this bread crumb trail for use in commands. From brett at circlesixdesign.com Thu May 17 23:33:52 2007 From: brett at circlesixdesign.com (Brett Terpstra) Date: Thu, 17 May 2007 18:33:52 -0500 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> References: <464CDBEE.9010308@gmail.com> <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> Message-ID: <8EB81F18-7701-4CB8-A070-4758C4610954@circlesixdesign.com> Real Coders Mate For Life (going for the discovery channel approach, not a pro-life/pro-choice debate...) -Brett On May 17, 2007, at 6:24 PM, Ryan Wilcox wrote: > > On May 17, 2007, at 6:49 PM, Jacob Rus wrote: >> But first let's see if as a group we can't come up with some >> killer slogans. > > > Ninjas Help Me: I TextMate > > _Ryan Wilcox > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From graham.ashton at gmail.com Thu May 17 23:36:54 2007 From: graham.ashton at gmail.com (Graham Ashton) Date: Fri, 18 May 2007 00:36:54 +0100 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> References: <464CDBEE.9010308@gmail.com> <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> Message-ID: <7438eebe0705171636l439cba91jcf48379bf266045d@mail.gmail.com> On May 17, 2007, at 6:49 PM, Jacob Rus wrote: > But first let's see if as a group we can't come up with some killer > slogans. "Text" on the front "Mate" on the back Maybe a logo on the left sleeve. I might even wear it, mainly because very few people would get it, and I wouldn't be labelled a sad geek (maybe I am a sad geek, but I don't need to advertise it). From daryl.spitzer at gmail.com Thu May 17 23:42:33 2007 From: daryl.spitzer at gmail.com (Daryl Spitzer) Date: Thu, 17 May 2007 16:42:33 -0700 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> References: <464CDBEE.9010308@gmail.com> <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> Message-ID: I helped make it suck less. On 5/17/07, Ryan Wilcox wrote: > > On May 17, 2007, at 6:49 PM, Jacob Rus wrote: > > But first let's see if as a group we can't come up with some killer > > slogans. > > > Ninjas Help Me: I TextMate > > _Ryan Wilcox > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From chip.cullen at gmail.com Fri May 18 00:22:37 2007 From: chip.cullen at gmail.com (Chip Cullen) Date: Fri, 18 May 2007 09:22:37 +0900 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> Message-ID: I liked "TextMate is BBetter", but I thought you could add to a it a little: Or is that too uber-geek? it's just HTML. I was also thinking: TextMate - GUIs are for wusses On 5/18/07, Daryl Spitzer wrote: > I helped make it suck less. > > > On 5/17/07, Ryan Wilcox wrote: > > > > On May 17, 2007, at 6:49 PM, Jacob Rus wrote: > > > But first let's see if as a group we can't come up with some killer > > > slogans. > > > > > > Ninjas Help Me: I TextMate > > > > _Ryan Wilcox > > > > > > ______________________________________________________________________ > > For new threads USE THIS: textmate at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From andy at hexten.net Fri May 18 00:38:07 2007 From: andy at hexten.net (Andy Armstrong) Date: Fri, 18 May 2007 01:38:07 +0100 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> Message-ID: <8C3613C5-C956-42F7-8FA6-EEC5C1AD08D5@hexten.net> On 18 May 2007, at 01:22, Chip Cullen wrote: > I liked "TextMate is BBetter", but I thought you could add to a it > a little: > > > > Or is that too uber-geek? it's just HTML. No, uber-geek would be valid XML :) -- Andy Armstrong, hexten.net From throw-away-1 at macromates.com Fri May 18 00:52:45 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 18 May 2007 02:52:45 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> Message-ID: <0E4725BC-3A18-43F2-91CF-03E6F530C617@macromates.com> On 18. May 2007, at 02:22, Chip Cullen wrote: > I liked "TextMate is BBetter", but I thought you could add to a it > a little: [...] I think I?ve had enough fun on Rich?s expense, so I am going to stay away from things that hint at his product or company. From jasper at logt.nu Fri May 18 01:01:54 2007 From: jasper at logt.nu (Jasper van der Meulen) Date: Fri, 18 May 2007 03:01:54 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <8EB81F18-7701-4CB8-A070-4758C4610954@circlesixdesign.com> References: <464CDBEE.9010308@gmail.com> <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> <8EB81F18-7701-4CB8-A070-4758C4610954@circlesixdesign.com> Message-ID: <21B07A4E-0AD7-42FF-A0E2-1A246D3EE5D7@logt.nu> Always support from my Mate's Regards J. On May 18, 2007, at 1:33 AM, Brett Terpstra wrote: > Real Coders Mate For Life > > (going for the discovery channel approach, not a pro-life/pro- > choice debate...) > > -Brett > > On May 17, 2007, at 6:24 PM, Ryan Wilcox wrote: > >> >> On May 17, 2007, at 6:49 PM, Jacob Rus wrote: >>> But first let's see if as a group we can't come up with some >>> killer slogans. >> >> >> Ninjas Help Me: I TextMate >> >> _Ryan Wilcox >> >> >> _____________________________________________________________________ >> _ >> For new threads USE THIS: textmate at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate -------------- next part -------------- An HTML attachment was scrubbed... URL: From james at grayproductions.net Fri May 18 02:50:54 2007 From: james at grayproductions.net (James Edward Gray II) Date: Thu, 17 May 2007 21:50:54 -0500 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> References: <464CDBEE.9010308@gmail.com> <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> Message-ID: <350D92BA-5FCE-4E7B-902D-A4B6CD8F2BCD@grayproductions.net> On May 17, 2007, at 6:24 PM, Ryan Wilcox wrote: > > On May 17, 2007, at 6:49 PM, Jacob Rus wrote: >> But first let's see if as a group we can't come up with some >> killer slogans. > > > Ninjas Help Me: I TextMate The back of the TextMate book still haunts me. ;) "Who doesn't want their very own robot ninjas?" James Edward Gray II From tylerhall at gmail.com Fri May 18 02:53:55 2007 From: tylerhall at gmail.com (Tyler Hall) Date: Thu, 17 May 2007 21:53:55 -0500 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <0E4725BC-3A18-43F2-91CF-03E6F530C617@macromates.com> References: <464CDBEE.9010308@gmail.com> <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> <0E4725BC-3A18-43F2-91CF-03E6F530C617@macromates.com> Message-ID: Rats. Guess I'll have to print that one up special for WWDC next month ;-) On 5/17/07, Allan Odgaard wrote: > On 18. May 2007, at 02:22, Chip Cullen wrote: > > > I liked "TextMate is BBetter", but I thought you could add to a it > > a little: [...] > > I think I've had enough fun on Rich's expense, so I am going to stay > away from things that hint at his product or company. > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From oblivious at subtlegradient.com Fri May 18 03:13:36 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Thu, 17 May 2007 23:13:36 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <464CDBEE.9010308@gmail.com> References: <464CDBEE.9010308@gmail.com> Message-ID: <486ECF15-9AA3-4391-9AD9-25729AA911C6@subtlegradient.com> On May 17, 2007, at 6:49 PM, Jacob Rus wrote: > Hello friends, > > TextMate desperately needs some updated T-shirts, but behind every > great T shirt is a great T shirt idea. So, even if you have no > artistic talent whatsoever, you can think up ideas for slogans and > designs. And even slogans that don't make it onto shirts could > probably be useful for something. > > Anyway, once some good ideas have been offered up, it will be > possible to make some design mockups based on those. I'm happy to > spend a bit of time sometime doing some very basic designery stuff, > though I'm hardly an expert, and other more qualified designers > would of course be welcome to draw up shirts too. > > But first let's see if as a group we can't come up with some killer > slogans. > > Anyone who contributes an idea/slogan, or a design, which ends up > being printed on the shirts gets one free (says Allan; I'm a poor > student and can't afford such things ;) > > To start off, I was thinking it could be something along the lines > of "check and mate". > > -Jacob Rus Personally, I hate slogans unless they are totally awesome. I have actually done shirts before, if you need someone to handle any of the formats or vector implementations or whatever. Anything for a free shirt ;) Here are some ideas: Dark purple shirt, flat color version of the Logo on the front with the logo text in white. I like things simple and colorful. Anything except a white shirt! If we have to have slogans: [TextMate logo] Snip it! [TextMate logo] Making UNiX dance since 2005 [TextMate logo] Infinity robot Ninjas at my command! [TextMate logo] Yes, I am a Nerd thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From jacobolus at gmail.com Fri May 18 03:17:50 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Thu, 17 May 2007 23:17:50 -0400 Subject: [TxMt] Re: new shirt ideas/slogans In-Reply-To: <486ECF15-9AA3-4391-9AD9-25729AA911C6@subtlegradient.com> References: <464CDBEE.9010308@gmail.com> <486ECF15-9AA3-4391-9AD9-25729AA911C6@subtlegradient.com> Message-ID: Thomas Aylott (subtleGradient) wrote: > Personally, I hate slogans unless they are totally awesome. Yeah, that's why it's good to get community feedback, so we can avoid the non-totally-awesome ones. > Here are some ideas: > > Dark purple shirt, flat color version of the Logo on the front with > the logo text in white. > > I like things simple and colorful. > Anything except a white shirt! I like black shirts, but dark purple would be alright, probably. From stephen at exitwound.org Fri May 18 03:35:40 2007 From: stephen at exitwound.org (Hargrove, Stephen) Date: Thu, 17 May 2007 22:35:40 -0500 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> Message-ID: <7BF3F794-116E-45A9-A6A7-6A65F27BB027@exitwound.org> TextMate: From my brain to God's fingers. On May 17, 2007, at 6:02 PM, Tyler Hall wrote: > "TextMate is BBetter" > -- Steve stephen at exitwound.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From bbum at mac.com Fri May 18 03:44:20 2007 From: bbum at mac.com (Bill Bumgarner) Date: Thu, 17 May 2007 20:44:20 -0700 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <7BF3F794-116E-45A9-A6A7-6A65F27BB027@exitwound.org> References: <464CDBEE.9010308@gmail.com> <7BF3F794-116E-45A9-A6A7-6A65F27BB027@exitwound.org> Message-ID: <98323EE6-4EC6-43D2-BCDD-2D682C1C39C4@mac.com> TextMate has the bucket. Chuck Norris uses TextMate. From oblivious at subtlegradient.com Fri May 18 03:58:48 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Thu, 17 May 2007 23:58:48 -0400 Subject: [TxMt] Re: new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <486ECF15-9AA3-4391-9AD9-25729AA911C6@subtlegradient.com> Message-ID: <0CF45F6A-04EB-4676-B511-786F7504C315@subtlegradient.com> On May 17, 2007, at 11:17 PM, Jacob Rus wrote: > Thomas Aylott (subtleGradient) wrote: >> Personally, I hate slogans unless they are totally awesome. > > Yeah, that's why it's good to get community feedback, so we can > avoid the non-totally-awesome ones. > >> Here are some ideas: >> Dark purple shirt, flat color version of the Logo on the front >> with the logo text in white. >> I like things simple and colorful. >> Anything except a white shirt! > > I like black shirts, but dark purple would be alright, probably. Black would be a natch, but wee bit overused. And purple would reinforce the brand ;) thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From alex.j.ross at gmail.com Fri May 18 04:30:43 2007 From: alex.j.ross at gmail.com (Alex Ross) Date: Thu, 17 May 2007 21:30:43 -0700 Subject: [TxMt] Re: new shirt ideas/slogans In-Reply-To: <0CF45F6A-04EB-4676-B511-786F7504C315@subtlegradient.com> References: <464CDBEE.9010308@gmail.com> <486ECF15-9AA3-4391-9AD9-25729AA911C6@subtlegradient.com> <0CF45F6A-04EB-4676-B511-786F7504C315@subtlegradient.com> Message-ID: <350ADE4D-7903-49E0-8C1F-3D07866A8A62@gmail.com> if we have to have purple, can black still be an option? purple makes me look fat. seems to me that textmate is about minimalism (or at least utility), and slogans aren't very minimalist (or utilitarian for that matter). maybe just "textmate" in small, white (or purple), lower case print across the chest? ?Alex On May 17, 2007, at 8:58 PM, Thomas Aylott (subtleGradient) wrote: > On May 17, 2007, at 11:17 PM, Jacob Rus wrote: >> Thomas Aylott (subtleGradient) wrote: >>> Personally, I hate slogans unless they are totally awesome. >> >> Yeah, that's why it's good to get community feedback, so we can >> avoid the non-totally-awesome ones. >> >>> Here are some ideas: >>> Dark purple shirt, flat color version of the Logo on the >>> front with the logo text in white. >>> I like things simple and colorful. >>> Anything except a white shirt! >> >> I like black shirts, but dark purple would be alright, probably. > > Black would be a natch, but wee bit overused. > And purple would reinforce the brand ;) > > thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate -------------- next part -------------- An HTML attachment was scrubbed... URL: From jay-txmt at soffian.org Fri May 18 04:43:49 2007 From: jay-txmt at soffian.org (Jay Soffian) Date: Fri, 18 May 2007 00:43:49 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <486ECF15-9AA3-4391-9AD9-25729AA911C6@subtlegradient.com> References: <464CDBEE.9010308@gmail.com> <486ECF15-9AA3-4391-9AD9-25729AA911C6@subtlegradient.com> Message-ID: <87989C9C-304A-4E87-A73A-4EF564427681@soffian.org> On May 17, 2007, at 11:36 PM, Thomas Aylott (subtleGradient) wrote: > Personally, I hate slogans unless they are totally awesome. The power of UNIX, [textmate logo] in the palm of my hand. Maybe just the purple gear, with the words circled around it. Or perhaps borrow this design, but with the gear in the middle: http://threadless.com/submission/116965/ power_of_the_sun_in_the_palm_of_my_hands/showmore,designs Then the saying on the back, or maybe below. j. From ld at ldaley.com Fri May 18 04:47:07 2007 From: ld at ldaley.com (Luke Daley) Date: Fri, 18 May 2007 14:47:07 +1000 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <98323EE6-4EC6-43D2-BCDD-2D682C1C39C4@mac.com> References: <464CDBEE.9010308@gmail.com> <7BF3F794-116E-45A9-A6A7-6A65F27BB027@exitwound.org> <98323EE6-4EC6-43D2-BCDD-2D682C1C39C4@mac.com> Message-ID: On 18/05/2007, at 1:44 PM, Bill Bumgarner wrote: > Chuck Norris uses TextMate That's killer. - LD. From mjijackson at gmail.com Fri May 18 05:57:08 2007 From: mjijackson at gmail.com (Michael Jackson) Date: Thu, 17 May 2007 23:57:08 -0600 Subject: [TxMt] Blogging bundle patch for Wordpress error Message-ID: <10C10F58-3305-480B-8B5C-FEE94A771654@gmail.com> Hello all, When I try to run the patch documented at http://macromates.com/wiki/ Blogging/WordPress, I get the following error: burt:~/Desktop michael$ patch < wp-xmlrpc-mw-gmt-patch patching file xmlrpc.php Hunk #1 FAILED at 669. Hunk #2 FAILED at 740. 2 out of 2 hunks FAILED -- saving rejects to file xmlrpc.php.rej I'm assuming this means that my file is not patched correctly. I'm running the latest Wordpress (2.2) but I'm not aware of any changes that were made to the xmlrpc.php file from previous versions. Here is what comes up in the xmlrpc.php.rej file (sorry for all the code)... *************** *** 669,675 **** if ($postdata['post_date'] != '') { - $post_date = mysql2date('Ymd\TH:i:s', $postdata['post_date']); $categories = array(); $catids = wp_get_post_cats('', $post_ID); --- 669,686 ---- if ($postdata['post_date'] != '') { + /* BEGIN PATCH */ + /* Convert post_date to GMT so receiving applications can + safely adjust it to the user's local time zone. + Using post_date_gmt instead of post_date does *not* work, + since it is (wrongly) adjusted for the gmt_offset *twice*. */ + /* Old code: + $post_date = mysql2date('Ymd\TH:i:s', $postdata['post_date']); */ + $post_date = mysql2date('Y-m-d H:i:s', $postdata['post_date']); + $post_date = get_gmt_from_date($post_date); + $post_date = str_replace('-', '', $post_date); + $post_date = str_replace(' ', 'T', $post_date); + /* END PATCH */ $categories = array(); $catids = wp_get_post_cats('', $post_ID); *************** *** 729,736 **** } foreach ($posts_list as $entry) { - - $post_date = mysql2date('Ymd\TH:i:s', $entry['post_date']); $categories = array(); $catids = wp_get_post_cats('', $entry['ID']); foreach($catids as $catid) { --- 740,759 ---- } foreach ($posts_list as $entry) { + + /* BEGIN PATCH */ + /* Convert post_date to GMT so receiving applications can + safely adjust it to the user's local time zone. + Using post_date_gmt instead of post_date does *not* work, + since it is (wrongly) adjusted for the gmt_offset *twice*. */ + /* Old code: + $post_date = mysql2date('Ymd\TH:i:s', $entry['post_date']); */ + $post_date = mysql2date('Y-m-d H:i:s', $entry['post_date']); + $post_date = get_gmt_from_date($post_date); + $post_date = str_replace('-', '', $post_date); + $post_date = str_replace(' ', 'T', $post_date); + /* END PATCH */ + $categories = array(); $catids = wp_get_post_cats('', $entry['ID']); foreach($catids as $catid) { Can anybody diagnose this problem? I would appreciate it very much. Thanks! Michael P.S. Great work on the blogging bundle! I love it! -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2452 bytes Desc: not available URL: From mjijackson at gmail.com Fri May 18 06:03:11 2007 From: mjijackson at gmail.com (Michael Jackson) Date: Fri, 18 May 2007 00:03:11 -0600 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <464CDBEE.9010308@gmail.com> References: <464CDBEE.9010308@gmail.com> Message-ID: <643FDD18-8073-4132-B67E-118C044D36CC@gmail.com> TextMate: the only mate who will rock your world all night long! (As I write this, it's midnight and my wife is sleeping next to me...) : ) Michael On May 17, 2007, at 4:49 PM, Jacob Rus wrote: > Hello friends, > > TextMate desperately needs some updated T-shirts, but behind every > great T shirt is a great T shirt idea. So, even if you have no > artistic talent whatsoever, you can think up ideas for slogans and > designs. And even slogans that don't make it onto shirts could > probably be useful for something. > > Anyway, once some good ideas have been offered up, it will be > possible to make some design mockups based on those. I'm happy to > spend a bit of time sometime doing some very basic designery stuff, > though I'm hardly an expert, and other more qualified designers > would of course be welcome to draw up shirts too. > > But first let's see if as a group we can't come up with some killer > slogans. > > Anyone who contributes an idea/slogan, or a design, which ends up > being printed on the shirts gets one free (says Allan; I'm a poor > student and can't afford such things ;) > > To start off, I was thinking it could be something along the lines > of "check and mate". > > -Jacob Rus > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2452 bytes Desc: not available URL: From eike+textmate at unorganized.net Fri May 18 06:41:01 2007 From: eike+textmate at unorganized.net (Eike Bernhardt) Date: Fri, 18 May 2007 08:41:01 +0200 Subject: [TxMt] Mercurial Bundle: Diff Commands In-Reply-To: References: <464AB2F1.1040107@unorganized.net> Message-ID: <464D4A7D.3010101@unorganized.net> On 16.05.2007 23:33 Uhr, Allan Odgaard wrote: > On 16. May 2007, at 09:29, Eike Bernhardt wrote: > >> [...] >> since without the iconv call I'd get empty diff windows (probably >> because of incorrectly encoded german special chars inside the generated >> diff) -- but I'm not shure if this is just a local problem. > > What encoding do you use for your source files? ISO-8859-1 It's an old project, not started in TextMate. > The official party line is that all TM commands which work with files > ?on disk? expect these to be in UTF-8. I will recode the source files, then. From jan at prima.de Fri May 18 06:58:00 2007 From: jan at prima.de (Jan Lehnardt) Date: Fri, 18 May 2007 08:58:00 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <7438eebe0705171636l439cba91jcf48379bf266045d@mail.gmail.com> References: <464CDBEE.9010308@gmail.com> <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> <7438eebe0705171636l439cba91jcf48379bf266045d@mail.gmail.com> Message-ID: <345B74A9-9A98-4B1E-BDCB-071C00CAAB81@prima.de> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Fri 18 May 2007, at 18 May 01:36, Graham Ashton wrote: > On May 17, 2007, at 6:49 PM, Jacob Rus wrote: >> But first let's see if as a group we can't come up with some killer >> slogans. > > "Text" on the front > "Mate" on the back > > Maybe a logo on the left sleeve. +1 Jan - -- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (Darwin) iD8DBQFGTU547KW8t7uWVrARAnVDAKC7+iJO8kqQvBidO8NYda/xv40/4gCfX4Us aCDWioDSBapn9PEbpNejWgI= =OoC0 -----END PGP SIGNATURE----- From ciawal at gmail.com Fri May 18 07:59:49 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Fri, 18 May 2007 08:59:49 +0100 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <345B74A9-9A98-4B1E-BDCB-071C00CAAB81@prima.de> References: <464CDBEE.9010308@gmail.com> <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> <7438eebe0705171636l439cba91jcf48379bf266045d@mail.gmail.com> <345B74A9-9A98-4B1E-BDCB-071C00CAAB81@prima.de> Message-ID: Purple shirt with a white gear on the front, please. On 18 May 2007, at 07:58, Jan Lehnardt wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On Fri 18 May 2007, at 18 May 01:36, Graham Ashton wrote: > >> On May 17, 2007, at 6:49 PM, Jacob Rus wrote: >>> But first let's see if as a group we can't come up with some killer >>> slogans. >> >> "Text" on the front >> "Mate" on the back >> >> Maybe a logo on the left sleeve. > > +1 > > Jan > - -- > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.6 (Darwin) > > iD8DBQFGTU547KW8t7uWVrARAnVDAKC7+iJO8kqQvBidO8NYda/xv40/4gCfX4Us > aCDWioDSBapn9PEbpNejWgI= > =OoC0 > -----END PGP SIGNATURE----- > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From henrik at nyh.se Fri May 18 10:25:30 2007 From: henrik at nyh.se (Henrik Nyh) Date: Fri, 18 May 2007 12:25:30 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <7BF3F794-116E-45A9-A6A7-6A65F27BB027@exitwound.org> <98323EE6-4EC6-43D2-BCDD-2D682C1C39C4@mac.com> Message-ID: On 18/05/07, Luke Daley wrote: > > On 18/05/2007, at 1:44 PM, Bill Bumgarner wrote: > > > Chuck Norris uses TextMate > > That's killer. Oh yes. I'd buy that one even if it's white. :) From dd at dyce.com Fri May 18 11:04:24 2007 From: dd at dyce.com (Richard Dyce) Date: Fri, 18 May 2007 12:04:24 +0100 Subject: [TxMt] Submitting new snippets Message-ID: <4CD6DD0F-8DF7-4D1C-8CDD-56999FF9E746@dyce.com> Hi, Just wondering how I submit some snippets for the PHP bundle? They're small, but I'm using them all the time. ( ${2:'$1'}=>${4:'$3'},$0 tab-triggered on (, and the more general , ${2:'$1'}=>${4:'$3'},$0 tab-triggered on ,, They make typing hashed lists really very much quicker for me. Or am I missing an altogether quicker way? R -- Richard Dyce MA (Cantab.) MBCS MIET http://dyce.com From ciawal at gmail.com Fri May 18 11:13:19 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Fri, 18 May 2007 12:13:19 +0100 Subject: [TxMt] Submitting new snippets In-Reply-To: <4CD6DD0F-8DF7-4D1C-8CDD-56999FF9E746@dyce.com> References: <4CD6DD0F-8DF7-4D1C-8CDD-56999FF9E746@dyce.com> Message-ID: <85248D6F-CBA2-4748-B25B-06011A5FCBA9@gmail.com> Hi Richard, Thanks for your submission ? I have in the past considered adding something for this, but at the time I didn't feel it was worth it as there isn't really much typing involved, and you have the variant of needing quotes or not. I'm curious why you are using the 2:1 => 4:3 tabbing order rather than 1:2 => 3:4? I'll keep them around for a while and try to use them and see if it changes my mind. Ciar?n On 18 May 2007, at 12:04, Richard Dyce wrote: > Hi, > > Just wondering how I submit some snippets for the PHP bundle? > They're small, but I'm using them all the time. > > ( ${2:'$1'}=>${4:'$3'},$0 > tab-triggered on (, > > and the more general > > , ${2:'$1'}=>${4:'$3'},$0 > tab-triggered on ,, > > They make typing hashed lists really very much quicker for me. > > Or am I missing an altogether quicker way? > > R > > -- > Richard Dyce MA (Cantab.) MBCS MIET > > http://dyce.com > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From xcambar at gmail.com Fri May 18 11:35:13 2007 From: xcambar at gmail.com (Xavier Cambar) Date: Fri, 18 May 2007 13:35:13 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> Message-ID: <0B7E06D6-B7C2-4167-894D-2647AC18A020@gmail.com> > I liked "TextMate is BBetter", but I thought you could add to a it > a little: > > > > Or is that too uber-geek? it's just HTML. Woooh! HTML is already way too uber-geek for "normal" people, boy! (by normal, I mean the 99% of the population not being computer-addict) "BBetter" is funny, but funny for someone aware of what BBEdit is, and why TextMate has been compared to. Xavier From dd at dyce.com Fri May 18 11:45:08 2007 From: dd at dyce.com (Richard Dyce) Date: Fri, 18 May 2007 12:45:08 +0100 Subject: [TxMt] Submitting new snippets In-Reply-To: References: <4CD6DD0F-8DF7-4D1C-8CDD-56999FF9E746@dyce.com> Message-ID: <1A3660F6-814A-48C1-B041-5EC053E7042E@dyce.com> Ciar?n, That's great. I knew there was a better way to do it... Will let you know if I come across any problems. R From xcambar at gmail.com Fri May 18 11:56:19 2007 From: xcambar at gmail.com (Xavier Cambar) Date: Fri, 18 May 2007 13:56:19 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <464CDBEE.9010308@gmail.com> References: <464CDBEE.9010308@gmail.com> Message-ID: <60AE4A4E-FFC9-45CF-9850-1280D69B1815@gmail.com> My proposal: 1) Save the world, Use TextMate. 2) More than Text: a Mate. 3) Think Different, once more. 4) Text editing, at last. (I prefer "At last, text editing", but... does that matter? :-p) Xavier From edouard.gilbert at eleves.bretagne.ens-cachan.fr Fri May 18 12:03:55 2007 From: edouard.gilbert at eleves.bretagne.ens-cachan.fr (=?ISO-8859-1?Q?=C9douard_Gilbert?=) Date: Fri, 18 May 2007 14:03:55 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <0B7E06D6-B7C2-4167-894D-2647AC18A020@gmail.com> References: <464CDBEE.9010308@gmail.com> <2F4120FF-1720-4197-A956-C6880B7C7DAC@mac.com> <0B7E06D6-B7C2-4167-894D-2647AC18A020@gmail.com> Message-ID: <4466886B-F780-4076-8BB3-15EE1794C6DA@eleves.bretagne.ens-cachan.fr> ?Can \emph{you} Mate all night long?? or simply ?I Mate all night long?. Well, of course, if a feature like SubEthaEdit collaboration engine was to be expected in TM 2.0 (wouldn't next iChat bring that kind of feature? That would be great!), we could find even worse. Something like ?Mate in bunch.?, with several gears between the ?Mate? and the ?in bunch?. Is that grammatically correct? Oh, you meant T-shirts people might actually wear? ?douard From jeroen at je-ju.net Fri May 18 12:25:34 2007 From: jeroen at je-ju.net (Jeroen van der Ham) Date: Fri, 18 May 2007 14:25:34 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <464CDBEE.9010308@gmail.com> References: <464CDBEE.9010308@gmail.com> Message-ID: <464D9B3E.6040703@je-ju.net> What about: I code with my Mate Jeroen. From throw-away-1 at macromates.com Fri May 18 12:28:52 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 18 May 2007 14:28:52 +0200 Subject: [TxMt] Blogging bundle patch for Wordpress error In-Reply-To: <10C10F58-3305-480B-8B5C-FEE94A771654@gmail.com> References: <10C10F58-3305-480B-8B5C-FEE94A771654@gmail.com> Message-ID: <5F5D2598-0321-449A-B0EC-417FFF690829@macromates.com> On 18. May 2007, at 07:57, Michael Jackson wrote: > [...] > When I try to run the patch documented at http://macromates.com/ > wiki/Blogging/WordPress, I get the following error: > [...] > I'm assuming this means that my file is not patched correctly. I'm > running the latest Wordpress (2.2) but I'm not aware of any changes > that were made to the xmlrpc.php file from previous versions. You can try ?svn log xmlrpc.php? to see if it has changed. Coincidentally I was recently in contact with a WordPress maintainer who had done work on WordPress XML-RPC and told me they have done both new features and bug fixes for the upcoming 2.2 -- so my guess would be the file has been changed (too much) since Brett did the patch. From mlarocque at prolumina.com Fri May 18 12:32:29 2007 From: mlarocque at prolumina.com (Michael Larocque) Date: Fri, 18 May 2007 06:32:29 -0600 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <464CDBEE.9010308@gmail.com> References: <464CDBEE.9010308@gmail.com> Message-ID: <2F837C1C-151D-4881-B231-FEFAD1E9959C@prolumina.com> On 2007-May-17, at 16:49 , Jacob Rus wrote: > Hello friends, > > TextMate desperately needs some updated T-shirts, but behind every > great T shirt is a great T shirt idea. So, even if you have no > artistic talent whatsoever, you can think up ideas for slogans and > designs. And even slogans that don't make it onto shirts could > probably be useful for something. This past November I started a similar thread. http://comox.textdrive.com/pipermail/textmate/2006-November/015158.html The result: http://www.flickr.com/photos/26717404 at N00/293872182/ Carpe viam, Mike Michael Larocque Chief Cook and Bottle Washer Prolumina Communications Inc. http://prolumina.com/~mlarocque/ From throw-away-1 at macromates.com Fri May 18 12:32:34 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 18 May 2007 14:32:34 +0200 Subject: [TxMt] Submitting new snippets In-Reply-To: <85248D6F-CBA2-4748-B25B-06011A5FCBA9@gmail.com> References: <4CD6DD0F-8DF7-4D1C-8CDD-56999FF9E746@dyce.com> <85248D6F-CBA2-4748-B25B-06011A5FCBA9@gmail.com> Message-ID: On 18. May 2007, at 13:13, Ciar?n Walsh wrote: > Thanks for your submission ? I have in the past considered adding > something for this, but at the time I didn't feel it was worth it > as there isn't really much typing involved [...] And also triggering snippets on punctuation can be a pain for users who like to tab-align their code (i.e. insert snippets after said punctuation). For example I am inclined to remove the : tab trigger from the Ruby bundle. The only reason it is mildly bearable is that the de facto standard for Ruby is to use spaces instead of tabs. From throw-away-1 at macromates.com Fri May 18 12:57:12 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Fri, 18 May 2007 14:57:12 +0200 Subject: [TxMt] Subversion bundle and fmdiff In-Reply-To: <8A072F17-4FC8-4BA5-86AC-55E85EE4162C@bitart.com> References: <8A072F17-4FC8-4BA5-86AC-55E85EE4162C@bitart.com> Message-ID: <9AD463B7-AAC0-4DA9-9072-AC044BE68DD1@macromates.com> On 17. May 2007, at 18:14, Gerd Knops wrote: > I am trying to use FileMerge for the 'Diff with...' commands in the > Subversion bundle. > > The help file says to set $TM_SVN_DIFF_CMD to fmdiff. I guess that > should be fmdiff.sh, which needs to be downloaded and installed > first from elsewhere (help should mention that). I?ll link to http://ssel.vub.ac.be/ssel/internal:fmdiff -- but it is just ?fmdiff?. > Anyhow after I did set that up and run a diff, it does open in > FileMerge, but the "Accessing Subversion Repository" panel in > TextMate sticks around until FileMerge is quit. Am I doing > something wrong, or is that a problem with the bundle? This is how it is supposed to work, sort of. The problem is that the bundle does not know if your custom diff command produces a textual result (for showing in TextMate) or opens its own window (in which case the command could detach and just forget about the result). The simplest solution would be to make fmdiff detach (or use a wrapper). From lists.cpruitt at cliffpruitt.com Fri May 18 13:03:47 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Fri, 18 May 2007 09:03:47 -0400 Subject: [TxMt] CR/LF Line endings In-Reply-To: References: <49DEFB35-888C-4641-A515-77B04477ADCD@gmail.com> <2F319F7E-3B75-4AFA-BD20-81406E13C25F@gmail.com> <7E3B0613-E021-4FF0-9497-7CC0702CA5D9@neologica.com.au> Message-ID: Well, I can't argue with you there. Tab size is pretty useless to me too. I can think of a few ways to provide that visual feedback & not clutter TM. I could see lumping tab size and line endings into the same widget as tab size & letting the widget remember what you would like it display. I could also see giving the option to add more status items to the line / column indicator at the bottom left of the window. For that matter, one thing I like about the OS X terminal app is the ability (although limited) to customize the window title with some useful info. Maybe giving the user the ability to specify custom info into the window title would work. I don't think I'd use it but I don't use but a fraction of what TM has to offer anyway. On May 16, 2007, at 5:46 PM, Tim Mansour wrote: > That's true Cliff, but there are two uses for a widget: (1) perform > an action, (2) provide feedback. Currently there's no quick visual > way to tell what line endings or encoding a file has, and that's > one thing I'd like. On the other hand, the "Tab Size" that's > currently in the status bar is of no use to me at all. > > I agree with you wholeheartedly that TM should remain as clutter- > free as possible, but the elements that constitute what clutter > *is* there should be my choice. From lists.cpruitt at cliffpruitt.com Fri May 18 13:11:21 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Fri, 18 May 2007 09:11:21 -0400 Subject: [TxMt] Upload MP3 Drag Command? In-Reply-To: <47A7D4ED-B57F-4E51-8431-FAA6A61258DD@circlesixdesign.com> References: <4B8CD1D2-7132-4B9F-B44F-DDD9AF5405E6@grahamenglish.com> <47A7D4ED-B57F-4E51-8431-FAA6A61258DD@circlesixdesign.com> Message-ID: I'm sure there's some reason for it, but why upload that way? Why not just use curl or the cli ftp tool since they're pretty standard on an OS X install? Am I just missing a point somewhere? On May 17, 2007, at 5:02 PM, Brett Terpstra wrote: > I have the command I wrote a while back for uploading binaries > using xmlrpc, but never did solve the strange problems I was having > with some larger files. From lists.cpruitt at cliffpruitt.com Fri May 18 13:21:37 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Fri, 18 May 2007 09:21:37 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <486ECF15-9AA3-4391-9AD9-25729AA911C6@subtlegradient.com> References: <464CDBEE.9010308@gmail.com> <486ECF15-9AA3-4391-9AD9-25729AA911C6@subtlegradient.com> Message-ID: <8C4DB002-7B1E-4456-A9C1-950C2BB20B29@cliffpruitt.com> I'm a little late to the party but I have to second this comment a thousand fold. The only thing more horrid than a white tee shirt is a white tee shirt that only comes in XXL. Mediums do get worn. :-) Personally I'd love a black shirt with just the text mate logo on it. On May 17, 2007, at 11:13 PM, Thomas Aylott (subtleGradient) wrote: > Anything except a white shirt! From jaguarcy at gmail.com Fri May 18 15:13:42 2007 From: jaguarcy at gmail.com (=?UTF-8?Q?Constantinos_Neophytou_=E2=99=8E?=) Date: Fri, 18 May 2007 18:13:42 +0300 Subject: [TxMt] Unicode Documents in LaTeX In-Reply-To: <26ECF31B-9730-43B3-A2AF-B5D11C93A3DC@hanover.edu> References: <67DA8B18-B8AE-4610-AD9B-195DBFA5CEC3@gmail.com> <20070516225832.GA4722@keltia.freenix.fr> <26ECF31B-9730-43B3-A2AF-B5D11C93A3DC@hanover.edu> Message-ID: On May 17, 2007, at 3:22 AM, Charilaos Skiadas wrote: > That indeed seems to do it for the file that Constantinos is > working on, once you add the babel stuff for greek. So this > preamble would do it (notice the greek option in the documentclass): > > \documentclass[a4paper,12pt,greek]{report} > % UTF-8 stuff > \usepackage[notipa]{ucs} > \usepackage[utf8x]{inputenc} > \usepackage[T1]{fontenc} > \usepackage{textcomp} > \usepackage{babel} Indeed, this worked. I have not been able to get xetex to work with this document, but I prefer this methodology. Thanks a lot! Now the only problems I have are definitely latex-only issues... The one that confuses me and I have no idea how to approach is that the (very) few english characters I have in the document (for example in tables as variables) get transliterated into greek characters... is there any prefix I can use to make these characters appear as-is? -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 1288 bytes Desc: not available URL: From mjijackson at gmail.com Fri May 18 15:14:19 2007 From: mjijackson at gmail.com (Michael Jackson) Date: Fri, 18 May 2007 09:14:19 -0600 Subject: [TxMt] Blogging bundle patch for Wordpress error In-Reply-To: <5F5D2598-0321-449A-B0EC-417FFF690829@macromates.com> References: <10C10F58-3305-480B-8B5C-FEE94A771654@gmail.com> <5F5D2598-0321-449A-B0EC-417FFF690829@macromates.com> Message-ID: On May 18, 2007, at 6:28 AM, Allan Odgaard wrote: > On 18. May 2007, at 07:57, Michael Jackson wrote: > >> [...] >> When I try to run the patch documented at http://macromates.com/ >> wiki/Blogging/WordPress, I get the following error: >> [...] >> I'm assuming this means that my file is not patched correctly. I'm >> running the latest Wordpress (2.2) but I'm not aware of any >> changes that were made to the xmlrpc.php file from previous versions. > > You can try ?svn log xmlrpc.php? to see if it has changed. > > Coincidentally I was recently in contact with a WordPress > maintainer who had done work on WordPress XML-RPC and told me they > have done both new features and bug fixes for the upcoming 2.2 -- > so my guess would be the file has been changed (too much) since > Brett did the patch. Upon further investigation, I've found that you're absolutely right. It appears that they (the WordPress team) has tried to fix the issue themselves with v. 2.2. The old patch used to change the following line (of version 2.1): $post_date = mysql2date('Ymd\TH:i:s', $postdata['post_date']); to this: $post_date = mysql2date('Y-m-d H:i:s', $postdata['post_date']); $post_date = get_gmt_from_date($post_date); $post_date = str_replace('-', '', $post_date); $post_date = str_replace(' ', 'T', $post_date); However, in version 2.2, the line now looks like this: $post_date = mysql2date('Ymd\TH:i:s', $postdata['post_date_gmt']); I don't have access to an old copy of the database, so I don't know exactly what the difference is between the 'post-date' and 'post-date- gmt' values, but I'm guessing that it means that the conversion using the get_gmt_from_date function is no longer necessary. Also, I've found that the blogging bundle Comments and Pings headers are broken in WordPress. If I try and edit a post that has Comments and Pings turned on, they will always be turned off whenever I commit the revised post, no matter what the headers say. Sorry about all the bother. I just wanted to let you know that the blogging bundle is having issues with WordPress 2.2. Other than that, keep up the great work on the blogging bundle! Thanks, Michael -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2452 bytes Desc: not available URL: From oblivious at subtlegradient.com Fri May 18 15:16:39 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Fri, 18 May 2007 11:16:39 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <8C4DB002-7B1E-4456-A9C1-950C2BB20B29@cliffpruitt.com> References: <464CDBEE.9010308@gmail.com> <486ECF15-9AA3-4391-9AD9-25729AA911C6@subtlegradient.com> <8C4DB002-7B1E-4456-A9C1-950C2BB20B29@cliffpruitt.com> Message-ID: <5824693F-396E-4953-B75B-8AC9C7D2F35E@subtlegradient.com> On May 18, 2007, at 9:21 AM, Cliff Pruitt wrote: > Personally I'd love a black shirt with just the text mate logo on it. Ditto * ? thomas Aylott -------------- next part -------------- An HTML attachment was scrubbed... URL: From skiadas at hanover.edu Fri May 18 15:27:28 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Fri, 18 May 2007 11:27:28 -0400 Subject: [TxMt] Unicode Documents in LaTeX In-Reply-To: References: <67DA8B18-B8AE-4610-AD9B-195DBFA5CEC3@gmail.com> <20070516225832.GA4722@keltia.freenix.fr> <26ECF31B-9730-43B3-A2AF-B5D11C93A3DC@hanover.edu> Message-ID: <70B57DF2-B3B8-4A0B-993C-6A22599DBD37@hanover.edu> On May 18, 2007, at 11:13 AM, Constantinos Neophytou ? wrote: > On May 17, 2007, at 3:22 AM, Charilaos Skiadas wrote: > >> That indeed seems to do it for the file that Constantinos is >> working on, once you add the babel stuff for greek. So this >> preamble would do it (notice the greek option in the documentclass): >> >> \documentclass[a4paper,12pt,greek]{report} >> % UTF-8 stuff >> \usepackage[notipa]{ucs} >> \usepackage[utf8x]{inputenc} >> \usepackage[T1]{fontenc} >> \usepackage{textcomp} >> \usepackage{babel} > > Indeed, this worked. I have not been able to get xetex to work with > this document, but I prefer this methodology. Thanks a lot! Now the > only problems I have are definitely latex-only issues... The one > that confuses me and I have no idea how to approach is that the > (very) few english characters I have in the document (for example > in tables as variables) get transliterated into greek characters... > is there any prefix I can use to make these characters appear as-is? Add the word "english" in your list of languages: \documentclass[a4paper,12pt,greek, english]{report} And then: \selectlanguage{english} Hi there! \selectlanguage{greek} You can even mix more languages if you want ;). The corresponding chapter of the second volume of the LaTeX companion has a lot more info on this, also the babel package documentation probably has a lot more information than you would ever need: ftp://tug.ctan.org/tex-archive/macros/latex/required/babel/babel.pdf Haris Skiadas Department of Mathematics and Computer Science Hanover College From pierodancona at gmail.com Fri May 18 15:27:57 2007 From: pierodancona at gmail.com (Piero D'Ancona) Date: Fri, 18 May 2007 15:27:57 +0000 (UTC) Subject: [TxMt] Re: new shirt ideas/slogans References: <464CDBEE.9010308@gmail.com> Message-ID: Jacob Rus writes: > think up ideas for slogans "Do it with TextMate" Piero From jaguarcy at gmail.com Fri May 18 15:30:03 2007 From: jaguarcy at gmail.com (=?UTF-8?Q?Constantinos_Neophytou_=E2=99=8E?=) Date: Fri, 18 May 2007 18:30:03 +0300 Subject: [TxMt] Unicode Documents in LaTeX In-Reply-To: <70B57DF2-B3B8-4A0B-993C-6A22599DBD37@hanover.edu> References: <67DA8B18-B8AE-4610-AD9B-195DBFA5CEC3@gmail.com> <20070516225832.GA4722@keltia.freenix.fr> <26ECF31B-9730-43B3-A2AF-B5D11C93A3DC@hanover.edu> <70B57DF2-B3B8-4A0B-993C-6A22599DBD37@hanover.edu> Message-ID: sweet!! this is very good to know when working with multiple languages :) Thanks!! Constantinos On May 18, 2007, at 6:27 PM, Charilaos Skiadas wrote: > On May 18, 2007, at 11:13 AM, Constantinos Neophytou ? wrote: > >> On May 17, 2007, at 3:22 AM, Charilaos Skiadas wrote: >> >>> That indeed seems to do it for the file that Constantinos is >>> working on, once you add the babel stuff for greek. So this >>> preamble would do it (notice the greek option in the documentclass): >>> >>> \documentclass[a4paper,12pt,greek]{report} >>> % UTF-8 stuff >>> \usepackage[notipa]{ucs} >>> \usepackage[utf8x]{inputenc} >>> \usepackage[T1]{fontenc} >>> \usepackage{textcomp} >>> \usepackage{babel} >> >> Indeed, this worked. I have not been able to get xetex to work >> with this document, but I prefer this methodology. Thanks a lot! >> Now the only problems I have are definitely latex-only issues... >> The one that confuses me and I have no idea how to approach is >> that the (very) few english characters I have in the document (for >> example in tables as variables) get transliterated into greek >> characters... is there any prefix I can use to make these >> characters appear as-is? > > Add the word "english" in your list of languages: > > \documentclass[a4paper,12pt,greek, english]{report} > > And then: > > \selectlanguage{english} > Hi there! > \selectlanguage{greek} > > You can even mix more languages if you want ;). The corresponding > chapter of the second volume of the LaTeX companion has a lot more > info on this, also the babel package documentation probably has a > lot more information than you would ever need: > > ftp://tug.ctan.org/tex-archive/macros/latex/required/babel/babel.pdf > > Haris Skiadas > Department of Mathematics and Computer Science > Hanover College > > > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate -- What's your Dream? Make it happen with www.dostpost.com -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 1288 bytes Desc: not available URL: From edouard.gilbert at eleves.bretagne.ens-cachan.fr Fri May 18 15:42:35 2007 From: edouard.gilbert at eleves.bretagne.ens-cachan.fr (=?ISO-8859-1?Q?=C9douard_Gilbert?=) Date: Fri, 18 May 2007 17:42:35 +0200 Subject: [TxMt]new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> Message-ID: <91358E3D-C32B-4672-A22B-9E62B20CC5A3@eleves.bretagne.ens-cachan.fr> What about using a Tab Trigger, in its frame with the tab sign in the end? Problem is it should be a quite general snippet, but still effective (lorem isn't that great). Well, we could invent one, too. Something like -------------- next part -------------- A non-text attachment was scrubbed... Name: pastedGraphic.tiff Type: image/tiff Size: 8846 bytes Desc: not available URL: -------------- next part -------------- ?douard From alaskamike at gmail.com Fri May 18 16:23:43 2007 From: alaskamike at gmail.com (Mike Mellor) Date: Fri, 18 May 2007 08:23:43 -0800 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <5824693F-396E-4953-B75B-8AC9C7D2F35E@subtlegradient.com> References: <464CDBEE.9010308@gmail.com> <486ECF15-9AA3-4391-9AD9-25729AA911C6@subtlegradient.com> <8C4DB002-7B1E-4456-A9C1-950C2BB20B29@cliffpruitt.com> <5824693F-396E-4953-B75B-8AC9C7D2F35E@subtlegradient.com> Message-ID: <3CFBF3BA-5E49-410A-AFBF-3BF62B1B9320@gmail.com> How about one of those "evolution" series, with text editors? You could have "copy con" and "edlin" at the low end, some type of notepad app in the middle, then emacs just before TextMate. I'm not sure what other editors would fit. Mike -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2423 bytes Desc: not available URL: From fritza at manoverboard.org Fri May 18 16:53:00 2007 From: fritza at manoverboard.org (Fritz Anderson) Date: Fri, 18 May 2007 11:53:00 -0500 Subject: [TxMt] Objective-C bundle - method not highlighted inside #ifdef Message-ID: Consider the following code: ================= #include #include "MyClass.h" @implementation MyClass - (id) init { return self; } #ifndef _DEMO_ - (void) setSerialNumber: (NSString *) aSerialNumber { serialNumber = [aSerialNumber copy]; } #endif - (NSString *) description { return @"A MyClass"; } @end ================= The name of the method setSerialNumber: is not highlighted, and it does not appear in the function popup. Removing the #ifndef cures both problems. Is there something I can do? Is there a later version of the Obj-C bundle that covers this? ? F From lists.cpruitt at cliffpruitt.com Fri May 18 16:56:44 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Fri, 18 May 2007 12:56:44 -0400 Subject: [TxMt]new shirt ideas/slogans In-Reply-To: <91358E3D-C32B-4672-A22B-9E62B20CC5A3@eleves.bretagne.ens-cachan.fr> References: <464CDBEE.9010308@gmail.com> <91358E3D-C32B-4672-A22B-9E62B20CC5A3@eleves.bretagne.ens-cachan.fr> Message-ID: <3DD1C2A8-496C-4848-A58D-4B2CD2FEAB2B@cliffpruitt.com> I think we're all losing track of how powerful TextMate really is, and how high the bar has really been raised by it. I'll settle for nothing less than a t-shirt that changes color depending on what & who surrounds me at a given moment (scope) and features a slogan that can be changed every time I think the word "Tab". ;-) - Cliff On May 18, 2007, at 11:42 AM, ?douard Gilbert wrote: > What about using a Tab Trigger, in its frame with the tab sign in > the end? > > Problem is it should be a quite general snippet, but still > effective (lorem isn't that great). Well, we could invent one, too. > Something like > > > > ?douard > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From andy.herbert at gmail.com Fri May 18 18:22:04 2007 From: andy.herbert at gmail.com (Andy Herbert) Date: Fri, 18 May 2007 19:22:04 +0100 Subject: [TxMt] Re: new shirt ideas/slogans Message-ID: <54F884F7-0A8D-41EE-9866-6AC235B47269@gmail.com> I couldn't resist! "Beyond words" From digilord at mac.com Fri May 18 18:22:48 2007 From: digilord at mac.com (digilord at mac.com) Date: Fri, 18 May 2007 11:22:48 -0700 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <464CDBEE.9010308@gmail.com> References: <464CDBEE.9010308@gmail.com> Message-ID: <6787609D-E121-4008-8F71-56FB76E307C8@mac.com> Here is my idea for a logo and slogan: http://picasaweb.google.com/ daniel.morrigan/Logos/photo#5065967609810088018 On May 17, 2007, at 3:49 PM, Jacob Rus wrote: > Hello friends, > > TextMate desperately needs some updated T-shirts, but behind every > great T shirt is a great T shirt idea. So, even if you have no > artistic talent whatsoever, you can think up ideas for slogans and > designs. And even slogans that don't make it onto shirts could > probably be useful for something. > > Anyway, once some good ideas have been offered up, it will be > possible to make some design mockups based on those. I'm happy to > spend a bit of time sometime doing some very basic designery stuff, > though I'm hardly an expert, and other more qualified designers > would of course be welcome to draw up shirts too. > > But first let's see if as a group we can't come up with some killer > slogans. > > Anyone who contributes an idea/slogan, or a design, which ends up > being printed on the shirts gets one free (says Allan; I'm a poor > student and can't afford such things ;) > > To start off, I was thinking it could be something along the lines > of "check and mate". > > -Jacob Rus > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From daryl.spitzer at gmail.com Fri May 18 18:24:35 2007 From: daryl.spitzer at gmail.com (Daryl Spitzer) Date: Fri, 18 May 2007 11:24:35 -0700 Subject: [TxMt] Re: new shirt ideas/slogans In-Reply-To: <54F884F7-0A8D-41EE-9866-6AC235B47269@gmail.com> References: <54F884F7-0A8D-41EE-9866-6AC235B47269@gmail.com> Message-ID: > I couldn't resist! "Beyond words" That's really good. +1 On 5/18/07, Andy Herbert wrote: > I couldn't resist! "Beyond words" > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From harrison at Math.Berkeley.EDU Fri May 18 19:40:54 2007 From: harrison at Math.Berkeley.EDU (Jenny Harrison) Date: Fri, 18 May 2007 12:40:54 -0700 Subject: [TxMt] Re: new shirt ideas/slogans In-Reply-To: <54F884F7-0A8D-41EE-9866-6AC235B47269@gmail.com> References: <54F884F7-0A8D-41EE-9866-6AC235B47269@gmail.com> Message-ID: <21968D66-64A0-4A89-A0B8-8A89E0AC60FA@math.berkeley.edu> On May 18, 2007, at 11:22 AM, Andy Herbert wrote: > I couldn't resist! "Beyond words" Excellent! +1 Jenny From dan at tangledhelix.com Fri May 18 20:55:38 2007 From: dan at tangledhelix.com (Dan Lowe) Date: Fri, 18 May 2007 16:55:38 -0400 Subject: [TxMt] Submitting new snippets In-Reply-To: References: <4CD6DD0F-8DF7-4D1C-8CDD-56999FF9E746@dyce.com> <85248D6F-CBA2-4748-B25B-06011A5FCBA9@gmail.com> Message-ID: <79AE086E-B83B-434A-9165-3C58A301F4C2@tangledhelix.com> On May 18, 2007, at 8:32 AM, Allan Odgaard wrote: > On 18. May 2007, at 13:13, Ciar?n Walsh wrote: > >> Thanks for your submission ? I have in the past considered adding >> something for this, but at the time I didn't feel it was worth it >> as there isn't really much typing involved [...] > > And also triggering snippets on punctuation can be a pain for users > who like to tab-align their code (i.e. insert snippets after said > punctuation). In this case I wouldn't think that would matter, would it? I mean, how often are you going to type "(," or ",," in normal code, let alone? I agree with your general point, though. Just doesn't seem like with these specific snippets it would be an issue. -dan From spicyjalapeno at gmail.com Fri May 18 21:41:32 2007 From: spicyjalapeno at gmail.com (spicyjalapeno at gmail.com) Date: Fri, 18 May 2007 14:41:32 -0700 Subject: [TxMt] Re: new shirt ideas/slogans In-Reply-To: <21968D66-64A0-4A89-A0B8-8A89E0AC60FA@math.berkeley.edu> References: <54F884F7-0A8D-41EE-9866-6AC235B47269@gmail.com> <21968D66-64A0-4A89-A0B8-8A89E0AC60FA@math.berkeley.edu> Message-ID: Chuck Norris has a Mate; why don't you? -- ben.alpert From throw-away-1 at macromates.com Fri May 18 22:38:19 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sat, 19 May 2007 00:38:19 +0200 Subject: [TxMt] Objective-C bundle - method not highlighted inside #ifdef In-Reply-To: References: Message-ID: On 18. May 2007, at 18:53, Fritz Anderson wrote: > Consider the following code: > [...] > The name of the method setSerialNumber: is not highlighted, and it > does not appear in the function popup. Removing the #ifndef cures > both problems. > > Is there something I can do? Is there a later version of the Obj-C > bundle that covers this? That?s a tricky problem to solve (sort of). In the C grammar there are rules to mark #if 0 ? #endif as commented. This is a little more complex than so, as it needs to handle nesting of such preprocessor instructions, the #else case, etc. It also has a general #if(n?def)? match so that an #else belonging to an outer #if/ #else/#endif is not mistaken as belonging to the #if 0/#endif. Between the preprocessor conditionals, the C grammar includes $base, meaning full Objective-C, if that is the chosen language. But, in Objective-C methods are only matched between @implementation / @end. So it is not enough to include $base in the C grammar, it really wants something like $parent (referring to the rules which were active in the parent scope), though this functionality does not presently exist. One fix could be to always match methods (in the Objective-C grammar), another would be to not care about matching #if(n?def)? in the root scope -- I am actually not entirely sure we need to track it, since #else binds to the innermost conditional. But I?ll have to ponder this before making any changes to the grammar. From throw-away-1 at macromates.com Fri May 18 22:43:49 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sat, 19 May 2007 00:43:49 +0200 Subject: [TxMt] Blogging bundle patch for Wordpress error In-Reply-To: References: <10C10F58-3305-480B-8B5C-FEE94A771654@gmail.com> <5F5D2598-0321-449A-B0EC-417FFF690829@macromates.com> Message-ID: <6B013EB6-C752-4EAE-84BE-4A04BBF1389A@macromates.com> On 18. May 2007, at 17:14, Michael Jackson wrote: > [...] > However, in version 2.2, the line now looks like this: > > $post_date = mysql2date('Ymd\TH:i:s', $postdata['post_date_gmt']); > > I don't have access to an old copy of the database, so I don't know > exactly what the difference is between the 'post-date' and 'post- > date-gmt' values, but I'm guessing that it means that the > conversion using the get_gmt_from_date function is no longer > necessary. If you open the xmlrpc.php file in TextMate and selects Subversion ? Blame then you can hoover the mouse on teh revision number shown in the left column to see the log message for that revision :) Of course you can also just read the full log for the file. Maybe that will clear up why they changed what they did etc. > Also, I've found that the blogging bundle Comments and Pings > headers are broken in WordPress. If I try and edit a post that has > Comments and Pings turned on, they will always be turned off > whenever I commit the revised post, no matter what the headers say. What if you remove them? > Sorry about all the bother. I just wanted to let you know that the > blogging bundle is having issues with WordPress 2.2. Other than > that, keep up the great work on the blogging bundle! Ideally problems with a certain blogging system should be reported to the maintainers of that blogging system, especially if it?s only a particular version of their system which causes problems. From throw-away-1 at macromates.com Fri May 18 22:44:22 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sat, 19 May 2007 00:44:22 +0200 Subject: [TxMt] Submitting new snippets In-Reply-To: <79AE086E-B83B-434A-9165-3C58A301F4C2@tangledhelix.com> References: <4CD6DD0F-8DF7-4D1C-8CDD-56999FF9E746@dyce.com> <85248D6F-CBA2-4748-B25B-06011A5FCBA9@gmail.com> <79AE086E-B83B-434A-9165-3C58A301F4C2@tangledhelix.com> Message-ID: <40BD0628-560B-493D-BA93-701262609753@macromates.com> On 18. May 2007, at 22:55, Dan Lowe wrote: > In this case I wouldn't think that would matter, would it? I mean, > how often are you going to type "(," or ",," in normal > code, let alone? Yeah, I read it as just ?(? and ?,?. I see there was an extra ?,? now. From brianjlandau at gmail.com Sat May 19 19:49:56 2007 From: brianjlandau at gmail.com (Brian Landau) Date: Sat, 19 May 2007 15:49:56 -0400 Subject: [TxMt] Re: new shirt ideas/slogans In-Reply-To: References: <54F884F7-0A8D-41EE-9866-6AC235B47269@gmail.com> <21968D66-64A0-4A89-A0B8-8A89E0AC60FA@math.berkeley.edu> Message-ID: <577e3b40705191249q1e30979es80fbc45e6cc5723e@mail.gmail.com> How about on one side: "TextMate" with the logo and "I *heart* Allan" on the back - Brian On 5/18/07, spicyjalapeno at gmail.com wrote: > Chuck Norris has a Mate; why don't you? > > -- > ben.alpert > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From bchoate at gmail.com Sun May 20 06:29:24 2007 From: bchoate at gmail.com (Brad Choate) Date: Sat, 19 May 2007 23:29:24 -0700 Subject: [TxMt] Request for Diff bundle Message-ID: I use the Diff bundle a lot. I regularly do a 'svn diff | mate' command prior to check-ins. One of the things I typically do with larger sets of files is collapse all the diffs so there is one file per line. I can then examine each group of changes, and once happy with the review (or as they get committed), I will delete the collapsed "line". This is a tedious process because the foldings for a diff are not automatically done for me. This is one of many cases I've found where the folding separators cannot be described properly since the close of the fold is not a match for anything in particular, just the fact that a new fold is starting. (Another such case is for Markdown-- I'd like to provide foldings for the "# ..." header, down to the next available "# ..." header, but I can't express that.) So what I do is start at the top of the file, then hit Option+Shift +? which will select just that one file's diff somehow (I haven't investigated how TextMate knows to skip down to the next "Index..." line like that. Does it do so based on the lines identified as separators?). Then I hit ?+F1 to fold the selection. Again this is very tedious, especially for a large diff. I would be very happy if someone found a way to automate this process. Ideally, it should be possible to describe a folding marker whose end is identified by the start of a new fold, but I don't think it's possible today. -Brad From mummer at whitefalls.org Sun May 20 07:35:03 2007 From: mummer at whitefalls.org (Michael Sheets) Date: Sun, 20 May 2007 02:35:03 -0500 Subject: [TxMt] Request for Diff bundle In-Reply-To: References: Message-ID: <88D96370-0B91-4A20-B501-D311F4C9D689@whitefalls.org> On May 20, 2007, at 1:29 AM, Brad Choate wrote: > Again this is very tedious, especially for a large diff. I would > be very happy if someone found a way to automate this process. > Ideally, it should be possible to describe a folding marker whose > end is identified by the start of a new fold, but I don't think > it's possible today. Your right it is impossible with the current folding system. We'll have to wait and see if 2.0 changes that. :) For now this macro should do it: -------------- next part -------------- A non-text attachment was scrubbed... Name: Fold Diff Documents.tmMacro.zip Type: application/zip Size: 751 bytes Desc: not available URL: -------------- next part -------------- It beeps some at the end because I had to make it folded a lot of documents, but that appears to be the only downside. From bchoate at gmail.com Sun May 20 07:53:40 2007 From: bchoate at gmail.com (Brad Choate) Date: Sun, 20 May 2007 00:53:40 -0700 Subject: [TxMt] Request for Diff bundle In-Reply-To: <88D96370-0B91-4A20-B501-D311F4C9D689@whitefalls.org> References: <88D96370-0B91-4A20-B501-D311F4C9D689@whitefalls.org> Message-ID: Thanks, Michael. I was thinking about writing such a macro, but i wasn't satisfied that I couldn't make it process the whole document. This one stops after the first 18 foldings (running it again doesn't work since it starts with a select all command). But I changed it to remove the select all command and so forth so that it is repeatable now. The modified version is attached. (It would also be nice if you could instruct TM to continue running a macro as long as a search command or other action (such as moving down when you're already at the end of the document) didn't fail.) Thanks again! -Brad -------------- next part -------------- A non-text attachment was scrubbed... Name: Fold Diff Documents.tmMacro Type: application/octet-stream Size: 3501 bytes Desc: not available URL: -------------- next part -------------- On May 20, 2007, at 12:35 AM, Michael Sheets wrote: > On May 20, 2007, at 1:29 AM, Brad Choate wrote: > >> Again this is very tedious, especially for a large diff. I would >> be very happy if someone found a way to automate this process. >> Ideally, it should be possible to describe a folding marker whose >> end is identified by the start of a new fold, but I don't think >> it's possible today. > > Your right it is impossible with the current folding system. We'll > have to wait and see if 2.0 changes that. :) > > For now this macro should do it: > > > > It beeps some at the end because I had to make it folded a lot of > documents, but that appears to be the only downside. > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From dd at dyce.com Mon May 21 08:41:27 2007 From: dd at dyce.com (Richard Dyce) Date: Mon, 21 May 2007 09:41:27 +0100 Subject: [TxMt] Folding comments in PHP Message-ID: <73755D66-3924-43A6-8521-9DD3BABA59A1@dyce.com> Hi, Just wondering how I go about altering the setup to have folding block comments in a PHP file? I only need to fold doc-block type comments which I see have been designated as effectively ^/**$ - I'm not worried about blocks within functions. My doc comments can be quite voluminous, and it's frustrating seeing huge swathes of comments and little class xxxx {... stubs when I want to get an over view of the entire file... ;-) R -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2405 bytes Desc: not available URL: From info at halilkoklu.de Mon May 21 19:42:37 2007 From: info at halilkoklu.de (halk) Date: Mon, 21 May 2007 19:42:37 +0000 (UTC) Subject: [TxMt] Re: new shirt ideas/slogans References: <464CDBEE.9010308@gmail.com> <7BF3F794-116E-45A9-A6A7-6A65F27BB027@exitwound.org> <98323EE6-4EC6-43D2-BCDD-2D682C1C39C4@mac.com> Message-ID: Bill Bumgarner writes: ... > > Chuck Norris uses TextMate. > > That's great. Had a good laugh From jfalgueras at uma.es Mon May 21 21:28:54 2007 From: jfalgueras at uma.es (Juan Falgueras) Date: Mon, 21 May 2007 23:28:54 +0200 Subject: [TxMt] html pretty print Message-ID: Hi I used to need pretty print my C++ code for students and I have found the next simple script solves my problem in a cute way, since it shows me the formatted code in a separate window (output "Show as HTML") and then I can easily copy the source (Cmd-Opt-U) or the styled text (copying directly from the output window): ----- input "Selected text" or "Document" echo "
"

enscript --language=html -Ecpp -e -B --color \
   --header="$TM_FILENAME|$E|pag. $% de $=" --title="$TM_FILENAME" \
   -o- 2>/dev/null | \
perl -ne 'next if (1../
/i); last if (m|
|..1); print' echo "
" ------ output "Show as HTML" --- Save nothing, source.c I would like to generalize it for it to be used with other source code, not only C, what should be the better way? to have a table mapping modes with enscript input modes... ? Any help will be welcome. -- Juan F. From dougal at gmail.com Mon May 21 23:59:38 2007 From: dougal at gmail.com (Dougal) Date: Mon, 21 May 2007 19:59:38 -0400 Subject: [TxMt] html pretty print In-Reply-To: References: Message-ID: Have you tried "Create HTML from Document / Selection" in the TextMate bundle? On 5/21/07, Juan Falgueras wrote: > > > Hi > > I used to need pretty print my C++ code for students and I have found > the next simple script solves my problem in a cute way, since it > shows me the formatted code in a separate window (output "Show as > HTML") and then I can easily copy the source (Cmd-Opt-U) or the > styled text (copying directly from the output window): > > ----- input "Selected text" or "Document" > echo "
"
>
> enscript --language=html -Ecpp -e -B --color \
>    --header="$TM_FILENAME|$E|pag. $% de $=" --title="$TM_FILENAME" \
>    -o- 2>/dev/null | \
> perl -ne 'next if (1../
/i); last if (m|
|..1); print' > > echo "
" > ------ output "Show as HTML" > --- Save nothing, source.c > > > I would like to generalize it for it to be used with other source > code, not only C, what should be the better way? to have a table > mapping modes with enscript input modes... ? > > Any help will be welcome. > > > -- > Juan F. > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim at neologica.com.au Tue May 22 00:25:41 2007 From: tim at neologica.com.au (Tim Mansour) Date: Tue, 22 May 2007 10:25:41 +1000 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <464CDBEE.9010308@gmail.com> References: <464CDBEE.9010308@gmail.com> Message-ID: <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> "I Mate Therefore I Am" ... although I do like the Chuck Norris one, and I don't like the anti-BBEdit ones. Having said my piece, I would like someone to tell me: what is it with Americans' obsession with T-shirts? -- Tim Mansour From listsin at integrateddevcorp.com Tue May 22 00:31:23 2007 From: listsin at integrateddevcorp.com (Lists In@IDC) Date: Mon, 21 May 2007 20:31:23 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> Message-ID: <85BCB989-A353-4556-8ECC-8B8028EDF2C4@integrateddevcorp.com> On May 21, 2007, at 8:25 PM, Tim Mansour wrote: > "I Mate Therefore I Am" > > ... although I do like the Chuck Norris one, and I don't like the > anti-BBEdit ones. > > Having said my piece, I would like someone to tell me: what is it > with Americans' obsession with T-shirts? We have trouble with those little knobby things on the front of foreign shirts -- whatever they're called -- bunions or something. S From lists.cpruitt at cliffpruitt.com Tue May 22 15:00:55 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Tue, 22 May 2007 11:00:55 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> Message-ID: <8CAEE4C7-A150-4723-960A-882395EB89C0@cliffpruitt.com> I can't speak for all Americans, but for me, its two fold. First, they're comfortable. My wife likes seeing me in things with buttons but I can't fathom why anyone likes wearing that stuff. Second, a good t-shirt gives you a way to walk around shoving your opinion down everyone else's throat without actually having to expend any energy on communication. A TextMate shirt allows me to walk around saying "I use TextMate and if you don't you're a moron and I'm better than you". As an american I get to be both obscenely opinionated and lazy at the same time. Tee-shirts ARE the american dream! - Cliff P.S. This really shouldn't be taken literally or be taken as a slam on the American world view. I love our way of life (and, truth be told, I can be pretty stinkin opinionated) but if you can't poke fun at yourself you're just too stuffy for your own good. :-) On May 21, 2007, at 8:25 PM, Tim Mansour wrote: > Having said my piece, I would like someone to tell me: what is it > with Americans' obsession with T-shirts? From shane at techie.net Tue May 22 15:12:05 2007 From: shane at techie.net (Shane Liesegang) Date: Tue, 22 May 2007 15:12:05 +0000 (UTC) Subject: [TxMt] Extending existing grammar (css -> rcss) Message-ID: I recently added support for .rcss files to my Ruby on Rails project, those being the equivalent of .rhtml, but for stylesheets. I've been trying to make a grammar that gives me all the nice ERB autocompletion and syntax coloring that exists for .rhtml files, but seem to be running into issues with the scope selectors. My grammar, based on th HTML (Rails) one is here: http://pastie.textmate.org/63540 Using that, I get proper syntax coloring for embedded Ruby if I use it at the root level, but I still don't get autocomplete. And inside a CSS selector, I can't get anything. The output I'm getting: http://pastie.textmate.org/63543 Is there a way to specify conditional scope within a grammar? It seems like once it hits the CSS selector, it doesn't recognize ERB anymore. From harrison at Math.Berkeley.EDU Tue May 22 15:31:26 2007 From: harrison at Math.Berkeley.EDU (Jenny Harrison) Date: Tue, 22 May 2007 08:31:26 -0700 Subject: [TxMt] Re: new shirt ideas/slogans In-Reply-To: References: <54F884F7-0A8D-41EE-9866-6AC235B47269@gmail.com> Message-ID: <68E24A4F-7A57-4F04-A09B-02BA8F13E679@math.berkeley.edu> I had an idea, but am not sure if someone else has thought of it. Text ? Mate Jenny > _______________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From eric at aplosmedia.com Tue May 22 15:41:59 2007 From: eric at aplosmedia.com (Eric Coleman) Date: Tue, 22 May 2007 11:41:59 -0400 Subject: [TxMt] Re: new shirt ideas/slogans In-Reply-To: <68E24A4F-7A57-4F04-A09B-02BA8F13E679@math.berkeley.edu> References: <54F884F7-0A8D-41EE-9866-6AC235B47269@gmail.com> <68E24A4F-7A57-4F04-A09B-02BA8F13E679@math.berkeley.edu> Message-ID: <6e174baf0705220841h7c853d20l35febb87dbc248b3@mail.gmail.com> was breifly mentioned, though I like the idea of the tab trigger... On 5/22/07, Jenny Harrison wrote: > I had an idea, but am not sure if someone else has thought of it. > > Text ? Mate > > > Jenny > > > _______________________________________________________ > > For new threads USE THIS: textmate at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From ml at syntheticplayground.com Tue May 22 16:19:10 2007 From: ml at syntheticplayground.com (Corey Jewett) Date: Tue, 22 May 2007 09:19:10 -0700 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <8CAEE4C7-A150-4723-960A-882395EB89C0@cliffpruitt.com> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <8CAEE4C7-A150-4723-960A-882395EB89C0@cliffpruitt.com> Message-ID: <9F3E0DE2-5D7E-4BDE-A638-98E95A08ACCD@syntheticplayground.com> On May 22, 2007, at 8:00 AM, Cliff Pruitt wrote: > I can't speak for all Americans, but for me, its two fold. > First, they're comfortable. My wife likes seeing me in things with > buttons but I can't fathom why anyone likes wearing that stuff. > Second, a good t-shirt gives you a way to walk around shoving your > opinion down everyone else's throat without actually having to > expend any energy on communication. A TextMate shirt allows me to > walk around saying "I use TextMate and if you don't you're a moron > and I'm better than you". > > As an american I get to be both obscenely opinionated and lazy at > the same time. Tee-shirts ARE the american dream! > > - Cliff > > P.S. This really shouldn't be taken literally or be taken as a slam > on the American world view. I love our way of life (and, truth be > told, I can be pretty stinkin opinionated) but if you can't poke > fun at yourself you're just too stuffy for your own good. > :-) Front: As an american I get to be both obscenely opinionated and lazy at the same time. Back: Tee-shirts ARE the american dream! I'd wear that. Go Cliff. ;) Corey > > > On May 21, 2007, at 8:25 PM, Tim Mansour wrote: > >> Having said my piece, I would like someone to tell me: what is it >> with Americans' obsession with T-shirts? > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From harrison at Math.Berkeley.EDU Tue May 22 17:07:12 2007 From: harrison at Math.Berkeley.EDU (Jenny Harrison) Date: Tue, 22 May 2007 10:07:12 -0700 Subject: [TxMt] Re: new shirt ideas/slogans In-Reply-To: <6e174baf0705220841h7c853d20l35febb87dbc248b3@mail.gmail.com> References: <54F884F7-0A8D-41EE-9866-6AC235B47269@gmail.com> <68E24A4F-7A57-4F04-A09B-02BA8F13E679@math.berkeley.edu> <6e174baf0705220841h7c853d20l35febb87dbc248b3@mail.gmail.com> Message-ID: In that case, I can say that the idea is brilliant! > was breifly mentioned, though I like the idea of the tab trigger... > > On 5/22/07, Jenny Harrison wrote: >> I had an idea, but am not sure if someone else has thought of it. >> >> Text ? Mate >> >> >> Jenny >> >> > _______________________________________________________ >> > For new threads USE THIS: textmate at 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 at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From chris at cjack.com Tue May 22 17:28:30 2007 From: chris at cjack.com (Chris Thomas) Date: Tue, 22 May 2007 13:28:30 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <8CAEE4C7-A150-4723-960A-882395EB89C0@cliffpruitt.com> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <8CAEE4C7-A150-4723-960A-882395EB89C0@cliffpruitt.com> Message-ID: > My wife likes seeing me in things with buttons but I can't fathom > why anyone likes wearing that stuff. http://www.ultimate-guitar.com/tabs/z/zz_top/sharp_dressed_man_tab.htm Chris From akakie at gmail.com Tue May 22 18:56:36 2007 From: akakie at gmail.com (Lewis Overton) Date: Tue, 22 May 2007 10:56:36 -0800 Subject: [TxMt] Re: new shirt ideas/slogans In-Reply-To: <68E24A4F-7A57-4F04-A09B-02BA8F13E679@math.berkeley.edu> References: <54F884F7-0A8D-41EE-9866-6AC235B47269@gmail.com> <68E24A4F-7A57-4F04-A09B-02BA8F13E679@math.berkeley.edu> Message-ID: First or not, I like it. For whatever that's worth. Lewy On 5/22/07, Jenny Harrison wrote: > > I had an idea, but am not sure if someone else has thought of it. > > Text ? Mate > > > Jenny > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tylerhall at gmail.com Tue May 22 19:25:41 2007 From: tylerhall at gmail.com (Tyler Hall) Date: Tue, 22 May 2007 14:25:41 -0500 Subject: [TxMt] Re: new shirt ideas/slogans In-Reply-To: References: <54F884F7-0A8D-41EE-9866-6AC235B47269@gmail.com> <68E24A4F-7A57-4F04-A09B-02BA8F13E679@math.berkeley.edu> Message-ID: >> Text ? Mate I agree. Much BBetter than my suggestion :) On 5/22/07, Lewis Overton wrote: > First or not, I like it. For whatever that's worth. > > Lewy > > On 5/22/07, Jenny Harrison wrote: > > I had an idea, but am not sure if someone else has thought of it. > > > > Text ? Mate > > > > > > Jenny > > > > > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From xcambar at gmail.com Tue May 22 20:19:03 2007 From: xcambar at gmail.com (Xavier Cambar) Date: Tue, 22 May 2007 22:19:03 +0200 Subject: [TxMt] SKim reload file Message-ID: <8E71EEEF-CEE9-41AB-9581-34E327D85BBF@gmail.com> Hi, I'm experiencing some trouble running the auto-reload feature of Skim. It seems that Skim doesn't wait for the pdf to be closed by the TxMt command. Looks like it was trying to reload the file as soon as a single bit is added to it, imho. What's more, a warning popup tells me Skim is "Unable to open the file", but when TxMt is done compiling (displaying the # of errors and warnings in the output window), I can reload the file successfully. Have you ever noticed such a behaviour, Skim users? Any ideas of workarounds? Xavier Cambar From eli at markelikalderon.com Tue May 22 21:36:59 2007 From: eli at markelikalderon.com (Mark Eli Kalderon) Date: Tue, 22 May 2007 22:36:59 +0100 Subject: [TxMt] SKim reload file In-Reply-To: <8E71EEEF-CEE9-41AB-9581-34E327D85BBF@gmail.com> References: <8E71EEEF-CEE9-41AB-9581-34E327D85BBF@gmail.com> Message-ID: <48A9DC92-1B87-4D2D-BD41-9CCC12388754@markelikalderon.com> I have experienced the same behavior. If you switch the focus away from Skim, weirdly, the pdf loads then. Might be a good idea to post a query to the Skim mailing list. Best, Mark On May 22 2007, at 21:19, Xavier Cambar wrote: > Hi, > I'm experiencing some trouble running the auto-reload feature of Skim. > It seems that Skim doesn't wait for the pdf to be closed by the > TxMt command. > Looks like it was trying to reload the file as soon as a single > bit is added to it, imho. > > What's more, a warning popup tells me Skim is "Unable to open the > file", but when TxMt is done compiling (displaying the # of errors > and warnings in the output window), I can reload the file > successfully. > > Have you ever noticed such a behaviour, Skim users? > Any ideas of workarounds? > > Xavier Cambar > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From skiadas at hanover.edu Tue May 22 21:41:54 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Tue, 22 May 2007 17:41:54 -0400 Subject: [TxMt] SKim reload file In-Reply-To: <8E71EEEF-CEE9-41AB-9581-34E327D85BBF@gmail.com> References: <8E71EEEF-CEE9-41AB-9581-34E327D85BBF@gmail.com> Message-ID: <9A881CE1-046B-4C33-93F8-057E1A43D655@hanover.edu> On May 22, 2007, at 4:19 PM, Xavier Cambar wrote: > Hi, > I'm experiencing some trouble running the auto-reload feature of Skim. > It seems that Skim doesn't wait for the pdf to be closed by the > TxMt command. > Looks like it was trying to reload the file as soon as a single > bit is added to it, imho. > What's more, a warning popup tells me Skim is "Unable to open the > file", but when TxMt is done compiling (displaying the # of errors > and warnings in the output window), I can reload the file > successfully. > > Have you ever noticed such a behaviour, Skim users? > Any ideas of workarounds? I don't have that problem (Skim Version 0.3 (v3) ). Does TM have any problems compiling the file perhaps? Have you tried with smaller files that would compile quicker? > Xavier Cambar Haris Skiadas Department of Mathematics and Computer Science Hanover College From gkuan at cs.uchicago.edu Tue May 22 22:27:12 2007 From: gkuan at cs.uchicago.edu (George Kuan) Date: Tue, 22 May 2007 17:27:12 -0500 Subject: [TxMt] Re: Standard ML Bundle Message-ID: Hi, Is there anyone actively maintaining the Standard ML bundle? George From xcambar at gmail.com Tue May 22 23:09:12 2007 From: xcambar at gmail.com (Xavier Cambar) Date: Wed, 23 May 2007 01:09:12 +0200 Subject: [TxMt] SKim reload file In-Reply-To: <9A881CE1-046B-4C33-93F8-057E1A43D655@hanover.edu> References: <8E71EEEF-CEE9-41AB-9581-34E327D85BBF@gmail.com> <9A881CE1-046B-4C33-93F8-057E1A43D655@hanover.edu> Message-ID: <2D7BEAAF-B597-4862-ACBC-1CE0788037A8@gmail.com> Le 22 mai 07 ? 23:41, Charilaos Skiadas a ?crit : > On May 22, 2007, at 4:19 PM, Xavier Cambar wrote: > >> Hi, >> I'm experiencing some trouble running the auto-reload feature of >> Skim. >> It seems that Skim doesn't wait for the pdf to be closed by the >> TxMt command. >> Looks like it was trying to reload the file as soon as a single >> bit is added to it, imho. > >> What's more, a warning popup tells me Skim is "Unable to open the >> file", but when TxMt is done compiling (displaying the # of errors >> and warnings in the output window), I can reload the file >> successfully. >> >> Have you ever noticed such a behaviour, Skim users? >> Any ideas of workarounds? > > I don't have that problem (Skim Version 0.3 (v3) ). Does TM have > any problems compiling the file perhaps? Have you tried with > smaller files that would compile quicker? I've just tried... it works. Maybe the first time I feel disapointed when something runs fine. >> Xavier Cambar > > Haris Skiadas > Department of Mathematics and Computer Science > Hanover College > > > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From dana.kashubeck at riemer.com Wed May 23 00:57:51 2007 From: dana.kashubeck at riemer.com (Dana Kashubeck) Date: Tue, 22 May 2007 20:57:51 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <8CAEE4C7-A150-4723-960A-882395EB89C0@cliffpruitt.com> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <8CAEE4C7-A150-4723-960A-882395EB89C0@cliffpruitt.com> Message-ID: <4653918F.8000709@riemer.com> On 5/22/07 11:00 AM, Cliff Pruitt wrote: > I can't speak for all Americans, but for me, its two fold. > First, they're comfortable. My wife likes seeing me in things with > buttons but I can't fathom why anyone likes wearing that stuff. > Second, a good t-shirt gives you a way to walk around shoving your > opinion down everyone else's throat without actually having to expend > any energy on communication. A TextMate shirt allows me to walk around > saying "I use TextMate and if you don't you're a moron and I'm better > than you". > > As an american I get to be both obscenely opinionated and lazy at the > same time. Tee-shirts ARE the american dream! I don't think anyone could have explained it any better. That's exactly what I was thinking, too. :) > > - Cliff > > P.S. This really shouldn't be taken literally or be taken as a slam on > the American world view. I love our way of life (and, truth be told, I > can be pretty stinkin opinionated) but if you can't poke fun at yourself > you're just too stuffy for your own good. > :-) -- ------------------------------------- Dana Kashubeck Systems Manager Riemer Reporting Service Inc. http://www.riemer.com Phone: 440-835-2477 x. 125 Fax: 440-835-4594 ------------------------------------- -------------- next part -------------- A non-text attachment was scrubbed... Name: dana.kashubeck.vcf Type: text/x-vcard Size: 350 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3269 bytes Desc: S/MIME Cryptographic Signature URL: From dana.kashubeck at riemer.com Wed May 23 01:04:55 2007 From: dana.kashubeck at riemer.com (Dana Kashubeck) Date: Tue, 22 May 2007 21:04:55 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> Message-ID: <46539337.2080901@riemer.com> On 5/21/07 8:25 PM, Tim Mansour wrote: > "I Mate Therefore I Am" Well, so far this is my favorite. Although the one about the only mate that will keep you up all night is a really close second. > ... although I do like the Chuck Norris one, and I don't like the > anti-BBEdit ones. +1 > Having said my piece, I would like someone to tell me: what is it with > Americans' obsession with T-shirts? I can't speak for the guys, but as a girl I find them to be all-purpose: - Comfortable day-wear - PJs -- no bottom needed - When worn out they make a great dust-cloth - Can make a diaper in a pinch (been there, done that) - Worn correctly, the baby-doll T's will get you free drinks without being too revealing ;) All this and I get to be opinionated! What more do you need to know? -- ------------------------------------- Dana Kashubeck Systems Manager Riemer Reporting Service Inc. http://www.riemer.com Phone: 440-835-2477 x. 125 Fax: 440-835-4594 ------------------------------------- -------------- next part -------------- A non-text attachment was scrubbed... Name: dana.kashubeck.vcf Type: text/x-vcard Size: 350 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3269 bytes Desc: S/MIME Cryptographic Signature URL: From dana.kashubeck at riemer.com Wed May 23 01:08:03 2007 From: dana.kashubeck at riemer.com (Dana Kashubeck) Date: Tue, 22 May 2007 21:08:03 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <643FDD18-8073-4132-B67E-118C044D36CC@gmail.com> References: <464CDBEE.9010308@gmail.com> <643FDD18-8073-4132-B67E-118C044D36CC@gmail.com> Message-ID: <465393F3.3020101@riemer.com> On 5/18/07 2:03 AM, Michael Jackson wrote: > TextMate: the only mate who will rock your world all night long! ROTFLOL!!! > (As I write this, it's midnight and my wife is sleeping next to me...) : ) I'm glad I'm not the only one -- I'm almost always up coding waaaaaaaaaaay after my husband goes to sleep. He might be a bit offended about this slogan, though ;) > Michael > > > On May 17, 2007, at 4:49 PM, Jacob Rus wrote: > >> Hello friends, >> >> TextMate desperately needs some updated T-shirts, but behind every >> great T shirt is a great T shirt idea. So, even if you have no >> artistic talent whatsoever, you can think up ideas for slogans and >> designs. And even slogans that don't make it onto shirts could >> probably be useful for something. >> >> Anyway, once some good ideas have been offered up, it will be possible >> to make some design mockups based on those. I'm happy to spend a bit >> of time sometime doing some very basic designery stuff, though I'm >> hardly an expert, and other more qualified designers would of course >> be welcome to draw up shirts too. >> >> But first let's see if as a group we can't come up with some killer >> slogans. >> >> Anyone who contributes an idea/slogan, or a design, which ends up >> being printed on the shirts gets one free (says Allan; I'm a poor >> student and can't afford such things ;) >> >> To start off, I was thinking it could be something along the lines of >> "check and mate". >> >> -Jacob Rus >> >> >> ______________________________________________________________________ >> For new threads USE THIS: textmate at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate -- ------------------------------------- Dana Kashubeck Systems Manager Riemer Reporting Service Inc. http://www.riemer.com Phone: 440-835-2477 x. 125 Fax: 440-835-4594 ------------------------------------- -------------- next part -------------- A non-text attachment was scrubbed... Name: dana.kashubeck.vcf Type: text/x-vcard Size: 350 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3269 bytes Desc: S/MIME Cryptographic Signature URL: From roger.roelofs at gmail.com Wed May 23 01:27:35 2007 From: roger.roelofs at gmail.com (Roger Roelofs) Date: Tue, 22 May 2007 21:27:35 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <465393F3.3020101@riemer.com> References: <464CDBEE.9010308@gmail.com> <643FDD18-8073-4132-B67E-118C044D36CC@gmail.com> <465393F3.3020101@riemer.com> Message-ID: Dana / list, On May 22, 2007, at 9:08 PM, Dana Kashubeck wrote: > On 5/18/07 2:03 AM, Michael Jackson wrote: >> TextMate: the only mate who will rock your world all night long! > ROTFLOL!!! > >> (As I write this, it's midnight and my wife is sleeping next to >> me...) : ) > I'm glad I'm not the only one -- I'm almost always up coding > waaaaaaaaaaay after my husband goes to sleep. He might be a bit > offended about this slogan, though ;) I think it's an occupational hazard, at least if you can call a passion for elegant code an occupation :-). So far, my favorite is a slight alteration of an earlier suggestion Mate for Life -- Roger Roelofs From jfalgueras at uma.es Wed May 23 02:03:58 2007 From: jfalgueras at uma.es (Juan Falgueras) Date: Wed, 23 May 2007 04:03:58 +0200 Subject: [TxMt] html pretty print Message-ID: <0E3FCBF3-043D-434E-9885-55C74C680C02@uma.es> Thanks Dougal, it is very impressive, really. ...but, why it doesn't colour when you give it selections? ehmmm I usually need to cut functions, etc... but anyway the Brad Choate solution is much much better than the enscript one. Thanks Is there some trick for make B. Choate script to colour portions of text? Thanks! > De: Dougal > Fecha: 22 de mayo de 2007 01:59:38 GMT+02:00 > Para: "TextMate users" > Asunto: Re: [TxMt] html pretty print > Responder a: TextMate users > > Have you tried "Create HTML from Document / Selection" in the > TextMate bundle? > > On 5/21/07, Juan Falgueras < jfalgueras at uma.es> wrote: > > Hi > > I used to need pretty print my C++ code for students and I have found > the next simple script solves my problem in a cute way, since it > shows me the formatted code in a separate window (output "Show as > HTML") and then I can easily copy the source (Cmd-Opt-U) or the > styled text (copying directly from the output window): > > ----- input "Selected text" or "Document" > echo "
"
>
> enscript --language=html -Ecpp -e -B --color \
>    --header="$TM_FILENAME|$E|pag. $% de $=" --title="$TM_FILENAME" \
>    -o- 2>/dev/null | \
> perl -ne 'next if (1../
/i); last if (m|
|..1); print' > > echo "
" > ------ output "Show as HTML" > --- Save nothing, source.c > > > I would like to generalize it for it to be used with other source > code, not only C, what should be the better way? to have a table > mapping modes with enscript input modes... ? > > Any help will be welcome. > > > -- > Juan F. -------------- next part -------------- An HTML attachment was scrubbed... URL: From jacobolus at gmail.com Wed May 23 02:32:26 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Tue, 22 May 2007 22:32:26 -0400 Subject: [TxMt] Re: html pretty print In-Reply-To: <0E3FCBF3-043D-434E-9885-55C74C680C02@uma.es> References: <0E3FCBF3-043D-434E-9885-55C74C680C02@uma.es> Message-ID: Juan Falgueras wrote: > ....but, why it doesn't colour when you give it selections? ehmmm > > I usually need to cut functions, etc... > > but anyway the Brad Choate solution is much much better than the > enscript one. Thanks > > Is there some trick for make B. Choate script to colour portions of text? You're going to have to explain what you're having trouble with. I have no trouble turning selections to html with that command... -Jacob From amaxwell at mac.com Wed May 23 02:37:04 2007 From: amaxwell at mac.com (Adam R. Maxwell) Date: Tue, 22 May 2007 19:37:04 -0700 Subject: [TxMt] SKim reload file In-Reply-To: <8E71EEEF-CEE9-41AB-9581-34E327D85BBF@gmail.com> References: <8E71EEEF-CEE9-41AB-9581-34E327D85BBF@gmail.com> Message-ID: <4A991088-C8DA-4867-8816-26D797A0FD17@mac.com> On May 22, 2007, at 13:19, Xavier Cambar wrote: > Hi, > I'm experiencing some trouble running the auto-reload feature of Skim. > It seems that Skim doesn't wait for the pdf to be closed by the TxMt > command. > Looks like it was trying to reload the file as soon as a single bit > is added to it, imho. > > What's more, a warning popup tells me Skim is "Unable to open the > file", but when TxMt is done compiling (displaying the # of errors > and warnings in the output window), I can reload the file > successfully. > > Have you ever noticed such a behaviour, Skim users? > Any ideas of workarounds? I haven't seen it, but it sounds like a problem that Christiaan (main Skim developer) fixed this morning. If you can build Skim from source (requires subversion and Xcode installed), it would be nice to know if that truly was the problem. -- Adam From alaskamike at gmail.com Wed May 23 05:29:53 2007 From: alaskamike at gmail.com (Mike Mellor) Date: Tue, 22 May 2007 21:29:53 -0800 Subject: [TxMt] Plain Text Wiki Bundle Message-ID: <5C27C925-EBDA-4A9F-867A-E7DF871797F0@gmail.com> This is so cool - It's a tool that I have wanted to have in TextMate, and it also reinforces just how flexible TextMate can be! Mike -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2423 bytes Desc: not available URL: From eric at aplosmedia.com Wed May 23 06:45:13 2007 From: eric at aplosmedia.com (Eric Coleman) Date: Wed, 23 May 2007 02:45:13 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <46539337.2080901@riemer.com> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> Message-ID: On May 22, 2007, at 9:04 PM, Dana Kashubeck wrote: >> Having said my piece, I would like someone to tell me: what is it >> with Americans' obsession with T-shirts? > I can't speak for the guys, but as a girl I find them to be all- > purpose: > > - Comfortable day-wear > - PJs -- no bottom needed > - When worn out they make a great dust-cloth > - Can make a diaper in a pinch (been there, done that) > - Worn correctly, the baby-doll T's will get you free drinks > without being too revealing ;) > > All this and I get to be opinionated! What more do you need to know? > plz tell me I'm not the only one who was completely distracting by the above.... From tim at neologica.com.au Wed May 23 07:19:01 2007 From: tim at neologica.com.au (Tim Mansour) Date: Wed, 23 May 2007 17:19:01 +1000 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <8CAEE4C7-A150-4723-960A-882395EB89C0@cliffpruitt.com> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <8CAEE4C7-A150-4723-960A-882395EB89C0@cliffpruitt.com> Message-ID: On 23/05/2007, at 1:00 am, Cliff Pruitt wrote: > As an american I get to be both obscenely opinionated and lazy at > the same time. Tee-shirts ARE the american dream! Now see there Cliff ... you had a great piece of satire and then you had to go and ruin it with a disclaimer! :-) -- Tim Mansour From dd at dyce.com Wed May 23 07:25:02 2007 From: dd at dyce.com (Richard Dyce) Date: Wed, 23 May 2007 08:25:02 +0100 Subject: [TxMt] Folding comments in PHP In-Reply-To: <73755D66-3924-43A6-8521-9DD3BABA59A1@dyce.com> References: <73755D66-3924-43A6-8521-9DD3BABA59A1@dyce.com> Message-ID: <3A4A15E3-7D2E-4D20-B6C2-0AFD9CDEA329@dyce.com> Hi, Not sure about the etiquette on follow-ups to unanswered questions, but I've tried looking at the grammar, and noticed that foldingStartMarker = '(/\*|\{\s*$|<< Hi, > > Just wondering how I go about altering the setup to have folding > block comments in a PHP file? I only need to fold doc-block type > comments which I see have been designated as effectively ^/**$ - > I'm not worried about blocks within functions. My doc comments can > be quite voluminous, and it's frustrating seeing huge swathes of > comments and little class xxxx {... stubs when I want to get an > over view of the entire file... > > ;-) > > R > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2405 bytes Desc: not available URL: From mummer at whitefalls.org Wed May 23 07:52:27 2007 From: mummer at whitefalls.org (Michael Sheets) Date: Wed, 23 May 2007 02:52:27 -0500 Subject: [TxMt] Folding comments in PHP In-Reply-To: <3A4A15E3-7D2E-4D20-B6C2-0AFD9CDEA329@dyce.com> References: <73755D66-3924-43A6-8521-9DD3BABA59A1@dyce.com> <3A4A15E3-7D2E-4D20-B6C2-0AFD9CDEA329@dyce.com> Message-ID: <0B7A8B3D-5595-4CDE-BE93-AF2F0DB386E6@whitefalls.org> On May 23, 2007, at 2:25 AM, Richard Dyce wrote: > Not sure about the etiquette on follow-ups to unanswered questions, > but I've tried looking at the grammar, > and noticed that Was hoping that someone more familiar to PHP would answer, but reading your response there are a few things to note. Your looking in the wrong grammar, PHP technically works when selected directly but your meant to use the HTML grammar when editing PHP. Hence it is the HTML foldings that are active not PHP. (Embedded grammars don't bring along their foldings, only the patterns.) If you directly select PHP the comments will fold (provided the indention is the same), they are not part of the HTML foldings though, so you'd have to add them there. From zvistrash at gmail.com Wed May 23 09:12:22 2007 From: zvistrash at gmail.com (Zvi Biener) Date: Wed, 23 May 2007 11:12:22 +0200 Subject: [TxMt] tying external action to actions in Textmate Message-ID: <04788A11-E9C9-4B14-9183-D233DAA13A50@gmail.com> Dear All, Is there anyway to "tie" actions in other applications to actions in Textmate? For example, I'd like the opening of a new file in Textmate (by the file menu or input manager) to also initiate my timer program (through an applescript, probably). Is this possible? Thanks, Zvi Biener From dd at dyce.com Wed May 23 09:15:37 2007 From: dd at dyce.com (Richard Dyce) Date: Wed, 23 May 2007 10:15:37 +0100 Subject: [TxMt] Folding comments in PHP In-Reply-To: <0B7A8B3D-5595-4CDE-BE93-AF2F0DB386E6@whitefalls.org> References: <73755D66-3924-43A6-8521-9DD3BABA59A1@dyce.com> <3A4A15E3-7D2E-4D20-B6C2-0AFD9CDEA329@dyce.com> <0B7A8B3D-5595-4CDE-BE93-AF2F0DB386E6@whitefalls.org> Message-ID: <66B2B373-CEC6-4753-B10E-E6D9BA0C4858@dyce.com> Ah ha! (One forehead slap later!) Thanks Michael! FWIW the following alterations to the HTML language seems to do the trick, with (as yet) no perceived fallout.... foldingStartMarker = '(?x) (<(?i:head|body|table|thead|tbody|tfoot|tr|div|select|fieldset| style|script|ul|ol|form|dl)\b.*?> |)$ |\{\{?(if|foreach|capture|literal|foreach|php|section|strip) |\{\s*($|\?>\s*$|//|/\*(.*\*/\s*$|(?!.*?\*/))) |^\s*/\*\*$ # added for folding docblocks )'; foldingStopMarker = '(?x) ( |^(?!.*?$ |\{\{?/(if|foreach|capture|literal|foreach|php|section|strip) |^[^{]*\} |^\s*\*/$ # added for folding docblocks )'; Thanks. R -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2405 bytes Desc: not available URL: From jnutting at gmail.com Wed May 23 09:31:09 2007 From: jnutting at gmail.com (Jack Nutting) Date: Wed, 23 May 2007 11:31:09 +0200 Subject: [TxMt] Re: new shirt ideas/slogans In-Reply-To: References: <54F884F7-0A8D-41EE-9866-6AC235B47269@gmail.com> <68E24A4F-7A57-4F04-A09B-02BA8F13E679@math.berkeley.edu> Message-ID: +1 for Text ? Mate ! -- // jack // http://www.nuthole.com From ciawal at gmail.com Wed May 23 09:34:34 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Wed, 23 May 2007 10:34:34 +0100 Subject: [TxMt] Re: new shirt ideas/slogans In-Reply-To: References: <54F884F7-0A8D-41EE-9866-6AC235B47269@gmail.com> <68E24A4F-7A57-4F04-A09B-02BA8F13E679@math.berkeley.edu> Message-ID: <6358376F-C2F3-47C4-AE33-424173028F8C@gmail.com> Check? Mate On 23 May 2007, at 10:31, Jack Nutting wrote: > +1 for Text ? Mate ! > > -- > // jack > // http://www.nuthole.com > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From james at vennt.net Wed May 23 11:56:05 2007 From: james at vennt.net (james at vennt.net) Date: Wed, 23 May 2007 04:56:05 -0700 (PDT) Subject: [TxMt] List all colours in a CSS file command Message-ID: <1838.80.229.93.65.1179921365.squirrel@webmail.vennt.net> I've made a command which will list all colours in a CSS file as a list of swatches. At the minute it only does Hex colours also I would like it if you could click colours and it would jump to them in your document but I lack the ruby skills as I'm sure you will notice from the shoddy "colourArrayToTrim.each" bit. Anyway some people might find it useful input:entire document output:show as HTML activation:Key cmd+shift+opt+ctrl+c (ALL modifiers + C, to show ALL colours ;) ) scope: source.css Code as follows: #!/usr/bin/env ruby file = STDIN.read fileName = ENV['TM_FILENAME'] hex = Regexp.new(/(#(\d|[a-f]|[A-F]){3,6})/) colourArrayToTrim = file.scan(hex) colourArray = [] colourArrayToTrim.each { |colour| colourArray.push colour.shift } puts ' Colours ' puts "

Colours used #{fileName}

" colourArray.each { |colour| puts "
#{colour}
" } puts " " From eknapp at gmail.com Wed May 23 13:27:38 2007 From: eknapp at gmail.com (Eric Knapp) Date: Wed, 23 May 2007 08:27:38 -0500 Subject: [TxMt] Plain Text Wiki Bundle In-Reply-To: <5C27C925-EBDA-4A9F-867A-E7DF871797F0@gmail.com> References: <5C27C925-EBDA-4A9F-867A-E7DF871797F0@gmail.com> Message-ID: <3531474a0705230627r764a628akb8e47bdeaf04172f@mail.gmail.com> I think it's cool too. I am already using it and I'm starting to think of more ways to use it. What are some uses people are coming up with? I'm starting with a work and time log for my summer Rails contract. -Eric On 5/23/07, Mike Mellor wrote: > > This is so cool - > > > It's a tool that I have wanted to have in TextMate, and it also > reinforces just how flexible TextMate can be! > > Mike > > > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From oblivious at subtlegradient.com Wed May 23 13:44:29 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Wed, 23 May 2007 09:44:29 -0400 Subject: [TxMt] List all colours in a CSS file command In-Reply-To: <1838.80.229.93.65.1179921365.squirrel@webmail.vennt.net> References: <1838.80.229.93.65.1179921365.squirrel@webmail.vennt.net> Message-ID: <33A9A24F-2A7D-4DA1-88A8-D5A59E111051@subtlegradient.com> On May 23, 2007, at 7:56 AM, james at vennt.net wrote: > I've made a command which will list all colours in a CSS file as a > list of > swatches. Funny, me too. Experimental bundle: Show Hex Colors http://macromates.com/svn/Bundles/trunk/Bundles/Experimental.tmbundle/ Commands/Show%20Hex%20Colors.tmCommand This one just lists all your hex colors as swatches, sorted by hue. Replace Hex Colors http://macromates.com/svn/Bundles/trunk/Bundles/Experimental.tmbundle/ Commands/Replace%20Hex%20Colors.tmCommand This one allows you to click the swatches and change the color using the Apple Color Picker. It then replaces those hex values in your document. thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From jacobolus at gmail.com Wed May 23 13:45:05 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Wed, 23 May 2007 09:45:05 -0400 Subject: [TxMt] Re: Plain Text Wiki Bundle In-Reply-To: <3531474a0705230627r764a628akb8e47bdeaf04172f@mail.gmail.com> References: <5C27C925-EBDA-4A9F-867A-E7DF871797F0@gmail.com> <3531474a0705230627r764a628akb8e47bdeaf04172f@mail.gmail.com> Message-ID: Eric Knapp wrote: > I think it's cool too. I am already using it and I'm starting to think of > more ways to use it. What are some uses people are coming up with? I'm > starting with a work and time log for my summer Rails contract. > > Mike Mellor: >> This is so cool - >> >> >> It's a tool that I have wanted to have in TextMate, and it also >> reinforces just how flexible TextMate can be! You guys never saw the experimental wiki bundle in svn? From lists at interdisco.net Wed May 23 13:58:51 2007 From: lists at interdisco.net (Oliver Hagmann) Date: Wed, 23 May 2007 15:58:51 +0200 Subject: [TxMt] Re: Plain Text Wiki Bundle In-Reply-To: References: <5C27C925-EBDA-4A9F-867A-E7DF871797F0@gmail.com> <3531474a0705230627r764a628akb8e47bdeaf04172f@mail.gmail.com> Message-ID: <30B8AEAD-FE4F-412E-86DF-11521D5111D8@interdisco.net> On 23.05.2007, at 15:45, Jacob Rus wrote: > Eric Knapp wrote: >> I think it's cool too. I am already using it and I'm starting to >> think of >> more ways to use it. What are some uses people are coming up with? >> I'm >> starting with a work and time log for my summer Rails contract. > > >> Mike Mellor: >>> This is so cool - >>> >>> >>> It's a tool that I have wanted to have in TextMate, and it also >>> reinforces just how flexible TextMate can be! > > You guys never saw the experimental wiki bundle in svn? No. I just activated the bundle and tried the "Show Wiki" command. It gives me a blank page. What does it do? How does it work? Oliver From lists.cpruitt at cliffpruitt.com Wed May 23 14:12:41 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Wed, 23 May 2007 10:12:41 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <46539337.2080901@riemer.com> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> Message-ID: On May 22, 2007, at 9:04 PM, Dana Kashubeck wrote: > I can't speak for the guys, but as a girl I find them to be all- > purpose: > ... > - When worn out they make a great dust-cloth > - Can make a diaper in a pinch (been there, done that) DEFINITELY not speaking for the guys... ;-) - Cliff From james at vennt.net Wed May 23 14:15:09 2007 From: james at vennt.net (james at vennt.net) Date: Wed, 23 May 2007 07:15:09 -0700 (PDT) Subject: [TxMt] List all colours in a CSS file command Message-ID: <2239.80.229.93.65.1179929709.squirrel@webmail.vennt.net> I was in two minds over bothering to write this because I was shocked you hadn't already Thomas. Looks like I chose wrong :) However I had some spare time this afternoon and added line numbers and made the links work on mine. #!/usr/bin/env ruby myFile = STDIN.read fileName = ENV['TM_FILENAME'] hex = Regexp.new(/(#(\d|[a-f]|[A-F]){3,6})/) def swatch(colour,lineNumber) puts "
#{colour}
#{lineNumber}
" end puts ' Colours ' puts "

Colours used #{fileName}

" lines = myFile.split("\n") counter = 1 lines.each do |line| colourArrayToTrim = line.scan(hex) colourArray = [] colourArrayToTrim.each do |colour| colourArray.push colour.shift end colourArray.each do |colour| swatch(colour,counter) end counter+=1 end puts " " From lists.cpruitt at cliffpruitt.com Wed May 23 14:18:07 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Wed, 23 May 2007 10:18:07 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <8CAEE4C7-A150-4723-960A-882395EB89C0@cliffpruitt.com> Message-ID: <66B0D153-3D77-4DD6-B26B-A69BE64E372E@cliffpruitt.com> Tim, I was on the fence with that one, but I was really worried that someone was going to peg me for a granola-eating, anti-American, Berkley based hippie and in the end, since I'm still really new to the list, I opted to cover my bases. The next time I decide to write potentially inflammatory statements, I'll do it with impunity just for you. Thanks for the correction. ;-) Cliff On May 23, 2007, at 3:19 AM, Tim Mansour wrote: > > On 23/05/2007, at 1:00 am, Cliff Pruitt wrote: > >> As an american I get to be both obscenely opinionated and lazy at >> the same time. Tee-shirts ARE the american dream! > > Now see there Cliff ... you had a great piece of satire and then > you had to go and ruin it with a disclaimer! > > :-) > > -- > Tim Mansour > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From eknapp at gmail.com Wed May 23 14:40:19 2007 From: eknapp at gmail.com (Eric Knapp) Date: Wed, 23 May 2007 09:40:19 -0500 Subject: [TxMt] Re: Plain Text Wiki Bundle In-Reply-To: <30B8AEAD-FE4F-412E-86DF-11521D5111D8@interdisco.net> References: <5C27C925-EBDA-4A9F-867A-E7DF871797F0@gmail.com> <3531474a0705230627r764a628akb8e47bdeaf04172f@mail.gmail.com> <30B8AEAD-FE4F-412E-86DF-11521D5111D8@interdisco.net> Message-ID: <3531474a0705230740v69fe3b0cy45e2115940bd3be@mail.gmail.com> >From - Make a new text file, and save it in a new, empty directory as ' IndexPage.txt'. It's easiest to use this directory as a project--close the text file, and drag the directory icon onto TextMate. - In the project window, open IndexPage.txt and make notes as normal (set the language to 'Wiki' in the bottom bar, if it's not that already). WikiWords appear underlined. With a cursor over it or at the end, hit enter to open this page in the project window. If it doesn't exist, it's created as WikiWords.txt in the project directory. - Hit shift+ctrl+i to return to IndexPage. And I never noticed the experimental wiki bundle. -Eric On 5/23/07, Oliver Hagmann wrote: > > On 23.05.2007, at 15:45, Jacob Rus wrote: > > > Eric Knapp wrote: > >> I think it's cool too. I am already using it and I'm starting to > >> think of > >> more ways to use it. What are some uses people are coming up with? > >> I'm > >> starting with a work and time log for my summer Rails contract. > > > > >> Mike Mellor: > >>> This is so cool - > >>> > >>> > >>> It's a tool that I have wanted to have in TextMate, and it also > >>> reinforces just how flexible TextMate can be! > > > > You guys never saw the experimental wiki bundle in svn? > > No. I just activated the bundle and tried the "Show Wiki" command. It > gives me a blank page. What does it do? How does it work? > Oliver > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > -------------- next part -------------- An HTML attachment was scrubbed... URL: From steve at narbat.com Wed May 23 14:41:48 2007 From: steve at narbat.com (Steve King) Date: Wed, 23 May 2007 10:41:48 -0400 (EDT) Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> Message-ID: On Wed, 23 May 2007, Cliff Pruitt wrote: > On May 22, 2007, at 9:04 PM, Dana Kashubeck wrote: > >> I can't speak for the guys, but as a girl I find them to be all-purpose: >> ... >> - When worn out they make a great dust-cloth >> - Can make a diaper in a pinch (been there, done that) > > DEFINITELY not speaking for the guys... That's right. REAL men make emergency diapers out of duct tape! -- Steve King, From oblivious at subtlegradient.com Wed May 23 14:54:48 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Wed, 23 May 2007 10:54:48 -0400 Subject: [TxMt] List all colours in a CSS file command In-Reply-To: <2239.80.229.93.65.1179929709.squirrel@webmail.vennt.net> References: <2239.80.229.93.65.1179929709.squirrel@webmail.vennt.net> Message-ID: On May 23, 2007, at 10:15 AM, james at vennt.net wrote: > I was in two minds over bothering to write this because I was > shocked you > hadn't already Thomas. Looks like I chose wrong :) > > However I had some spare time this afternoon and added line numbers > and > made the links work on mine. If there's a marginally useful tool you want to make, chances are good that it already exists ;) I like the line numbers thing, I may have to merge the two commands. thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From oblivious at subtlegradient.com Wed May 23 14:58:38 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Wed, 23 May 2007 10:58:38 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> Message-ID: On May 23, 2007, at 10:41 AM, Steve King wrote: > On Wed, 23 May 2007, Cliff Pruitt wrote: >> On May 22, 2007, at 9:04 PM, Dana Kashubeck wrote: >> >>> I can't speak for the guys, but as a girl I find them to be all- >>> purpose: >>> ... >>> - When worn out they make a great dust-cloth >>> - Can make a diaper in a pinch (been there, done that) >> >> DEFINITELY not speaking for the guys... > > That's right. REAL men make emergency diapers out of duct tape! > > -- > Steve King, REAL men have wives that handle all that stuff for them ;) ? thomas From dd at dyce.com Wed May 23 15:02:15 2007 From: dd at dyce.com (Richard Dyce) Date: Wed, 23 May 2007 16:02:15 +0100 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> Message-ID: On 23 May 2007, at 15:58, Thomas Aylott (subtleGradient) wrote: > REAL men have wives that handle all that stuff for them ;) > ? thomas Ooops. In our household, that sentence would definitlely fall under the "epitaph/famous last words" heading ;-) -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2405 bytes Desc: not available URL: From chris.fontenot at gmail.com Wed May 23 15:17:35 2007 From: chris.fontenot at gmail.com (Chris Fontenot) Date: Wed, 23 May 2007 10:17:35 -0500 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> Message-ID: so true ;) On 5/23/07, Richard Dyce
wrote: > On 23 May 2007, at 15:58, Thomas Aylott (subtleGradient) wrote: > > > REAL men have wives that handle all that stuff for them ;) > > ? thomas > > Ooops. In our household, that sentence would definitlely fall under > the "epitaph/famous last words" heading ;-) > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > > -- Chris Fontenot 1DC9 F674 22A0 3A94 C3F3 D813 A596 2EC7 44EB B48F "Sometimes you have to let people get hit by the train." -- Michael Dobe From jaguarcy at gmail.com Wed May 23 15:19:27 2007 From: jaguarcy at gmail.com (=?UTF-8?Q?Constantinos_Neophytou_=E2=99=8E?=) Date: Wed, 23 May 2007 18:19:27 +0300 Subject: [TxMt] List all colours in a CSS file command In-Reply-To: <2239.80.229.93.65.1179929709.squirrel@webmail.vennt.net> References: <2239.80.229.93.65.1179929709.squirrel@webmail.vennt.net> Message-ID: <9F562C1B-F15E-4887-9285-1CBF8C22382B@gmail.com> James, if you want to get rid of that ugly colourArrayToTrim business on your version, just replace the regex with: hex = Regexp.new(/#([0-9a-fA-F]{3,6})/) (note the single parenthesis that captures the entire hex number). also after scanning, something like colourArray.sort!.uniq! might be useful, though i haven't checked your new modification and don't know how it will play with line numbers... Good effort none the less (liked it so much, I even read up on ruby documentation for the first time ever to figure out how to change a thing or two.. ;) On May 23, 2007, at 5:15 PM, james at vennt.net wrote: > I was in two minds over bothering to write this because I was > shocked you > hadn't already Thomas. Looks like I chose wrong :) > > However I had some spare time this afternoon and added line numbers > and > made the links work on mine. > > > #!/usr/bin/env ruby > > > myFile = STDIN.read > fileName = ENV['TM_FILENAME'] > > hex = Regexp.new(/(#(\d|[a-f]|[A-F]){3,6})/) > > > def swatch(colour,lineNumber) > puts " > >
>
>
> #{colour}
#{lineNumber} >
> " > end > > > puts ' "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > > > > > > Colours > > > > > > ' > > puts "

Colours used #{fileName}

" > > > > lines = myFile.split("\n") > counter = 1 > lines.each do |line| > colourArrayToTrim = line.scan(hex) > colourArray = [] > > colourArrayToTrim.each do |colour| > colourArray.push colour.shift > end > > colourArray.each do |colour| > swatch(colour,counter) > end > counter+=1 > end > > puts " > > > " > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate -- What's your Dream? Make it happen with www.dostpost.com -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 1288 bytes Desc: not available URL: From oblivious at subtlegradient.com Wed May 23 15:23:25 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Wed, 23 May 2007 11:23:25 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> Message-ID: <18B0F96A-BE61-47C6-97CF-4523DB3B4ECB@subtlegradient.com> On May 23, 2007, at 11:02 AM, Richard Dyce wrote: >> REAL men have wives that handle all that stuff for them ;) >> ? thomas > > Ooops. In our household, that sentence would definitlely fall under > the "epitaph/famous last words" heading ;-) REAL women aren't easily offended ;) not THAT would make a good shirt :D thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From chuck.esterbrook at gmail.com Wed May 23 16:19:54 2007 From: chuck.esterbrook at gmail.com (Chuck Esterbrook) Date: Wed, 23 May 2007 09:19:54 -0700 Subject: [TxMt] Refinement request Message-ID: <94cdd26f0705230919t6b68101avadf4312d8ce63dc5@mail.gmail.com> TextMate shows the current line that contains the cursor by highlighting the entire line. I like this because it makes finding the cursor easy when I come back to a TextMate window. But it gets short circuited by Find which highlights the found text, but removes the "whole line highlight". Consequently, it takes more effort to find where the selection/cursor jumped to upon finding text. My request is that selecting text within a line would retain the "whole line highlight". -Chuck From tylerhall at gmail.com Wed May 23 16:22:29 2007 From: tylerhall at gmail.com (Tyler Hall) Date: Wed, 23 May 2007 11:22:29 -0500 Subject: [TxMt] Refinement request In-Reply-To: <94cdd26f0705230919t6b68101avadf4312d8ce63dc5@mail.gmail.com> References: <94cdd26f0705230919t6b68101avadf4312d8ce63dc5@mail.gmail.com> Message-ID: I've noticed the same thing, Chuck. I've forced myself into the habit of pressing command+shift+L after searching to highlight the current line and bring attention to the new cursor location. Tyler On 5/23/07, Chuck Esterbrook wrote: > TextMate shows the current line that contains the cursor by > highlighting the entire line. I like this because it makes finding the > cursor easy when I come back to a TextMate window. > > But it gets short circuited by Find which highlights the found text, > but removes the "whole line highlight". Consequently, it takes more > effort to find where the selection/cursor jumped to upon finding text. > > My request is that selecting text within a line would retain the > "whole line highlight". > > -Chuck > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From dana.kashubeck at riemer.com Wed May 23 16:31:44 2007 From: dana.kashubeck at riemer.com (Dana Kashubeck) Date: Wed, 23 May 2007 12:31:44 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> Message-ID: <46546C70.9050300@riemer.com> On 5/23/07 10:41 AM, Steve King wrote: > On Wed, 23 May 2007, Cliff Pruitt wrote: > >> On May 22, 2007, at 9:04 PM, Dana Kashubeck wrote: >> >>> I can't speak for the guys, but as a girl I find them to be all-purpose: >>> ... >>> - When worn out they make a great dust-cloth >>> - Can make a diaper in a pinch (been there, done that) >> >> DEFINITELY not speaking for the guys... > > That's right. REAL men make emergency diapers out of duct tape! LOL!! Oh, so that's where all the duct tape went while I was on vacation . . . -- ------------------------------------- Dana Kashubeck Systems Manager Riemer Reporting Service Inc. http://www.riemer.com Phone: 440-835-2477 x. 125 Fax: 440-835-4594 ------------------------------------- -------------- next part -------------- A non-text attachment was scrubbed... Name: dana.kashubeck.vcf Type: text/x-vcard Size: 350 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3269 bytes Desc: S/MIME Cryptographic Signature URL: From dana.kashubeck at riemer.com Wed May 23 16:34:53 2007 From: dana.kashubeck at riemer.com (Dana Kashubeck) Date: Wed, 23 May 2007 12:34:53 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <18B0F96A-BE61-47C6-97CF-4523DB3B4ECB@subtlegradient.com> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <18B0F96A-BE61-47C6-97CF-4523DB3B4ECB@subtlegradient.com> Message-ID: <46546D2D.7070908@riemer.com> On 5/23/07 11:23 AM, Thomas Aylott (subtleGradient) wrote: > On May 23, 2007, at 11:02 AM, Richard Dyce wrote: > >>> REAL men have wives that handle all that stuff for them ;) >>> >>> ? thomas >>> >> >> Ooops. In our household, that sentence would definitlely fall under >> the "epitaph/famous last words" heading ;-) >> > > REAL women aren't easily offended ;) True, we're not easily offended, but that doesn't mean we won't deck you one for a statement like that. :) -- ------------------------------------- Dana Kashubeck Systems Manager Riemer Reporting Service Inc. http://www.riemer.com Phone: 440-835-2477 x. 125 Fax: 440-835-4594 ------------------------------------- -------------- next part -------------- A non-text attachment was scrubbed... Name: dana.kashubeck.vcf Type: text/x-vcard Size: 350 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3269 bytes Desc: S/MIME Cryptographic Signature URL: From alaskamike at gmail.com Wed May 23 16:46:34 2007 From: alaskamike at gmail.com (Mike Mellor) Date: Wed, 23 May 2007 08:46:34 -0800 Subject: [TxMt] Re: Plain Text Wiki Bundle In-Reply-To: References: <5C27C925-EBDA-4A9F-867A-E7DF871797F0@gmail.com> <3531474a0705230627r764a628akb8e47bdeaf04172f@mail.gmail.com> Message-ID: <41c1b4da0705230946x165550e9s3bb4d43770c220c0@mail.gmail.com> On 5/23/07, Jacob Rus wrote: > > > You guys never saw the experimental wiki bundle in svn? I saw the bundle, but didn't know what to do with it. Does it work, and if so, how? Mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From contact at helmutgranda.com Wed May 23 17:12:55 2007 From: contact at helmutgranda.com (Helmut Granda) Date: Wed, 23 May 2007 12:12:55 -0500 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <46546D2D.7070908@riemer.com> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <18B0F96A-BE61-47C6-97CF-4523DB3B4ECB@subtlegradient.com> <46546D2D.7070908@riemer.com> Message-ID: Text ? Mate ? Check I tried to get the tab symbol backwards but couldnt find it. but you get the idea. On 5/23/07, Dana Kashubeck wrote: > > On 5/23/07 11:23 AM, Thomas Aylott (subtleGradient) wrote: > > On May 23, 2007, at 11:02 AM, Richard Dyce wrote: > > > >>> REAL men have wives that handle all that stuff for them ;) > >>> > >>> ? thomas > >>> > >> > >> Ooops. In our household, that sentence would definitlely fall under > >> the "epitaph/famous last words" heading ;-) > >> > > > > REAL women aren't easily offended ;) > True, we're not easily offended, but that doesn't mean we won't deck you > one for a statement like that. :) > > -- > ------------------------------------- > Dana Kashubeck > Systems Manager > Riemer Reporting Service Inc. > http://www.riemer.com > > Phone: 440-835-2477 x. 125 > Fax: 440-835-4594 > ------------------------------------- > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From throw-away-1 at macromates.com Wed May 23 17:19:10 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Wed, 23 May 2007 19:19:10 +0200 Subject: [TxMt] Refinement request In-Reply-To: <94cdd26f0705230919t6b68101avadf4312d8ce63dc5@mail.gmail.com> References: <94cdd26f0705230919t6b68101avadf4312d8ce63dc5@mail.gmail.com> Message-ID: On 23. May 2007, at 18:19, Chuck Esterbrook wrote: > TextMate shows the current line that contains the cursor by > highlighting the entire line [...] But it gets short circuited by > Find which highlights the found text See the following ticket for my comments: http://macromates.com/ticket/show?ticket_id=5FB020B2 From alaskamike at gmail.com Wed May 23 17:31:06 2007 From: alaskamike at gmail.com (Mike Mellor) Date: Wed, 23 May 2007 09:31:06 -0800 Subject: [TxMt] Spreadsheet Bundle Functions Message-ID: <41c1b4da0705231031l48e94fdfy13c92eb26f267253@mail.gmail.com> I am having trouble figuring out the spreadsheet bundle. Suppose I have the following table: |name |foo |bar |total | |mike | 1 | 2 | | How do I calculate the total? >From the screencasts, I think I should have this line: % A3 := SUM(A1:A2) Then what do I need to do to get the cell to display the value? Mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From throw-away-1 at macromates.com Wed May 23 17:38:53 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Wed, 23 May 2007 19:38:53 +0200 Subject: [TxMt] Extending existing grammar (css -> rcss) In-Reply-To: References: Message-ID: On 22. May 2007, at 17:12, Shane Liesegang wrote: > [...] > Using that, I get proper syntax coloring for embedded Ruby if I use > it at the > root level, but I still don't get autocomplete. And inside a CSS > selector, I > can't get anything. > [...] > Is there a way to specify conditional scope within a grammar? It > seems like once > it hits the CSS selector, it doesn't recognize ERB anymore. The grammar is basically a tree of rules, when you enter a subtree, only the rules for that node are ?active?. This means grammars which matches larger structures of the document are not possible to augment without actually changing the grammar, so that?s your only option for now, i.e. clone the full CSS grammar and just modifiy it, rather than include it. There will be a system for injecting rules into existing grammars without forking them in the future. From throw-away-1 at macromates.com Wed May 23 17:41:40 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Wed, 23 May 2007 19:41:40 +0200 Subject: [TxMt] Re: Standard ML Bundle In-Reply-To: References: Message-ID: On 23. May 2007, at 00:27, George Kuan wrote: > Is there anyone actively maintaining the Standard ML bundle? No -- for the records, you can ?svn log? the bundle to see what activity it has seen, and the ?info.plist? in the bundle shows who?s the maintainer (and his contact email). For the ML bundle it is Sune, but he only used it for a university project, so it never evolved beyond the initial grammar and a run command. From throw-away-1 at macromates.com Wed May 23 17:43:14 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Wed, 23 May 2007 19:43:14 +0200 Subject: [TxMt] tying external action to actions in Textmate In-Reply-To: <04788A11-E9C9-4B14-9183-D233DAA13A50@gmail.com> References: <04788A11-E9C9-4B14-9183-D233DAA13A50@gmail.com> Message-ID: <9B8ACEDC-4390-468F-BB49-4FEA9F12D3F7@macromates.com> On 23. May 2007, at 11:12, Zvi Biener wrote: > Is there anyway to "tie" actions in other applications to actions > in Textmate? For example, I'd like the opening of a new file in > Textmate (by the file menu or input manager) to also initiate my > timer program (through an applescript, probably). > > Is this possible? There is no system for this, but it could probably be done by creating a TM plug-in which observes the right conditions. From harrison at Math.Berkeley.EDU Wed May 23 17:47:52 2007 From: harrison at Math.Berkeley.EDU (Jenny Harrison) Date: Wed, 23 May 2007 10:47:52 -0700 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <18B0F96A-BE61-47C6-97CF-4523DB3B4ECB@subtlegradient.com> <46546D2D.7070908@riemer.com> Message-ID: On May 23, 2007, at 10:12 AM, Helmut Granda wrote: > Text ? Mate ? Check > > I tried to get the tab symbol backwards but couldnt find it. but > you get the idea. > One of the reasons I like Text ? Mate is that Check ? Mate is implicit in it. It also has other implicit messages. Jenny From bseymore at gmail.com Wed May 23 17:57:45 2007 From: bseymore at gmail.com (Brooks Seymore) Date: Wed, 23 May 2007 10:57:45 -0700 Subject: [TxMt] tying external action to actions in Textmate In-Reply-To: <9B8ACEDC-4390-468F-BB49-4FEA9F12D3F7@macromates.com> References: <04788A11-E9C9-4B14-9183-D233DAA13A50@gmail.com> <9B8ACEDC-4390-468F-BB49-4FEA9F12D3F7@macromates.com> Message-ID: On May 23, 2007, at 10:43 AM, Allan Odgaard wrote: > On 23. May 2007, at 11:12, Zvi Biener wrote: > >> Is there anyway to "tie" actions in other applications to actions >> in Textmate? For example, I'd like the opening of a new file in >> Textmate (by the file menu or input manager) to also initiate my >> timer program (through an applescript, probably). >> >> Is this possible? > > There is no system for this, but it could probably be done by > creating a TM plug-in which observes the right conditions. Could this also be done through a Bundle Command, with the new document created and the timer launched by running the command? B. From lists.cpruitt at cliffpruitt.com Wed May 23 18:48:01 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Wed, 23 May 2007 14:48:01 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> Message-ID: On May 23, 2007, at 10:58 AM, Thomas Aylott (subtleGradient) wrote: > REAL men have wives that handle all that stuff for them ;) > ? thomas This is going to end badly... soooo badly... ;-) - Cliff From lists.cpruitt at cliffpruitt.com Wed May 23 19:08:02 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Wed, 23 May 2007 15:08:02 -0400 Subject: [TxMt] tying external action to actions in Textmate In-Reply-To: References: <04788A11-E9C9-4B14-9183-D233DAA13A50@gmail.com> <9B8ACEDC-4390-468F-BB49-4FEA9F12D3F7@macromates.com> Message-ID: On May 23, 2007, at 1:57 PM, Brooks Seymore wrote: > Could this also be done through a Bundle Command, with the new > document created and the timer launched by running the command? > > B. Yeah, you can trigger a Applescript when you run a bundle command or even include run it from the script used when creating a file from a template so creating a new file would start the timer, but then you wouldn't be able to log time if you were just editing existing files. I haven't had time to look into it for myself, but does anyone else know if you can just use launchd to watch a TextMate related file for changes, say, the TextMates preferences for example? If the file is modified you can assume you're working with TM & then start your timer? I know launchd can monitor paths, but I don't know if TM alters its prefs file on disk when its running or just when it shuts down or what. If so it'd maybe work to use launchd to watch the prefs file and run a script. The script could even maybe use defaults read com.macromates.textmate NSRecentDocumentRecords to examine what documents were last opened / saved and mess with your timer accordingly, though you'd have to translate them from alias references (or whatever the heck the prefs file stores) to paths somehow. Thats beyond me at the moment. I'm just tossing out ideas... - Cliff From lists.cpruitt at cliffpruitt.com Wed May 23 19:11:50 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Wed, 23 May 2007 15:11:50 -0400 Subject: [TxMt] tying external action to actions in Textmate In-Reply-To: <9B8ACEDC-4390-468F-BB49-4FEA9F12D3F7@macromates.com> References: <04788A11-E9C9-4B14-9183-D233DAA13A50@gmail.com> <9B8ACEDC-4390-468F-BB49-4FEA9F12D3F7@macromates.com> Message-ID: <014E868A-8297-4980-A267-C32B669DDEB2@cliffpruitt.com> On May 23, 2007, at 1:43 PM, Allan Odgaard wrote: > There is no system for this, but it could probably be done by > creating a TM plug-in which observes the right conditions. Hmmm... Is there a good place to get any info on developing TM plugins? I've seen plenty for bundles but not much of anything on plugins. I'm just moving more into Cocoa & I'd like to "fiddle" with a plugin if I can find some info on it. - Cliff From oblivious at subtlegradient.com Wed May 23 19:44:14 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Wed, 23 May 2007 15:44:14 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <46546D2D.7070908@riemer.com> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <18B0F96A-BE61-47C6-97CF-4523DB3B4ECB@subtlegradient.com> <46546D2D.7070908@riemer.com> Message-ID: On May 23, 2007, at 12:34 PM, Dana Kashubeck wrote: > On 5/23/07 11:23 AM, Thomas Aylott (subtleGradient) wrote: >> On May 23, 2007, at 11:02 AM, Richard Dyce wrote: >>>> REAL men have wives that handle all that stuff for them ;) >>>> >>>> ? thomas >>>> >>> >>> Ooops. In our household, that sentence would definitlely fall >>> under the "epitaph/famous last words" heading ;-) >>> >> REAL women aren't easily offended ;) > True, we're not easily offended, but that doesn't mean we won't > deck you one for a statement like that. :) > ------------------------------------- > Dana Kashubeck Please forgive me, I'm not used to having chicks ladies on the list ;) thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From skiadas at hanover.edu Wed May 23 19:47:55 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Wed, 23 May 2007 15:47:55 -0400 Subject: [TxMt] Spreadsheet Bundle Functions In-Reply-To: <41c1b4da0705231031l48e94fdfy13c92eb26f267253@mail.gmail.com> References: <41c1b4da0705231031l48e94fdfy13c92eb26f267253@mail.gmail.com> Message-ID: <7F391608-5865-4B43-8CC8-3B85096F669B@hanover.edu> It had been so long since I used the bundle, that I actually had to reenable it ;) So to return to the matter at hand, first of all numbers move you downwards, and letters move you to the right. So what you want is probably: % D2 := SUM(B2:C2) (Note, that A1 is "name", C1 is "bar" and so on. Next, you just need the "execute document" command, bound to cmd-R. On May 23, 2007, at 1:31 PM, Mike Mellor wrote: > I am having trouble figuring out the spreadsheet bundle. Suppose I > have the following table: > > |name |foo |bar |total | > |mike | 1 | 2 | | > > How do I calculate the total? > From the screencasts, I think I should have this line: > > % A3 := SUM(A1:A2) > > Then what do I need to do to get the cell to display the value? > > Mike Haris Skiadas Department of Mathematics and Computer Science Hanover College From throw-away-1 at macromates.com Wed May 23 22:13:41 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Thu, 24 May 2007 00:13:41 +0200 Subject: [TxMt] tying external action to actions in Textmate In-Reply-To: <014E868A-8297-4980-A267-C32B669DDEB2@cliffpruitt.com> References: <04788A11-E9C9-4B14-9183-D233DAA13A50@gmail.com> <9B8ACEDC-4390-468F-BB49-4FEA9F12D3F7@macromates.com> <014E868A-8297-4980-A267-C32B669DDEB2@cliffpruitt.com> Message-ID: <4C5070B7-299D-4E6C-A33C-53B6C1BDC19A@macromates.com> On 23. May 2007, at 21:11, Cliff Pruitt wrote: > On May 23, 2007, at 1:43 PM, Allan Odgaard wrote: > >> There is no system for this, but it could probably be done by >> creating a TM plug-in which observes the right conditions. > Hmmm... Is there a good place to get any info on developing TM > plugins? I've seen plenty for bundles but not much of anything on > plugins. I'm just moving more into Cocoa & I'd like to "fiddle" > with a plugin if I can find some info on it. Well, the manual: http://macromates.com/textmate/manual/appendix#plug- in_api Though it basically says there is no API ;) Creating plug-ins require a fair bit of knowledge about the Cocoa framework, as TM itself doesn?t add to it, but rather relies on you to know your way around this framework, and how to ?hack? it to inject your code in the proper places -- that said, on the plug-in ML I do give out internal info whenever it helps people achieve their goals, but I do not promise to keep the APIs the same for 2.0 (which should make things a bit more open to plug-in developers). From dana.kashubeck at riemer.com Thu May 24 00:29:10 2007 From: dana.kashubeck at riemer.com (Dana Kashubeck) Date: Wed, 23 May 2007 20:29:10 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <18B0F96A-BE61-47C6-97CF-4523DB3B4ECB@subtlegradient.com> <46546D2D.7070908@riemer.com> Message-ID: <4654DC56.9020400@riemer.com> On 5/23/07 3:44 PM, Thomas Aylott (subtleGradient) wrote: > On May 23, 2007, at 12:34 PM, Dana Kashubeck wrote: >> >> On 5/23/07 11:23 AM, Thomas Aylott (subtleGradient) wrote: >> >>> On May 23, 2007, at 11:02 AM, Richard Dyce wrote: >>> >>>>> REAL men have wives that handle all that stuff for them ;) >>>>> >>>>> >>>>> ? thomas >>>>> >>>>> >>>> >>>> Ooops. In our household, that sentence would definitlely fall under >>>> the "epitaph/famous last words" heading ;-) >>>> >>>> >>> REAL women aren't easily offended ;) >>> >> True, we're not easily offended, but that doesn't mean we won't deck >> you one for a statement like that. :) >> >> ------------------------------------- >> >> Dana Kashubeck >> > > Please forgive me, > I'm not used to having chicks ladies on the list ;) We're everywhere these days, aren't we? -- ------------------------------------- Dana Kashubeck Systems Manager Riemer Reporting Service Inc. http://www.riemer.com Phone: 440-835-2477 x. 125 Fax: 440-835-4594 ------------------------------------- -------------- next part -------------- A non-text attachment was scrubbed... Name: dana.kashubeck.vcf Type: text/x-vcard Size: 350 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3269 bytes Desc: S/MIME Cryptographic Signature URL: From dougal at gmail.com Thu May 24 02:16:29 2007 From: dougal at gmail.com (Dougal) Date: Wed, 23 May 2007 22:16:29 -0400 Subject: [TxMt] Re: html pretty print In-Reply-To: References: <0E3FCBF3-043D-434E-9885-55C74C680C02@uma.es> Message-ID: When you use the command, it spits out lots of things, but the CSS definitions only seems to come when you do a full document. If you look at the command definition, this is right in there: :include_css => !ENV.has_key?('TM_SELECTED_TEXT') My guess is that this is so you can more easily paste different chunks into one bigger document. If you want to always include the css, just change that to :include_css => true. Or if you'd rather leave it as-is, just paste what you wanted into a new document before HTML-izing it. On 5/22/07, Jacob Rus wrote: > > Juan Falgueras wrote: > > ....but, why it doesn't colour when you give it selections? ehmmm > > > > I usually need to cut functions, etc... > > > > but anyway the Brad Choate solution is much much better than the > > enscript one. Thanks > > > > Is there some trick for make B. Choate script to colour portions of > text? > > You're going to have to explain what you're having trouble with. I have > no trouble turning selections to html with that command... > > -Jacob > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim at neologica.com.au Thu May 24 03:29:53 2007 From: tim at neologica.com.au (Tim Mansour) Date: Thu, 24 May 2007 13:29:53 +1000 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> Message-ID: <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> On 24/05/2007, at 12:41 am, Steve King wrote: > That's right. REAL men make emergency diapers out of duct tape! > Oh that's priceless Steve. You've been watching too much MacGyver. Hmm... "MacGyver uses TextMate" -- Tim Mansour From h.wickham at gmail.com Thu May 24 06:52:44 2007 From: h.wickham at gmail.com (hadley wickham) Date: Thu, 24 May 2007 08:52:44 +0200 Subject: [TxMt] html pretty print In-Reply-To: References: Message-ID: On 5/21/07, Juan Falgueras wrote: > > Hi > > I used to need pretty print my C++ code for students and I have found > the next simple script solves my problem in a cute way, since it > shows me the formatted code in a separate window (output "Show as > HTML") and then I can easily copy the source (Cmd-Opt-U) or the > styled text (copying directly from the output window): > > ----- input "Selected text" or "Document" > echo "
"
>
> enscript --language=html -Ecpp -e -B --color \
>    --header="$TM_FILENAME|$E|pag. $% de $=" --title="$TM_FILENAME" \
>    -o- 2>/dev/null | \
> perl -ne 'next if (1../
/i); last if (m|
|..1); print' > > echo "
" > ------ output "Show as HTML" > --- Save nothing, source.c > > > I would like to generalize it for it to be used with other source > code, not only C, what should be the better way? to have a table > mapping modes with enscript input modes... ? > > Any help will be welcome. Have you seen ultraviolet: http://ultraviolet.rubyforge.org/ ? It does syntax highligting using the textmate language definitions and themes. Hadley From jfalgueras at uma.es Thu May 24 09:40:36 2007 From: jfalgueras at uma.es (Juan Falgueras) Date: Thu, 24 May 2007 11:40:36 +0200 Subject: [TxMt] Re: html pretty print Message-ID: <761301DF-799E-4010-BBCE-3BE1FB1AC8DD@uma.es> > De: Jacob Rus > > > Juan Falgueras wrote: > >> ....but, why it doesn't colour when you give it selections? ehmmm >> I usually need to cut functions, etc... >> but anyway the Brad Choate solution is much much better than the >> enscript one. Thanks >> Is there some trick for make B. Choate script to colour portions >> of text? >> > > You're going to have to explain what you're having trouble with. I > have no trouble turning selections to html with that command... > Yes. If you select a slice of your source code like... ------- int main(){ TpNumero numero; if (LeerCadena(numero)){ cout << "La cadena es correcta: " << numero << endl; ImprimeDisplay(numero); } return 0; } -------- you get: ---------



	
	displayNum.cpp
	



'

puts "

Colours used in #{fileName}

" lines = myFile.split("\n") counter = 1 lines.each do |line| colourArray = line.scan(hex) colourArray.each do |colour| swatch(colour,counter) end counter+=1 end puts "
" From lists at interdisco.net Thu May 24 12:28:05 2007 From: lists at interdisco.net (Oliver Hagmann) Date: Thu, 24 May 2007 14:28:05 +0200 Subject: [TxMt] List all colours in a CSS file command In-Reply-To: <2088.80.229.93.65.1180008312.squirrel@webmail.vennt.net> References: <2088.80.229.93.65.1180008312.squirrel@webmail.vennt.net> Message-ID: On 24.05.2007, at 14:05, james at vennt.net wrote: > Thanks for the regex tip Chris, worked great. > > The command now displays Hex, RGB and Named colours (thanks to the > bit I > copied out of the CSS language file) and I tidied some of the > layout up a > bit to fit the longer colour names etc. I noticed a small bug: I have an ID called "#default" in one of my files. This now gets also listed as "#defa" in the output window. Otherwise very nice! Thanks. Oliver From zvistrash at gmail.com Thu May 24 12:37:22 2007 From: zvistrash at gmail.com (Zvi Biener) Date: Thu, 24 May 2007 14:37:22 +0200 Subject: [TxMt] Re: tying external action to actions in Textmate In-Reply-To: <20070524120051.6F49568C0@comox.textdrive.com> References: <20070524120051.6F49568C0@comox.textdrive.com> Message-ID: Thanks everybody. It looks like for the time being I'll just make a bundle command to start the timer, and have to launch it myself. If you develop something for this, Cliff, do let me know! Best, Zvi > On May 23, 2007, at 1:57 PM, Brooks Seymore wrote: > >> Could this also be done through a Bundle Command, with the new >> document created and the timer launched by running the command? >> >> B. > > Yeah, you can trigger a Applescript when you run a bundle command > or even include run it from the script used when creating a file > from a template so creating a new file would start the timer, but > then you wouldn't be able to log time if you were just editing > existing files. > > I haven't had time to look into it for myself, but does anyone else > know if you can just use launchd to watch a TextMate related file > for changes, say, the TextMates preferences for example? If the > file is modified you can assume you're working with TM & then start > your timer? I know launchd can monitor paths, but I don't know if > TM alters its prefs file on disk when its running or just when it > shuts down or what. If so it'd maybe work to use launchd to watch > the prefs file and run a script. The script could even maybe use > > defaults read com.macromates.textmate NSRecentDocumentRecords > > to examine what documents were last opened / saved and mess with > your timer accordingly, though you'd have to translate them from > alias references (or whatever the heck the prefs file stores) to > paths somehow. Thats beyond me at the moment. > > I'm just tossing out ideas... > > - Cliff -------------- next part -------------- An HTML attachment was scrubbed... URL: From lists.cpruitt at cliffpruitt.com Thu May 24 13:32:26 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Thu, 24 May 2007 09:32:26 -0400 Subject: [TxMt] tying external action to actions in Textmate In-Reply-To: <4C5070B7-299D-4E6C-A33C-53B6C1BDC19A@macromates.com> References: <04788A11-E9C9-4B14-9183-D233DAA13A50@gmail.com> <9B8ACEDC-4390-468F-BB49-4FEA9F12D3F7@macromates.com> <014E868A-8297-4980-A267-C32B669DDEB2@cliffpruitt.com> <4C5070B7-299D-4E6C-A33C-53B6C1BDC19A@macromates.com> Message-ID: :-) Well, yeah I did read the _extensive_ documentation in the manual about plugins (j/k) but I was just curious if someone that had gone through the process had volunteered any "getting started" advice. For example the code browser plugin deals with the current document which means it must somehow read the documents contents. I know there are plenty of tools & ways to have Cocoa tell you what's going on, but for a beginner that's getting in a little in over my head at the moment. Maybe plugins will have to wait until I am a little further down the road with Cocoa. I can't quite even figure out how to make sense of the stinkin debugger yet. ;-) - Cliff On May 23, 2007, at 6:13 PM, Allan Odgaard wrote: > On 23. May 2007, at 21:11, Cliff Pruitt wrote: > >> On May 23, 2007, at 1:43 PM, Allan Odgaard wrote: >> >>> There is no system for this, but it could probably be done by >>> creating a TM plug-in which observes the right conditions. >> Hmmm... Is there a good place to get any info on developing TM >> plugins? I've seen plenty for bundles but not much of anything on >> plugins. I'm just moving more into Cocoa & I'd like to "fiddle" >> with a plugin if I can find some info on it. > > Well, the manual: http://macromates.com/textmate/manual/ > appendix#plug-in_api > > Though it basically says there is no API ;) > > Creating plug-ins require a fair bit of knowledge about the Cocoa > framework, as TM itself doesn?t add to it, but rather relies on you > to know your way around this framework, and how to ?hack? it to > inject your code in the proper places -- that said, on the plug-in > ML I do give out internal info whenever it helps people achieve > their goals, but I do not promise to keep the APIs the same for 2.0 > (which should make things a bit more open to plug-in developers). > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From lists.cpruitt at cliffpruitt.com Thu May 24 13:35:23 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Thu, 24 May 2007 09:35:23 -0400 Subject: [TxMt] Re: tying external action to actions in Textmate In-Reply-To: References: <20070524120051.6F49568C0@comox.textdrive.com> Message-ID: <205FA3AE-20E2-4F15-923C-4B8097BD5D78@cliffpruitt.com> Yeah I'm playing around with some other stuff for my own time tracking needs so if there's a way to add in the ability to watch TextMate as well that would be good for me too. If I work anything out I'll post it to the list but I wouldn't be looking for it anytime really soon. Right now I have to pay the bills before I scratch my own itches. ;-) - Cliff On May 24, 2007, at 8:37 AM, Zvi Biener wrote: > Thanks everybody. > It looks like for the time being I'll just make a bundle command to > start the timer, and have to launch it myself. If you develop > something for this, Cliff, do let me know! > > Best, > Zvi > >> On May 23, 2007, at 1:57 PM, Brooks Seymore wrote: >> >>> Could this also be done through a Bundle Command, with the new >>> document created and the timer launched by running the command? >>> >>> B. >> >> Yeah, you can trigger a Applescript when you run a bundle command >> or even include run it from the script used when creating a file >> from a template so creating a new file would start the timer, but >> then you wouldn't be able to log time if you were just editing >> existing files. >> >> I haven't had time to look into it for myself, but does anyone >> else know if you can just use launchd to watch a TextMate related >> file for changes, say, the TextMates preferences for example? If >> the file is modified you can assume you're working with TM & then >> start your timer? I know launchd can monitor paths, but I don't >> know if TM alters its prefs file on disk when its running or just >> when it shuts down or what. If so it'd maybe work to use launchd >> to watch the prefs file and run a script. The script could even >> maybe use >> >> defaults read com.macromates.textmate NSRecentDocumentRecords >> >> to examine what documents were last opened / saved and mess with >> your timer accordingly, though you'd have to translate them from >> alias references (or whatever the heck the prefs file stores) to >> paths somehow. Thats beyond me at the moment. >> >> I'm just tossing out ideas... >> >> - Cliff > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From steve at narbat.com Thu May 24 13:53:25 2007 From: steve at narbat.com (Steve King) Date: Thu, 24 May 2007 09:53:25 -0400 (EDT) Subject: [TxMt] tying external action to actions in Textmate In-Reply-To: References: <04788A11-E9C9-4B14-9183-D233DAA13A50@gmail.com> <9B8ACEDC-4390-468F-BB49-4FEA9F12D3F7@macromates.com> <014E868A-8297-4980-A267-C32B669DDEB2@cliffpruitt.com> <4C5070B7-299D-4E6C-A33C-53B6C1BDC19A@macromates.com> Message-ID: On Thu, 24 May 2007, Cliff Pruitt wrote: > :-) Well, yeah I did read the _extensive_ documentation in the manual about > plugins (j/k) but I was just curious if someone that had gone through the > process had volunteered any "getting started" advice. For example the code > browser plugin deals with the current document which means it must somehow > read the documents contents. I know there are plenty of tools & ways to have > Cocoa tell you what's going on, but for a beginner that's getting in a little > in over my head at the moment. Maybe plugins will have to wait until I am a > little further down the road with Cocoa. Also, take a look at some of the other plugins on the Wiki page at . I didn't see any source code for CodeBrowser, but some of the others offer source. TabMate, for instance, looks at the top line of the file for a magic string, then sets tab width and hard/soft tabs according to that string. It has no UI, so there shouldn't be any Cocoa voodoo to deal with. I poked at the source a little myself, but Objective-C just looks bizarre to me. I decided to wait until TM2 before getting my hands dirty with it. -- Steve King, From david.clark at umb.edu Thu May 24 15:35:07 2007 From: david.clark at umb.edu (David Clark) Date: Thu, 24 May 2007 11:35:07 -0400 Subject: [TxMt] Re: Plain Text Wiki Bundle In-Reply-To: <41c1b4da0705230946x165550e9s3bb4d43770c220c0@mail.gmail.com> References: <5C27C925-EBDA-4A9F-867A-E7DF871797F0@gmail.com> <3531474a0705230627r764a628akb8e47bdeaf04172f@mail.gmail.com> <41c1b4da0705230946x165550e9s3bb4d43770c220c0@mail.gmail.com> Message-ID: <94f9bc580705240835l59e5c3a7ied354b753b92d2ca@mail.gmail.com> Hi, I'm showing my stupidity here -- I'm looking for a way to convert FROM html to wiki. any leads? On 5/23/07, Mike Mellor wrote: > > > On 5/23/07, Jacob Rus wrote: > > > > You guys never saw the experimental wiki bundle in svn? > > > I saw the bundle, but didn't know what to do with it. Does it work, and if > so, how? > > Mike > > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > -- dc ----- David Clark Database Developer Institute for Community Inclusion (http://www.communityinclusion.org/) david.clark at umb.edu (617) 287-4318 From pennachin at gmail.com Thu May 24 15:43:10 2007 From: pennachin at gmail.com (Cassio Pennachin) Date: Thu, 24 May 2007 12:43:10 -0300 Subject: [TxMt] Plain Text Wiki Bundle In-Reply-To: <5C27C925-EBDA-4A9F-867A-E7DF871797F0@gmail.com> References: <5C27C925-EBDA-4A9F-867A-E7DF871797F0@gmail.com> Message-ID: <433ee5470705240843n72069914pec2eef6c4b818cd7@mail.gmail.com> Very cool indeed. Another Emacs dependency removed for me ;-). On 5/23/07, Mike Mellor wrote: > > This is so cool - > > > It's a tool that I have wanted to have in TextMate, and it also > reinforces just how flexible TextMate can be! > > Mike > > > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > > -- Cassio Pennachin -------------- next part -------------- An HTML attachment was scrubbed... URL: From ni-di at web.de Thu May 24 21:10:41 2007 From: ni-di at web.de (Niko Dittmann) Date: Thu, 24 May 2007 23:10:41 +0200 Subject: [TxMt] New DRYML bundle Message-ID: <31E9B3B5-DE78-43BE-82FC-403CF5AD1201@web.de> Hi Allan. I started a new DRYML bundle (actually a.t.m. it's just a simplistic language definition) and some other Hobo users thought it would be nice to start a small DRYML bundle (anyone interested can see get it at the Hobo forum). What would be the procedure to get the bundle into TMs bundle repository? And related Thomas: What happend to bundleforge? Kind regards, Niko. -- ____________________________ niko dittmann ____________________________ From jay-txmt at soffian.org Fri May 25 00:11:15 2007 From: jay-txmt at soffian.org (Jay Soffian) Date: Thu, 24 May 2007 20:11:15 -0400 Subject: [TxMt] open terminal and environment Message-ID: <7A20F31D-66D2-43F1-8E46-57749463B809@soffian.org> So I happened to notice that when I use the Shell Script bundles "Open Terminal" that my project environment variables don't appear. According to this tech note: http://developer.apple.com/technotes/tn2002/tn2065.html osascript (which is what the "Open Terminal" command uses to tell Terminal.app to open a window) passes its environment along, which contains the project variables. Is this a limitation of using "do script" instead of "do shell script"? The only work around I can think of is to explicitly set the environment variables inside the "do script" (possibly exporting all the variables to a temporary file and then sourcing that file inside the "do script"). That seems icky for a variety of reasons. Thoughts? j. From gkuan at cs.uchicago.edu Fri May 25 00:14:13 2007 From: gkuan at cs.uchicago.edu (George Kuan) Date: Thu, 24 May 2007 19:14:13 -0500 Subject: [TxMt] Re: textmate Digest, Vol 32, Issue 25 In-Reply-To: <20070524120050.394D86788@comox.textdrive.com> References: <20070524120050.394D86788@comox.textdrive.com> Message-ID: Is there a way for me to take over the Standard ML bundle? I have made some significant improvements. On May 24, 2007, at 7:00 AM, textmate-request at lists.macromates.com wrote: >> Is there anyone actively maintaining the Standard ML bundle? > > No -- for the records, you can =93svn log=94 the bundle to see what > =20 > activity it has seen, and the =93info.plist=94 in the bundle shows > who=92s= > =20 > the maintainer (and his contact email). > > For the ML bundle it is Sune, but he only used it for a university =20 > project, so it never evolved beyond the initial grammar and a run =20 > command. -------------- next part -------------- An HTML attachment was scrubbed... URL: From jay-txmt at soffian.org Fri May 25 00:26:22 2007 From: jay-txmt at soffian.org (Jay Soffian) Date: Thu, 24 May 2007 20:26:22 -0400 Subject: [TxMt] Re: open terminal and environment In-Reply-To: <7A20F31D-66D2-43F1-8E46-57749463B809@soffian.org> References: <7A20F31D-66D2-43F1-8E46-57749463B809@soffian.org> Message-ID: On May 24, 2007, at 8:11 PM, Jay Soffian wrote: > The only work around I can think of is to explicitly set the > environment variables inside the "do script" (possibly exporting > all the variables to a temporary file and then sourcing that file > inside the "do script"). That seems icky for a variety of reasons. Well, I realize it's bad form to reply to one's own message, but I came up with the following for tcsh users: ================================================== if [[ -d $TM_SELECTED_FILE ]]; then TM_PATH="$TM_SELECTED_FILE" elif [[ -f $TM_SELECTED_FILE ]]; then TM_PATH="`dirname "$TM_SELECTED_FILE"`" else TM_PATH="`dirname "$TM_FILEPATH"`" fi tmpfile=`mktemp -t tmvars` env | grep -v '^TM_' | sed 's/=\(.*\)/ "\1"/;s/^/setenv /' > $tmpfile osascript < From jay-txmt at soffian.org Fri May 25 01:01:51 2007 From: jay-txmt at soffian.org (Jay Soffian) Date: Thu, 24 May 2007 21:01:51 -0400 Subject: [TxMt] Re: open terminal and environment In-Reply-To: References: <7A20F31D-66D2-43F1-8E46-57749463B809@soffian.org> Message-ID: On May 24, 2007, at 8:50 PM, Jay Soffian wrote: > Not perfect as it slams everything into the environment, not just > the project variables; As well, its escaping of the environment > variable values is naive. And it assumes tcsh. But it's a start. Final (sure...) version attached with aforementioned items resolved. ============================================ if [[ -d $TM_SELECTED_FILE ]]; then TM_PATH="$TM_SELECTED_FILE" elif [[ -f $TM_SELECTED_FILE ]]; then TM_PATH="`dirname "$TM_SELECTED_FILE"`" else TM_PATH="`dirname "$TM_FILEPATH"`" fi tmpfile=`mktemp -t tmvars` case $SHELL in */tcsh) env | grep -v '^TM_' \ | sed 's/\([^A-Za-z0-9_=]\)/\\\1/g; s/\([^=]*\)=\(.*\)/if (! $? \1) setenv \1 \2/' \ > $tmpfile ;; */bash) env | grep -v '^TM_' \ | sed 's/\([^A-Za-z0-9_=]\)/\\\1/g; s/\([^=]*\)=\(.*\)/ [[ "\1" ]] || export \1=\2/' \ > $tmpfile ;; *) > $tmpfile ;; esac osascript < From iskaldur at gmail.com Fri May 25 02:19:39 2007 From: iskaldur at gmail.com (Edwin Chen) Date: Thu, 24 May 2007 22:19:39 -0400 Subject: [TxMt] "load in ghci" not working for haskell bundle Message-ID: <303dedc60705241919q69f0573bh2c89b8ab64d50569@mail.gmail.com> On my MacBook (running ghc-6.6 and OS X 10.4), when I select "Load in GHCi", nothing happens. Any clue as to what's wrong, or anyone else experience this problem? Thanks, Edwin Chen From n.kobschaetzki at googlemail.com Fri May 25 07:35:39 2007 From: n.kobschaetzki at googlemail.com (=?ISO-8859-1?Q?Niels_Kobsch=E4tzki?=) Date: Fri, 25 May 2007 09:35:39 +0200 Subject: [TxMt] ctrl+esc doesn't work Message-ID: <09BEBF78-81B7-474C-A313-D5A92C75352B@googlemail.com> Hi! Any idea how I can find out why ctrl+esc won't open anymore bundle items menu anymore but does nothing (it's quite for a long time now but today I got curious ;) ). Searching for it in the "select bundle item"-menu didn't bring up any results. Niels From mummer at whitefalls.org Fri May 25 07:59:23 2007 From: mummer at whitefalls.org (Michael Sheets) Date: Fri, 25 May 2007 02:59:23 -0500 Subject: [TxMt] ctrl+esc doesn't work In-Reply-To: <09BEBF78-81B7-474C-A313-D5A92C75352B@googlemail.com> References: <09BEBF78-81B7-474C-A313-D5A92C75352B@googlemail.com> Message-ID: <9ED37BBE-9969-4737-B49B-84B4BFA1464A@whitefalls.org> On May 25, 2007, at 2:35 AM, Niels Kobsch?tzki wrote: > Any idea how I can find out why ctrl+esc won't open anymore bundle > items menu anymore but does nothing (it's quite for a long time now > but today I got curious ;) ). > Searching for it in the "select bundle item"-menu didn't bring up > any results. http://article.gmane.org/gmane.editors.textmate.general/13830/ From n.kobschaetzki at googlemail.com Fri May 25 08:13:34 2007 From: n.kobschaetzki at googlemail.com (=?ISO-8859-1?Q?Niels_Kobsch=E4tzki?=) Date: Fri, 25 May 2007 10:13:34 +0200 Subject: [TxMt] ctrl+esc doesn't work In-Reply-To: <9ED37BBE-9969-4737-B49B-84B4BFA1464A@whitefalls.org> References: <09BEBF78-81B7-474C-A313-D5A92C75352B@googlemail.com> <9ED37BBE-9969-4737-B49B-84B4BFA1464A@whitefalls.org> Message-ID: <155F1357-7515-4BCC-896F-9951C0F15137@googlemail.com> On May 25, 2007, at 9:59 AM, Michael Sheets wrote: > On May 25, 2007, at 2:35 AM, Niels Kobsch?tzki wrote: > >> Any idea how I can find out why ctrl+esc won't open anymore bundle >> items menu anymore but does nothing (it's quite for a long time >> now but today I got curious ;) ). >> Searching for it in the "select bundle item"-menu didn't bring up >> any results. > > http://article.gmane.org/gmane.editors.textmate.general/13830/ Thx - that was the solution?that's really annoying? Niels From reinierl at gmail.com Fri May 25 08:30:10 2007 From: reinierl at gmail.com (Reinier Ladan) Date: Fri, 25 May 2007 10:30:10 +0200 Subject: [TxMt] Open textarea in Textmate Message-ID: <318def5f0705250130p7e3d88a2scfebe7d64cce38e8@mail.gmail.com> Hi list! Is there a way to open a textarea in textmate? Maybe with an extension for Firefox? Cause I want to edit the textarea in a html-editor like Textmate, editting HTML in a textarea drive me crazy. -- Met vriendelijke groet, Reinier Ladan Digital Energy BV W: www.digitalenergy.nl T: +31624872725 E: reinier at digitalenergy.nl Zin in een enorme lading web 2.0? Check uwbatterij.nl DISCLAIMER =========== De informatie verzonden met dit e-mailbericht is uitsluitend bestemd voor de geadresseerde(n). Gebruik van deze informatie door anderen dan de geadresseerde(n) is verboden. Openbaarmaking, vermenigvuldiging, verspreiding en/of verstrekking van deze informatie aan derden is niet toegestaan. Digital Energy BV staat niet in voor de juiste en volledige overbrenging van de inhoud van een verzonden e-mail, noch voor tijdige ontvangst daarvan. Wij raden u aan e-mail berichten bij ontvangst op virussen te controleren. De verzender kan, ondanks voortdurende controle, niet instaan voor het virusvrij verzenden van e-mail berichten. From andre at bonhote.org Fri May 25 08:47:17 2007 From: andre at bonhote.org (=?ISO-8859-1?Q?Bonh=F4te_Andr=E9?=) Date: Fri, 25 May 2007 10:47:17 +0200 Subject: [TxMt] Open textarea in Textmate In-Reply-To: <318def5f0705250130p7e3d88a2scfebe7d64cce38e8@mail.gmail.com> References: <318def5f0705250130p7e3d88a2scfebe7d64cce38e8@mail.gmail.com> Message-ID: Try this one: https://addons.mozilla.org/en-US/firefox/addon/4125 HTH Andr? On 25.05.2007, at 10:30, Reinier Ladan wrote: > Hi list! > > Is there a way to open a textarea in textmate? Maybe with an extension > for Firefox? Cause I want to edit the textarea in a html-editor like > Textmate, editting HTML in a textarea drive me crazy. From david at olrik.dk Fri May 25 08:48:53 2007 From: david at olrik.dk (David Jack Olrik) Date: Fri, 25 May 2007 10:48:53 +0200 Subject: [TxMt] Open textarea in Textmate In-Reply-To: <318def5f0705250130p7e3d88a2scfebe7d64cce38e8@mail.gmail.com> References: <318def5f0705250130p7e3d88a2scfebe7d64cce38e8@mail.gmail.com> Message-ID: <75BC019B-B7CF-4D3A-8304-CDE96ADF18F8@olrik.dk> On 25/05/2007, at 10.30, Reinier Ladan wrote: > Is there a way to open a textarea in textmate? Maybe with an extension > for Firefox? Yes =) .. There is a FireFox extention called 'mozex' that will let you do what you want. You can find mozex here: http://mozex.mozdev.org/ -- Best regards, David Jack Olrik http://david.olrik.dk GnuPG fingerprint C290 0A4A 0CCC CBA8 2B37 E18D 01D2 F6EF 2E61 9894 ["The first rule of Perl club is You do not talk about Perl club"] -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 1855 bytes Desc: not available URL: From lists.cpruitt at cliffpruitt.com Fri May 25 13:18:28 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Fri, 25 May 2007 09:18:28 -0400 Subject: [TxMt] Open textarea in Textmate In-Reply-To: <318def5f0705250130p7e3d88a2scfebe7d64cce38e8@mail.gmail.com> References: <318def5f0705250130p7e3d88a2scfebe7d64cce38e8@mail.gmail.com> Message-ID: For what it's worth, this is a relevant post on the TextMate blog. http://macromates.com/blog/archives/2007/02/26/edit-in-textmate-from- firefox/ - Cliff On May 25, 2007, at 4:30 AM, Reinier Ladan wrote: > Is there a way to open a textarea in textmate? Maybe with an extension > for Firefox? Cause I want to edit the textarea in a html-editor like > Textmate, editting HTML in a textarea drive me crazy. From fredb7 at gmail.com Fri May 25 13:47:42 2007 From: fredb7 at gmail.com (Fred B) Date: Fri, 25 May 2007 15:47:42 +0200 Subject: [TxMt] ctrl+esc doesn't work In-Reply-To: <155F1357-7515-4BCC-896F-9951C0F15137@googlemail.com> References: <09BEBF78-81B7-474C-A313-D5A92C75352B@googlemail.com> <9ED37BBE-9969-4737-B49B-84B4BFA1464A@whitefalls.org> <155F1357-7515-4BCC-896F-9951C0F15137@googlemail.com> Message-ID: <9c31463d0705250647u1f171edau9684f3ad7d6eef53@mail.gmail.com> On 5/25/07, Niels Kobsch?tzki wrote: > On May 25, 2007, at 9:59 AM, Michael Sheets wrote: > > http://article.gmane.org/gmane.editors.textmate.general/13830/ > > Thx - that was the solution?that's really annoying? Yes it is, but you can change the key equivalent: From jeremy at igneramos.com Fri May 25 13:47:50 2007 From: jeremy at igneramos.com (Jeremy Amos) Date: Fri, 25 May 2007 09:47:50 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> Message-ID: On May 23, 2007, at 11:29 PM, Tim Mansour wrote: > "MacGyver uses TextMate" +1 From chuck.esterbrook at gmail.com Fri May 25 14:38:46 2007 From: chuck.esterbrook at gmail.com (Chuck Esterbrook) Date: Fri, 25 May 2007 07:38:46 -0700 Subject: [TxMt] Refinement request In-Reply-To: References: <94cdd26f0705230919t6b68101avadf4312d8ce63dc5@mail.gmail.com> Message-ID: <94cdd26f0705250738m1fc44222r290a8d6dda4f018f@mail.gmail.com> Tyler, that's a nice tip. Thanks! Allan, thanks for the ticket URL in your response. -Chuck On 5/23/07, Tyler Hall wrote: > I've noticed the same thing, Chuck. I've forced myself into the habit > of pressing command+shift+L after searching to highlight the current > line and bring attention to the new cursor location. > > Tyler > > On 5/23/07, Chuck Esterbrook wrote: > > TextMate shows the current line that contains the cursor by > > highlighting the entire line. I like this because it makes finding the > > cursor easy when I come back to a TextMate window. > > > > But it gets short circuited by Find which highlights the found text, > > but removes the "whole line highlight". Consequently, it takes more > > effort to find where the selection/cursor jumped to upon finding text. > > > > My request is that selecting text within a line would retain the > > "whole line highlight". > > > > -Chuck > > > > ______________________________________________________________________ > > For new threads USE THIS: textmate at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From steve at narbat.com Fri May 25 15:23:02 2007 From: steve at narbat.com (Steve King) Date: Fri, 25 May 2007 11:23:02 -0400 (EDT) Subject: [TxMt] Refinement request In-Reply-To: <94cdd26f0705250738m1fc44222r290a8d6dda4f018f@mail.gmail.com> References: <94cdd26f0705230919t6b68101avadf4312d8ce63dc5@mail.gmail.com> <94cdd26f0705250738m1fc44222r290a8d6dda4f018f@mail.gmail.com> Message-ID: On Fri, 25 May 2007, Chuck Esterbrook wrote: > On 5/23/07, Tyler Hall wrote: >> I've noticed the same thing, Chuck. I've forced myself into the habit >> of pressing command+shift+L after searching to highlight the current >> line and bring attention to the new cursor location. > > Tyler, that's a nice tip. Thanks! I do something similar with a "Select Nothing" macro: moveRightAndModifySelection: (shift-right-arrow)) moveLeft: (left-arrow) This simply deselects the region, leaving the cursor at the beginning of that region. I have this bound to the ESC key, since that's what I'm used to from other editors. I also make heavy use of column (block) selections, and it just feels awkward to make a stream selection, change it to a column selection, then modify the selected area. So I have a "Start Block Selection" macro bound to ^B which does the first two steps at once. moveRightAndModifySelection: (shift-right-arrow)) toggleColumnSelection: (option) -- Steve King, From oblivious at subtlegradient.com Fri May 25 16:46:51 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Fri, 25 May 2007 12:46:51 -0400 Subject: [TxMt] ctrl+esc doesn't work In-Reply-To: <9c31463d0705250647u1f171edau9684f3ad7d6eef53@mail.gmail.com> References: <09BEBF78-81B7-474C-A313-D5A92C75352B@googlemail.com> <9ED37BBE-9969-4737-B49B-84B4BFA1464A@whitefalls.org> <155F1357-7515-4BCC-896F-9951C0F15137@googlemail.com> <9c31463d0705250647u1f171edau9684f3ad7d6eef53@mail.gmail.com> Message-ID: <04598506-426A-41C1-AC5A-4B6DDC3538F9@subtlegradient.com> On May 25, 2007, at 9:47 AM, Fred B wrote: > On 5/25/07, Niels Kobsch?tzki wrote: >> On May 25, 2007, at 9:59 AM, Michael Sheets wrote: >> > http://article.gmane.org/gmane.editors.textmate.general/13830/ >> >> Thx - that was the solution?that's really annoying? > > Yes it is, but you can change the key equivalent: > > expert_preferences#oakbundleitemspopupmenukeyequivalent> I changed mine to control+help_key and I love it like that. thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From contact at helmutgranda.com Fri May 25 17:26:12 2007 From: contact at helmutgranda.com (Helmut Granda) Date: Fri, 25 May 2007 12:26:12 -0500 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> Message-ID: "Chicks digg TextMate" On 5/25/07, Jeremy Amos wrote: > > > On May 23, 2007, at 11:29 PM, Tim Mansour wrote: > > > "MacGyver uses TextMate" > > +1 > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > -------------- next part -------------- An HTML attachment was scrubbed... URL: From edouard.gilbert at eleves.bretagne.ens-cachan.fr Fri May 25 14:23:13 2007 From: edouard.gilbert at eleves.bretagne.ens-cachan.fr (=?ISO-8859-1?Q?=C9douard_Gilbert?=) Date: Fri, 25 May 2007 16:23:13 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> Message-ID: <52C98FF8-DEA7-4E4F-A87E-D20217BDBCDF@eleves.bretagne.ens-cachan.fr> [Mate]Gyver ? Le 25 mai 07 ? 15:47, Jeremy Amos a ?crit : > > On May 23, 2007, at 11:29 PM, Tim Mansour wrote: > >> "MacGyver uses TextMate" > > +1 > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From daryl.spitzer at gmail.com Fri May 25 17:54:39 2007 From: daryl.spitzer at gmail.com (Daryl Spitzer) Date: Fri, 25 May 2007 10:54:39 -0700 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <52C98FF8-DEA7-4E4F-A87E-D20217BDBCDF@eleves.bretagne.ens-cachan.fr> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <52C98FF8-DEA7-4E4F-A87E-D20217BDBCDF@eleves.bretagne.ens-cachan.fr> Message-ID: T (I can't find the Esc symbol in Character Palette, but that's what should be on the shirt) and the gear icon On 5/25/07, ?douard Gilbert wrote: > [Mate]Gyver ? > > Le 25 mai 07 ? 15:47, Jeremy Amos a ?crit : > > > > > On May 23, 2007, at 11:29 PM, Tim Mansour wrote: > > > >> "MacGyver uses TextMate" > > > > +1 > > > > ______________________________________________________________________ > > For new threads USE THIS: textmate at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > From henrik at nyh.se Fri May 25 20:55:43 2007 From: henrik at nyh.se (Henrik Nyh) Date: Fri, 25 May 2007 22:55:43 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> Message-ID: On 25/05/07, Jeremy Amos wrote: > > On May 23, 2007, at 11:29 PM, Tim Mansour wrote: > > > "MacGyver uses TextMate" > > +1 I don't know about this one. It suggests solving problems with limited means. http://en.wikipedia.org/wiki/List_of_problems_solved_by_MacGyver is great reading, though. :) From xcambar at gmail.com Fri May 25 22:27:48 2007 From: xcambar at gmail.com (Xavier Cambar) Date: Sat, 26 May 2007 00:27:48 +0200 Subject: [TxMt] Unused key-bindings Message-ID: <80FCC3B7-AF45-443F-BEDE-4FA2F8E607E2@gmail.com> Hi there, I was just wondering if there was a way to know if a key combination was assigned to a particular action. Why: I would like to avoid as much as possible the use of the pop-up showing the corresponding actions, and so, assign a unique action per shortcut per scope. Even if there is the "Show Keyboard Shortcuts" command, it could be more useful to type in the shortcut you want to test, and you get as the result a list of actions assigned to that shortcut. Thanks in advance, Xavier Cambar From fredb7 at gmail.com Fri May 25 22:51:04 2007 From: fredb7 at gmail.com (Fred B) Date: Sat, 26 May 2007 00:51:04 +0200 Subject: [TxMt] Unused key-bindings In-Reply-To: <80FCC3B7-AF45-443F-BEDE-4FA2F8E607E2@gmail.com> References: <80FCC3B7-AF45-443F-BEDE-4FA2F8E607E2@gmail.com> Message-ID: <9c31463d0705251551m8997387h302430c5c728fbf5@mail.gmail.com> On 5/26/07, Xavier Cambar wrote: > Hi there, > I was just wondering if there was a way to know if a key combination > was assigned to a particular action. Bundles menu -> Select Bundle Item. Change the search field to "Key equivalent", type the shortcut. Note that the result depend on the scope in the frontmost doc. -- FredB From jaguarcy at gmail.com Fri May 25 22:53:18 2007 From: jaguarcy at gmail.com (=?UTF-8?Q?Constantinos_Neophytou_=E2=99=8E?=) Date: Sat, 26 May 2007 01:53:18 +0300 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> Message-ID: <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> I vote for Text ? Mate (+ the gears somewhere) at the back, and for the front something along the lines of chuck norris facts, but for allan (warning: I'm bad at this): Allan writes code by using his fist as a tab trigger. (or Allan's fist expands to working code when used as a tab trigger.. ?) Allan, you don't happen to have a full beard, do you? This would be a great time to grow one :) On May 25, 2007, at 11:55 PM, Henrik Nyh wrote: > On 25/05/07, Jeremy Amos wrote: >> >> On May 23, 2007, at 11:29 PM, Tim Mansour wrote: >> >> > "MacGyver uses TextMate" >> >> +1 > > I don't know about this one. It suggests solving problems with > limited means. > > http://en.wikipedia.org/wiki/List_of_problems_solved_by_MacGyver is > great reading, though. :) > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate -- What's your Dream? Make it happen with www.dostpost.com -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 1288 bytes Desc: not available URL: From lists.cpruitt at cliffpruitt.com Fri May 25 23:47:46 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Fri, 25 May 2007 19:47:46 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> Message-ID: <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> I'm not too big on the Text ? Mate thing... The app name is TextMate. Breaking the name up seems weird. Granted the tab triggers are a core part of the app, but I'm not sure it makes a good shirt. My vote is still for the app icon & the name. Let it be as elegant as the app itself. The rest is starting to sound like tee-shirts college students wear on spring break ("My Bundle is bigger than yours..."). Whatever... just my $0.02 - Cliff On May 25, 2007, at 6:53 PM, Constantinos Neophytou ? wrote: > I vote for > > Text ? Mate (+ the gears somewhere) > > at the back, and for the front something along the lines of chuck > norris facts, but for allan (warning: I'm bad at this): > > Allan writes code by using his fist as a tab trigger. (or Allan's > fist expands to working code when used as a tab trigger.. ?) > > Allan, you don't happen to have a full beard, do you? This would be > a great time to grow one :) > > > On May 25, 2007, at 11:55 PM, Henrik Nyh wrote: > >> On 25/05/07, Jeremy Amos wrote: >>> >>> On May 23, 2007, at 11:29 PM, Tim Mansour wrote: >>> >>> > "MacGyver uses TextMate" >>> >>> +1 >> >> I don't know about this one. It suggests solving problems with >> limited means. >> >> http://en.wikipedia.org/wiki/List_of_problems_solved_by_MacGyver is >> great reading, though. :) >> >> _____________________________________________________________________ >> _ >> For new threads USE THIS: textmate at lists.macromates.com >> (threading gets destroyed and the universe will collapse if you >> don't) >> http://lists.macromates.com/mailman/listinfo/textmate > > -- > What's your Dream? > Make it happen with www.dostpost.com > > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From digilord at mac.com Fri May 25 23:50:37 2007 From: digilord at mac.com (digilord at mac.com) Date: Fri, 25 May 2007 16:50:37 -0700 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> Message-ID: Like this? -------------- next part -------------- A non-text attachment was scrubbed... Name: TextMate-Logo-1.png Type: image/png Size: 32722 bytes Desc: not available URL: -------------- next part -------------- On May 25, 2007, at 4:47 PM, Cliff Pruitt wrote: > I'm not too big on the Text ? Mate thing... The app name is > TextMate. Breaking the name up seems weird. Granted the tab > triggers are a core part of the app, but I'm not sure it makes a > good shirt. > > My vote is still for the app icon & the name. Let it be as elegant > as the app itself. The rest is starting to sound like tee-shirts > college students wear on spring break ("My Bundle is bigger than > yours..."). > > Whatever... just my $0.02 > > - Cliff > > On May 25, 2007, at 6:53 PM, Constantinos Neophytou ? wrote: > >> I vote for >> >> Text ? Mate (+ the gears somewhere) >> >> at the back, and for the front something along the lines of chuck >> norris facts, but for allan (warning: I'm bad at this): >> >> Allan writes code by using his fist as a tab trigger. (or Allan's >> fist expands to working code when used as a tab trigger.. ?) >> >> Allan, you don't happen to have a full beard, do you? This would >> be a great time to grow one :) >> >> >> On May 25, 2007, at 11:55 PM, Henrik Nyh wrote: >> >>> On 25/05/07, Jeremy Amos wrote: >>>> >>>> On May 23, 2007, at 11:29 PM, Tim Mansour wrote: >>>> >>>> > "MacGyver uses TextMate" >>>> >>>> +1 >>> >>> I don't know about this one. It suggests solving problems with >>> limited means. >>> >>> http://en.wikipedia.org/wiki/List_of_problems_solved_by_MacGyver is >>> great reading, though. :) >>> >>> ____________________________________________________________________ >>> __ >>> For new threads USE THIS: textmate at lists.macromates.com >>> (threading gets destroyed and the universe will collapse if you >>> don't) >>> http://lists.macromates.com/mailman/listinfo/textmate >> >> -- >> What's your Dream? >> Make it happen with www.dostpost.com >> >> >> >> >> _____________________________________________________________________ >> _ >> For new threads USE THIS: textmate at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From alex.j.ross at gmail.com Fri May 25 23:50:40 2007 From: alex.j.ross at gmail.com (Alex Ross) Date: Fri, 25 May 2007 16:50:40 -0700 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> Message-ID: agreed. simple is better. On May 25, 2007, at 4:47 PM, Cliff Pruitt wrote: > I'm not too big on the Text ? Mate thing... The app name is > TextMate. Breaking the name up seems weird. Granted the tab > triggers are a core part of the app, but I'm not sure it makes a > good shirt. > > My vote is still for the app icon & the name. Let it be as elegant > as the app itself. The rest is starting to sound like tee-shirts > college students wear on spring break ("My Bundle is bigger than > yours..."). > > Whatever... just my $0.02 > > - Cliff > > On May 25, 2007, at 6:53 PM, Constantinos Neophytou ? wrote: > >> I vote for >> >> Text ? Mate (+ the gears somewhere) >> >> at the back, and for the front something along the lines of chuck >> norris facts, but for allan (warning: I'm bad at this): >> >> Allan writes code by using his fist as a tab trigger. (or Allan's >> fist expands to working code when used as a tab trigger.. ?) >> >> Allan, you don't happen to have a full beard, do you? This would >> be a great time to grow one :) >> >> >> On May 25, 2007, at 11:55 PM, Henrik Nyh wrote: >> >>> On 25/05/07, Jeremy Amos wrote: >>>> >>>> On May 23, 2007, at 11:29 PM, Tim Mansour wrote: >>>> >>>> > "MacGyver uses TextMate" >>>> >>>> +1 >>> >>> I don't know about this one. It suggests solving problems with >>> limited means. >>> >>> http://en.wikipedia.org/wiki/List_of_problems_solved_by_MacGyver is >>> great reading, though. :) >>> >>> ____________________________________________________________________ >>> __ >>> For new threads USE THIS: textmate at lists.macromates.com >>> (threading gets destroyed and the universe will collapse if you >>> don't) >>> http://lists.macromates.com/mailman/listinfo/textmate >> >> -- >> What's your Dream? >> Make it happen with www.dostpost.com >> >> >> >> >> _____________________________________________________________________ >> _ >> For new threads USE THIS: textmate at 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 at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From xcambar at gmail.com Fri May 25 23:55:03 2007 From: xcambar at gmail.com (Xavier Cambar) Date: Sat, 26 May 2007 01:55:03 +0200 Subject: [TxMt] Unused key-bindings In-Reply-To: <9c31463d0705251551m8997387h302430c5c728fbf5@mail.gmail.com> References: <80FCC3B7-AF45-443F-BEDE-4FA2F8E607E2@gmail.com> <9c31463d0705251551m8997387h302430c5c728fbf5@mail.gmail.com> Message-ID: <2C282745-E952-4E1D-AAAB-4A6F7B44E366@gmail.com> > Change the search field to "Key equivalent", type the shortcut. Aaahh, this is what I missed! Any way to make it scope-independent? From jaguarcy at gmail.com Fri May 25 23:55:30 2007 From: jaguarcy at gmail.com (=?UTF-8?Q?Constantinos_Neophytou_=E2=99=8E?=) Date: Sat, 26 May 2007 02:55:30 +0300 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> Message-ID: <09A85C2B-F812-44F4-898D-1A020B1C8C66@gmail.com> On May 26, 2007, at 2:47 AM, Cliff Pruitt wrote: > My vote is still for the app icon & the name. Let it be as elegant > as the app itself. The rest is starting to sound like tee-shirts > college students wear on spring break ("My Bundle is bigger than > yours..."). College spring break? I'd wear that to work... :) > I'm not too big on the Text ? Mate thing... The app name is > TextMate. Breaking the name up seems weird. Granted the tab > triggers are a core part of the app, but I'm not sure it makes a > good shirt. probably so... i guess the real question is what market is the tee going after? and are we really looking for a single design, or multiple ones? obviously textmate's user base is quite diverse, so a single design might not make much sense other than just the name/ logo, which it then becomes like any other promotional tee, and not necessarily something someone would wear regularly. Then again, I'm often known to be completely wrong... -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 1288 bytes Desc: not available URL: From listsin at integrateddevcorp.com Fri May 25 23:57:02 2007 From: listsin at integrateddevcorp.com (Lists In@IDC) Date: Fri, 25 May 2007 19:57:02 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> Message-ID: <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> On May 25, 2007, at 7:47 PM, Cliff Pruitt wrote: > I'm not too big on the Text ? Mate thing... The app name is > TextMate. Breaking the name up seems weird. Granted the tab > triggers are a core part of the app, but I'm not sure it makes a > good shirt. > > My vote is still for the app icon & the name. Let it be as elegant > as the app itself. The rest is starting to sound like tee-shirts > college students wear on spring break ("My Bundle is bigger than > yours..."). > > Whatever... just my $0.02 I agree. Minimalist, out of your face approach; just like the product. Less is more. Thanks, S From alex.j.ross at gmail.com Sat May 26 00:15:05 2007 From: alex.j.ross at gmail.com (Alex Ross) Date: Fri, 25 May 2007 17:15:05 -0700 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> Message-ID: something like this would be pretty slick: -------------- next part -------------- A non-text attachment was scrubbed... Name: textmate-t-shirt.png Type: image/png Size: 22515 bytes Desc: not available URL: -------------- next part -------------- - Alex On May 25, 2007, at 4:57 PM, Lists In at IDC wrote: > On May 25, 2007, at 7:47 PM, Cliff Pruitt wrote: >> I'm not too big on the Text ? Mate thing... The app name is >> TextMate. Breaking the name up seems weird. Granted the tab >> triggers are a core part of the app, but I'm not sure it makes a >> good shirt. >> >> My vote is still for the app icon & the name. Let it be as >> elegant as the app itself. The rest is starting to sound like tee- >> shirts college students wear on spring break ("My Bundle is bigger >> than yours..."). >> >> Whatever... just my $0.02 > > I agree. > > Minimalist, out of your face approach; just like the product. > > Less is more. > > Thanks, > > S > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From listsin at integrateddevcorp.com Sat May 26 00:31:23 2007 From: listsin at integrateddevcorp.com (Lists In@IDC) Date: Fri, 25 May 2007 20:31:23 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <09A85C2B-F812-44F4-898D-1A020B1C8C66@gmail.com> References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <09A85C2B-F812-44F4-898D-1A020B1C8C66@gmail.com> Message-ID: On May 25, 2007, at 7:55 PM, Constantinos Neophytou ? wrote: > On May 26, 2007, at 2:47 AM, Cliff Pruitt wrote: > ... > probably so... i guess the real question is what market is the tee > going after? A tee-shirt doesn't go after a market. It goes on your torso. > a single design might not make much sense other than just the name/ > logo Just the name/logo makes perfect sense. Our life is frittered away by detail. An honest man has hardly need to count more than his ten fingers, or in extreme cases he may add his ten toes, and lump the rest. Simplicity, simplicity, simplicity! I say, let your affairs be as two or three, and not a hundred or a thousand; instead of a million count half a dozen, and keep your accounts on your thumb nail. - Henry David Thoreau Emerson replied, "I think one 'simplify' would have sufficed." Badly quoted, but you get the point... S -------------- next part -------------- An HTML attachment was scrubbed... URL: From jaguarcy at gmail.com Sat May 26 09:35:25 2007 From: jaguarcy at gmail.com (=?UTF-8?Q?Constantinos_Neophytou_=E2=99=8E?=) Date: Sat, 26 May 2007 12:35:25 +0300 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <8B4CC93E-FD5E-46D5-A99F-B509B4A953FB@neologica.com.au> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <09A85C2B-F812-44F4-898D-1A020B1C8C66@gmail.com> Message-ID: <197D4BB9-0638-42DB-82CB-6497CF026180@gmail.com> On May 26, 2007, at 3:31 AM, Lists In at IDC wrote: > A tee-shirt doesn't go after a market. It goes on your torso. > Just the name/logo makes perfect sense. > > Our life is frittered away by detail. An honest man has hardly need > to count more than his ten fingers, or in extreme cases he may add > his ten toes, and lump the rest. Simplicity, simplicity, > simplicity! I say, let your affairs be as two or three, and not a > hundred or a thousand; instead of a million count half a dozen, and > keep your accounts on your thumb nail. > - Henry David Thoreau > > Emerson replied, "I think one 'simplify' would have sufficed." > > Badly quoted, but you get the point... I believe I'm convinced... :) But I still think the purple should be a part of it. If not the whole shirt, then at least part of the logo. I mean it will not be a textmate shirt if it doesn't have purple on it.... To bring up an example: How many people were freaked out on halloween when textmate started up and there was no purple in the dock? I know I was.. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 1288 bytes Desc: not available URL: From henrik at nyh.se Sat May 26 10:04:20 2007 From: henrik at nyh.se (Henrik Nyh) Date: Sat, 26 May 2007 12:04:20 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> References: <464CDBEE.9010308@gmail.com> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> Message-ID: On 26/05/07, Lists In at IDC wrote: > On May 25, 2007, at 7:47 PM, Cliff Pruitt wrote: > > I'm not too big on the Text ? Mate thing... The app name is > > TextMate. Breaking the name up seems weird. Granted the tab > > triggers are a core part of the app, but I'm not sure it makes a > > good shirt. > > > > My vote is still for the app icon & the name. Let it be as elegant > > as the app itself. The rest is starting to sound like tee-shirts > > college students wear on spring break ("My Bundle is bigger than > > yours..."). > > > > Whatever... just my $0.02 > > I agree. > > Minimalist, out of your face approach; just like the product. > > Less is more. I definitely want it clean and simple, too, though that doesn't necessarily imply the lack of a slogan/suchlike. I made clean-and-simple (in my opinion) mockups of just the logo and "textmate", and the same with "text?mate". I actually think I'd prefer the latter after seeing it "in action". Just one character away from full simplicity, but adds a lot of spice. The PSD (Adobe Photoshop) is at http://henrik.nyh.se/dump/TextMate%20shirt.psd (0.5 MB) if someone else wants to play. Used Calibri for the font (very close but not quite what's used on http://macromates.com/, it seems). The t-shirt graphic itself is from some "make your own t-shirt" site. -------------- next part -------------- A non-text attachment was scrubbed... Name: tmshirt-tab.png Type: image/png Size: 40185 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: tmshirt.png Type: image/png Size: 40199 bytes Desc: not available URL: From jfalgueras at uma.es Sat May 26 10:11:07 2007 From: jfalgueras at uma.es (Juan Falgueras) Date: Sat, 26 May 2007 12:11:07 +0200 Subject: [TxMt] Estrange bell when switching from TM in Autosave mode Message-ID: <6FA47E68-1B3E-4677-A550-E3603EFF1C2E@uma.es> Hi If I mark -------------- next part -------------- A non-text attachment was scrubbed... Name: pastedGraphic.png Type: image/png Size: 6710 bytes Desc: not available URL: -------------- next part -------------- my 2xG5 does a bell sound when switching to terminal (or other application). It does not occur in my PowerBook G4... It is a bit inconfortable but I now can't live with this option!! ----- Juan F. From harrison at Math.Berkeley.EDU Sat May 26 10:57:39 2007 From: harrison at Math.Berkeley.EDU (Jenny Harrison) Date: Sat, 26 May 2007 03:57:39 -0700 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> Message-ID: The spice is there and it is beautifully clean and simple, with a touch of intrigue and cleverness. Nice, very nice! Jenny On May 26, 2007, at 3:04 AM, Henrik Nyh wrote: > On 26/05/07, Lists In at IDC wrote: >> On May 25, 2007, at 7:47 PM, Cliff Pruitt wrote: >> > I'm not too big on the Text ? Mate thing... The app name is >> > TextMate. Breaking the name up seems weird. Granted the tab >> > triggers are a core part of the app, but I'm not sure it makes a >> > good shirt. >> > >> > My vote is still for the app icon & the name. Let it be as elegant >> > as the app itself. The rest is starting to sound like tee-shirts >> > college students wear on spring break ("My Bundle is bigger than >> > yours..."). >> > >> > Whatever... just my $0.02 >> >> I agree. >> >> Minimalist, out of your face approach; just like the product. >> >> Less is more. > > I definitely want it clean and simple, too, though that doesn't > necessarily imply the lack of a slogan/suchlike. > > I made clean-and-simple (in my opinion) mockups of just the logo and > "textmate", and the same with "text?mate". I actually think I'd > prefer > the latter after seeing it "in action". Just one character away from > full simplicity, but adds a lot of spice. > > The PSD (Adobe Photoshop) is at > http://henrik.nyh.se/dump/TextMate%20shirt.psd (0.5 MB) if someone > else wants to play. Used Calibri for the font (very close but not > quite what's used on http://macromates.com/, it seems). The t-shirt > graphic itself is from some "make your own t-shirt" site. > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From komor at mac.com Sat May 26 12:42:36 2007 From: komor at mac.com (=?UTF-8?Q?Rafa=C5=82_Komorowski?=) Date: Sat, 26 May 2007 14:42:36 +0200 Subject: [TxMt] Release notes and diff - how to distinguish .txt files? Message-ID: <51A30B8E-DBA0-40BF-A8FD-8EDF4A14E62D@mac.com> Hi, I'm using TextMate for Ruby and Rails development. There is a feature/ behaviour that worked correctly, back in early days, but it doesn't work now, since long. Here it goes: I have a changelog.txt file in my Rails project, that describes changes made in svn-commits. This file should be viewed as "Release Notes" file-type (then it's properly colored etc.). But it is in conflict with the Subversion-bundle (or Diff-bundle?), because temporaty diff-files generated by TextMate (when using Subversion- bundle) have now a .txt extension too, not .diff, as it used to have. Now, when I'm manually switching the language from the popup-menu (the one located at the bottom of the diff window) then next time I'm viewing a changelog.txt, it's treated as "Plain Text", not as "Release Notes" type of document. When I'm manually switching it to the "Release Notes" then next time a diff is generated, it's displayed as "Plain Text", not as "Diff". I tried to look into the bundles, but I cannot find anything helpful. Maybe the diffs should have a .diff file--extension? Maybe I have something messed-up in my bundle-config? Described behaviour is consistent on 2 machines (both PowerPC and Intel). Any ideas? TIA. -- Rafa? Komorowski komor at mac.com GG: 4083718 From chuck.esterbrook at gmail.com Sat May 26 14:40:53 2007 From: chuck.esterbrook at gmail.com (Chuck Esterbrook) Date: Sat, 26 May 2007 07:40:53 -0700 Subject: [TxMt] Performance Request: Faster "Find in Project" Message-ID: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> "Find in Project" is useful, but can be slow. I guess I've gotten spoiled by Spotlight, Google Desktop, etc. My request is that TextMate keep the contents of the project indexed for speed. Also, results should come up as a I type. See, for example, WingIDE which manages to do this. -Chuck From dan at tangledhelix.com Sat May 26 14:42:39 2007 From: dan at tangledhelix.com (Dan Lowe) Date: Sat, 26 May 2007 10:42:39 -0400 Subject: [TxMt] Unused key-bindings In-Reply-To: <2C282745-E952-4E1D-AAAB-4A6F7B44E366@gmail.com> References: <80FCC3B7-AF45-443F-BEDE-4FA2F8E607E2@gmail.com> <9c31463d0705251551m8997387h302430c5c728fbf5@mail.gmail.com> <2C282745-E952-4E1D-AAAB-4A6F7B44E366@gmail.com> Message-ID: <52E9203A-CDC5-4BE3-9820-CC7F46B8A145@tangledhelix.com> On May 25, 2007, at 7:55 PM, Xavier Cambar wrote: >> Change the search field to "Key equivalent", type the shortcut. > Aaahh, this is what I missed! > > Any way to make it scope-independent? Try triggering it when you have no windows open. -dan From Soryu at serenity.de Sat May 26 16:41:25 2007 From: Soryu at serenity.de (Soryu) Date: Sat, 26 May 2007 18:41:25 +0200 Subject: [TxMt] Performance Request: Faster "Find in Project" In-Reply-To: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> References: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> Message-ID: On 26.05.2007, at 16:40, Chuck Esterbrook wrote: > "Find in Project" is useful, but can be slow. I guess I've gotten > spoiled by Spotlight, Google Desktop, etc. > > My request is that TextMate keep the contents of the project indexed > for speed. Also, results should come up as a I type. See, for example, > WingIDE which manages to do this. > > -Chuck After the first search, which takes a while, it is almost instantly finding, for me. So I think it is already keeping an index. Soryu. PS: My project: $ du -hs . 48M . $ ls -R|wc -l 6626 From oblivious at subtlegradient.com Sat May 26 16:53:43 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Sat, 26 May 2007 12:53:43 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <46539337.2080901@riemer.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> Message-ID: <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> On May 26, 2007, at 6:04 AM, Henrik Nyh wrote: > I definitely want it clean and simple, too, though that doesn't > necessarily imply the lack of a slogan/suchlike. > > I made clean-and-simple (in my opinion) mockups of just the logo and > "textmate", and the same with "text?mate". I actually think I'd > prefer > the latter after seeing it "in action". Just one character away from > full simplicity, but adds a lot of spice. > > The PSD (Adobe Photoshop) is at > http://henrik.nyh.se/dump/TextMate%20shirt.psd (0.5 MB) if someone > else wants to play. Used Calibri for the font (very close but not > quite what's used on http://macromates.com/, it seems). The t-shirt > graphic itself is from some "make your own t-shirt" site. Looks great. I'd buy one. I dig the text in bold and the mate in normal. I don't like the version with the tab character. It looks a bit odd. What would go on the back? thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From henrik at nyh.se Sat May 26 17:06:56 2007 From: henrik at nyh.se (Henrik Nyh) Date: Sat, 26 May 2007 19:06:56 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> References: <464CDBEE.9010308@gmail.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> Message-ID: On 26/05/07, Thomas Aylott (subtleGradient) wrote: > > On May 26, 2007, at 6:04 AM, Henrik Nyh wrote: > > > I definitely want it clean and simple, too, though that doesn't > > necessarily imply the lack of a slogan/suchlike. > > > > > I made clean-and-simple (in my opinion) mockups of just the logo and > > "textmate", and the same with "text?mate". I actually think I'd prefer > > the latter after seeing it "in action". Just one character away from > > full simplicity, but adds a lot of spice. > > > > > The PSD (Adobe Photoshop) is at > > http://henrik.nyh.se/dump/TextMate%20shirt.psd (0.5 MB) if > someone > > else wants to play. Used Calibri for the font (very close but not > > quite what's used on http://macromates.com/, it seems). The t-shirt > > graphic itself is from some "make your own t-shirt" site. > Looks great. I'd buy one. Me too (though I hope I won't have to, after making these mockups ;p). > I dig the text in bold and the mate in normal. That's straight from http://macromates.com/. I agree, it looks nice. > I don't like the version with the tab character. > It looks a bit odd. > > What would go on the back? I think it'd probably look best with nothing printed on the back. Again, clean and simple. From mummer at whitefalls.org Sat May 26 17:21:31 2007 From: mummer at whitefalls.org (Michael Sheets) Date: Sat, 26 May 2007 12:21:31 -0500 Subject: [TxMt] Estrange bell when switching from TM in Autosave mode In-Reply-To: <6FA47E68-1B3E-4677-A550-E3603EFF1C2E@uma.es> References: <6FA47E68-1B3E-4677-A550-E3603EFF1C2E@uma.es> Message-ID: On May 26, 2007, at 5:11 AM, Juan Falgueras wrote: > my 2xG5 does a bell sound when switching to terminal (or other > application). It does not occur in my PowerBook G4... > > It is a bit inconfortable but I now can't live with this option!! Next time this happens open the Console.app and see if it's giving you an error. Then send the error message here. From oblivious at subtlegradient.com Sat May 26 17:24:48 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Sat, 26 May 2007 13:24:48 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> Message-ID: On May 26, 2007, at 1:06 PM, Henrik Nyh wrote: >> What would go on the back? > > I think it'd probably look best with nothing printed on the back. > Again, clean and simple. agreed ? thomas -------------- next part -------------- An HTML attachment was scrubbed... URL: From jay-txmt at soffian.org Sat May 26 18:21:15 2007 From: jay-txmt at soffian.org (Jay Soffian) Date: Sat, 26 May 2007 14:21:15 -0400 Subject: [TxMt] Performance Request: Faster "Find in Project" In-Reply-To: References: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> Message-ID: <39F27CAD-341E-4106-8B28-1700900D5DED@soffian.org> On May 26, 2007, at 1:05 PM, Soryu wrote: > After the first search, which takes a while, it is almost instantly > finding, for me. So I think it is already keeping an index. Nah, that's likely the unified/filesystem/vm buffer cache. A wonderful thing, if you've got the RAM; otherwise the thrashing can suck. :-) (And aren't those 2GB SODIMM modules getting temptingly affordable?) j. From throw-away-1 at macromates.com Sat May 26 18:24:08 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sat, 26 May 2007 20:24:08 +0200 Subject: Standard ML bundle (was: [TxMt] Re: textmate Digest, Vol 32, Issue 25) In-Reply-To: References: <20070524120050.394D86788@comox.textdrive.com> Message-ID: On 25. May 2007, at 02:14, George Kuan wrote: > Is there a way for me to take over the Standard ML bundle? I have > made some significant improvements. Sure, preferably first submit changes as a patch, I can give you commit access to the bundle after that. From throw-away-1 at macromates.com Sat May 26 18:27:00 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sat, 26 May 2007 20:27:00 +0200 Subject: [TxMt] "load in ghci" not working for haskell bundle In-Reply-To: <303dedc60705241919q69f0573bh2c89b8ab64d50569@mail.gmail.com> References: <303dedc60705241919q69f0573bh2c89b8ab64d50569@mail.gmail.com> Message-ID: On 25. May 2007, at 04:19, Edwin Chen wrote: > On my MacBook (running ghc-6.6 and OS X 10.4), when I select "Load in > GHCi", nothing happens. > Any clue as to what's wrong, or anyone else experience this problem? Nothing happens? I.e. a terminal window doesn?t even show? From throw-away-1 at macromates.com Sat May 26 18:31:11 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sat, 26 May 2007 20:31:11 +0200 Subject: [TxMt] Release notes and diff - how to distinguish .txt files? In-Reply-To: <51A30B8E-DBA0-40BF-A8FD-8EDF4A14E62D@mac.com> References: <51A30B8E-DBA0-40BF-A8FD-8EDF4A14E62D@mac.com> Message-ID: <6C5C8553-5578-48D4-B605-012AB29A9842@macromates.com> On 26. May 2007, at 14:42, Rafa? Komorowski wrote: > [...] temporaty diff-files generated by TextMate (when using > Subversion-bundle) have now a .txt extension too, not .diff, as it > used to have. I assume this is when invoking diff from the commit or status window? The rest of the diff actions should AFAIK be fine. But those two should have the used extension changed. From komor at mac.com Sat May 26 19:32:13 2007 From: komor at mac.com (=?UTF-8?Q?Rafa=C5=82_Komorowski?=) Date: Sat, 26 May 2007 21:32:13 +0200 Subject: [TxMt] Release notes and diff - how to distinguish .txt files? In-Reply-To: <6C5C8553-5578-48D4-B605-012AB29A9842@macromates.com> References: <51A30B8E-DBA0-40BF-A8FD-8EDF4A14E62D@mac.com> <6C5C8553-5578-48D4-B605-012AB29A9842@macromates.com> Message-ID: <6C12F0AD-2D40-4953-B700-39D677627D84@mac.com> On 26/05/2007, at 20:31, Allan Odgaard wrote: > I assume this is when invoking diff from the commit or status > window? The rest of the diff actions should AFAIK be fine. But > those two should have the used extension changed. It seems you're right. When I select: Bundle ? Subversion ? Diff ? Diff with Working Copy then I get "untitled" text-window properly set to "Diff" (and properly colored, of course). I tried again to look into the guts of Subversion.tmbundle, to find the place where the temporary files are generated, but I can't find this. Too weak textmater I am... -- Rafa? Komorowski komor at mac.com GG: 4083718 From lists.cpruitt at cliffpruitt.com Sat May 26 19:49:01 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Sat, 26 May 2007 15:49:01 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> Message-ID: Agree, although I still like just TextMate as opposed to Text ? Mate. That said I could go for the logo & app name on the front and just a small simple: ? on the back between the shoulder blades. I guess this brings me up to $0.04. - Cliff On May 26, 2007, at 1:24 PM, Thomas Aylott (subtleGradient) wrote: >> I think it'd probably look best with nothing printed on the back. >> Again, clean and simple. > > agreed ? thomas From lists.cpruitt at cliffpruitt.com Sat May 26 19:52:17 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Sat, 26 May 2007 15:52:17 -0400 Subject: [TxMt] Performance Request: Faster "Find in Project" In-Reply-To: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> References: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> Message-ID: On May 26, 2007, at 10:40 AM, Chuck Esterbrook wrote: > I guess I've gotten > spoiled by Spotlight, Google Desktop, etc. Spoiled by Spotight? What system are you using? One of the new 8 core beasts? Spotlight is slow as mud for me usually on a Core Duo MacBook Pro. - Cliff From Soryu at serenity.de Sat May 26 20:01:11 2007 From: Soryu at serenity.de (Soryu) Date: Sat, 26 May 2007 22:01:11 +0200 Subject: [TxMt] Performance Request: Faster "Find in Project" In-Reply-To: References: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> Message-ID: On 26.05.2007, at 21:52, Cliff Pruitt wrote: > > On May 26, 2007, at 10:40 AM, Chuck Esterbrook wrote: > >> I guess I've gotten >> spoiled by Spotlight, Google Desktop, etc. > > Spoiled by Spotight? What system are you using? One of the new 8 > core beasts? Spotlight is slow as mud for me usually on a Core Duo > MacBook Pro. > > - Cliff Quicksilver ftw and I have ?only? 1.5 GB of RAM on my Powerbook as well. But still Find in Project never seems to lose its speed after the initial run. Soryu. From edchen at mit.edu Sat May 26 22:12:31 2007 From: edchen at mit.edu (Edwin Chen) Date: Sat, 26 May 2007 18:12:31 -0400 Subject: [TxMt] "load in ghci" not working for haskell bundle In-Reply-To: References: <303dedc60705241919q69f0573bh2c89b8ab64d50569@mail.gmail.com> Message-ID: <303dedc60705261512n651d508dh4d2bab22663e7b53@mail.gmail.com> nope...i tried it on my old ibook also, and nothing happens there either On 5/26/07, Allan Odgaard wrote: > > On 25. May 2007, at 04:19, Edwin Chen wrote: > > > On my MacBook (running ghc-6.6 and OS X 10.4), when I select "Load in > > GHCi", nothing happens. > > Any clue as to what's wrong, or anyone else experience this problem? > > Nothing happens? I.e. a terminal window doesn't even show? > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kenneth.m.mcdonald at sbcglobal.net Sat May 26 22:26:12 2007 From: kenneth.m.mcdonald at sbcglobal.net (Kenneth McDonald) Date: Sat, 26 May 2007 17:26:12 -0500 Subject: [TxMt] multikey key bindings for textmate? Message-ID: <4658B404.1010103@sbcglobal.net> I may be asking a few overly simple questions as, due to work pressure, I only had time to really look at TextMate seriously just a bit before trial mode expired. 1) I know that (using the great Key Binding Editor facility), I can bind emacs-style multikey sequences to os x editing actions. Can I bind multikey sequences to TextMate macros or scripts? 2) When editing text files in bundles, is it possible to bring up the file directly in a normal textmate window, rather than in the 'bundle editor window'? Copying and pasting back and forth seems sorta pointless, for the most part. Thanks, maybe some more questions later, Ken P.S. what's the best solution for making the caps lock behave like ctrl--DoubleKey? It'd doesn't seem to work on my external keyboard (hangs the keyboard), but maybe because that's because I have Quicksilver installed. From komor at mac.com Sat May 26 22:41:16 2007 From: komor at mac.com (=?UTF-8?Q?Rafa=C5=82_Komorowski?=) Date: Sun, 27 May 2007 00:41:16 +0200 Subject: [TxMt] Performance Request: Faster "Find in Project" In-Reply-To: References: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> Message-ID: <953EF564-D08A-4A60-8F7E-4F070DAE1B67@mac.com> On 26/05/2007, at 22:01, Soryu wrote: >> Spoiled by Spotight? What system are you using? One of the new 8 >> core beasts? Spotlight is slow as mud for me usually on a Core >> Duo MacBook Pro. > > Quicksilver ftw and I have ?only? 1.5 GB of RAM on my Powerbook > as well. But still Find in Project never seems to lose its speed > after the initial run. I have a private theory, that Spotlight is slow on machines with Developer Tools installed, or any other enormous set of text/PDF files. I have both DevTools and lots of txt/doc/pdf files with my work, and Spotlight really slows down on my Powerbook. -- Rafa? Komorowski komor at mac.com GG: 4083718 From Soryu at serenity.de Sat May 26 23:21:41 2007 From: Soryu at serenity.de (Soryu) Date: Sun, 27 May 2007 01:21:41 +0200 Subject: [TxMt] multikey key bindings for textmate? In-Reply-To: <4658B404.1010103@sbcglobal.net> References: <4658B404.1010103@sbcglobal.net> Message-ID: <7F9A1761-38EA-4149-A070-73B8A74A0F00@serenity.de> On 27.05.2007, at 00:26, Kenneth McDonald wrote: > > 1) I know that (using the great Key Binding Editor facility), I can > bind emacs-style multikey sequences to os x editing actions. Can I > bind multikey sequences to TextMate macros or scripts? No, unfortunately not. > 2) When editing text files in bundles, is it possible to bring up > the file directly in a normal textmate window, rather than in the > 'bundle editor window'? Copying and pasting back and forth seems > sorta pointless, for the most part. You can use the ?Edit in TextMate? input manager [1]. Soryu. [1]: http://macromates.com/blog/archives/2006/04/27/textmate-tricks/ From jacobolus at gmail.com Sun May 27 01:18:30 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Sat, 26 May 2007 21:18:30 -0400 Subject: [TxMt] Re: multikey key bindings for textmate? In-Reply-To: <4658B404.1010103@sbcglobal.net> References: <4658B404.1010103@sbcglobal.net> Message-ID: Kenneth McDonald wrote: > 1) I know that (using the great Key Binding Editor facility), I can bind > emacs-style multikey sequences to os x editing actions. Can I bind > multikey sequences to TextMate macros or scripts? No, and for good reason. Bundle designers would go crazy. ;) > 2) When editing text files in bundles, is it possible to bring up the > file directly in a normal textmate window, rather than in the 'bundle > editor window'? Copying and pasting back and forth seems sorta > pointless, for the most part. Use Edit in TextMate input manager > P.S. what's the best solution for making the caps lock behave like > ctrl--DoubleKey? It'd doesn't seem to work on my external keyboard > (hangs the keyboard), but maybe because that's because I have > Quicksilver installed. Use the OS X Keyboard preferences From dana.kashubeck at riemer.com Sun May 27 01:24:54 2007 From: dana.kashubeck at riemer.com (Dana Kashubeck) Date: Sat, 26 May 2007 21:24:54 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> Message-ID: <4658DDE6.5060506@riemer.com> On 5/26/07 3:49 PM, Cliff Pruitt wrote: > Agree, although I still like just TextMate as opposed to Text ? Mate. > That said I could go for the logo & app name on the front and just a > small simple: > > ? > > on the back between the shoulder blades. That would be a cool touch. -- ------------------------------------- Dana Kashubeck Systems Manager Riemer Reporting Service Inc. http://www.riemer.com Phone: 440-835-2477 x. 125 Fax: 440-835-4594 ------------------------------------- -------------- next part -------------- A non-text attachment was scrubbed... Name: dana.kashubeck.vcf Type: text/x-vcard Size: 350 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3269 bytes Desc: S/MIME Cryptographic Signature URL: From chris at cjack.com Sun May 27 03:44:08 2007 From: chris at cjack.com (Chris Thomas) Date: Sat, 26 May 2007 23:44:08 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <7EECE5DD-CF82-404E-AA2E-532DCC033F38@neologica.com.au> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> Message-ID: <4CE326B3-C8A6-4B1E-BFBB-A2AF12E56808@cjack.com> On May 26, 2007, at 3:49 PM, Cliff Pruitt wrote: > Agree, although I still like just TextMate as opposed to Text ? > Mate. That said I could go for the logo & app name on the front and > just a small simple: > > ? > > on the back between the shoulder blades. Excellent idea, I like that one. Chris From kenneth.m.mcdonald at sbcglobal.net Sun May 27 05:52:57 2007 From: kenneth.m.mcdonald at sbcglobal.net (Kenneth McDonald) Date: Sun, 27 May 2007 00:52:57 -0500 Subject: [TxMt] quicksilver-style commands? Message-ID: <46591CB9.4070205@sbcglobal.net> Quicksilver has application activation very similar to TextMate's ability to move between files, i.e. press an activation key to activation, and then type a sequence of characters that appear (in that order) with the application name (not necessarily sequentially). Is it possible to activate TextMate commands (built-in and custom) in this way? Thanks, Ken From mummer at whitefalls.org Sun May 27 06:04:39 2007 From: mummer at whitefalls.org (Michael Sheets) Date: Sun, 27 May 2007 01:04:39 -0500 Subject: [TxMt] quicksilver-style commands? In-Reply-To: <46591CB9.4070205@sbcglobal.net> References: <46591CB9.4070205@sbcglobal.net> Message-ID: <72E61DEC-3B03-41C7-A3E6-9EEBF9F393E9@whitefalls.org> On May 27, 2007, at 12:52 AM, Kenneth McDonald wrote: > Quicksilver has application activation very similar to TextMate's > ability to move between files, i.e. press an activation key to > activation, and then type a sequence of characters that appear (in > that order) with the application name (not necessarily > sequentially). Is it possible to activate TextMate commands (built- > in and custom) in this way? The most hidden and unknown feature, control-apple-T From sussdorff at sussdorff.de Sun May 27 06:56:01 2007 From: sussdorff at sussdorff.de (Malte Sussdorff) Date: Sat, 26 May 2007 23:56:01 -0700 (PDT) Subject: [TxMt] Textmate for remote files Message-ID: <10822703.post@talk.nabble.com> Textmate is great to work with, if you are using it on your mac. The moment you have a file on a remote server though, things get tough, at least with MacFuse using SSH. Here are the most prominent problems: - It is impossible to import a directory. You have to import the files individually into the project. I don't know why this is the case, but sadly it seems nothing can be done about it. - Saving a file takes ages and locks up textmate. I have no problem if saving the file takes time, after all it is going across a network. What I don't understand though is why textmate has to lock itself up while it is saving a file. But maybe I am going the wrong way about it altogether for working with remote files? -- View this message in context: http://www.nabble.com/Textmate-for-remote-files-tf3822831.html#a10822703 Sent from the textmate users mailing list archive at Nabble.com. From henrik at nyh.se Sun May 27 07:50:51 2007 From: henrik at nyh.se (Henrik Nyh) Date: Sun, 27 May 2007 09:50:51 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> Message-ID: On 26/05/07, Cliff Pruitt wrote: > Agree, although I still like just TextMate as opposed to Text ? > Mate. That said I could go for the logo & app name on the front and > just a small simple: > > ? > > on the back between the shoulder blades. That could be nice. Very understated for sure. "wittySlogan?" would be funny, but less clean and simple ;) From henrik at nyh.se Sun May 27 08:09:10 2007 From: henrik at nyh.se (Henrik Nyh) Date: Sun, 27 May 2007 10:09:10 +0200 Subject: [TxMt] quicksilver-style commands? In-Reply-To: <72E61DEC-3B03-41C7-A3E6-9EEBF9F393E9@whitefalls.org> References: <46591CB9.4070205@sbcglobal.net> <72E61DEC-3B03-41C7-A3E6-9EEBF9F393E9@whitefalls.org> Message-ID: On 27/05/07, Michael Sheets wrote: > > On May 27, 2007, at 12:52 AM, Kenneth McDonald wrote: > > > Quicksilver has application activation very similar to TextMate's > > ability to move between files, i.e. press an activation key to > > activation, and then type a sequence of characters that appear (in > > that order) with the application name (not necessarily > > sequentially). Is it possible to activate TextMate commands (built- > > in and custom) in this way? > > The most hidden and unknown feature, control-apple-T Note that this only applies to bundle items. You can actually navigate TextMate's menus (not just the bundle items) like so: http://www.themerlinshow.com/ep/008-howto-quicksilver-application-menus From edouard.gilbert at eleves.bretagne.ens-cachan.fr Sun May 27 09:52:54 2007 From: edouard.gilbert at eleves.bretagne.ens-cachan.fr (=?ISO-8859-1?Q?=C9douard_Gilbert?=) Date: Sun, 27 May 2007 11:52:54 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> Message-ID: I was thinking about text? That looks a bit like a ?text, but better? (without BB :P), just like C++ is C, but incremented. Of course, it's a bit visually unbalanced. But still better in my mind than ?textmate?, plain and simple. I'd say : ?textmate? pros : - the T-shirt has the product name on it, so every one has at least a slight idea of what it is about - visually balanced (I like the bold text/not bold mate) ?textmate? cons : - it probably won't trigger anything other people (even geeks). No surprise, no question, no nothing. Actually, I find it little boring. ?text?? pros : - shows a feature of our favorite editor - can catch the geek (well, isn't a vast majority of the mate users geeks?) attention and curiosity. Every single one must know about tab completion. ?text?? cons : - other people probably won't be attracted, and it doesn't contain the app name, thus making it hard to discover TM - visually unbalanced ---- Well, I wouldn't wear the first one, but it seems to be popular, so I'm afraid I'l have to wear something else. Still, for the color, I'd prefer a entirely purple one. While I'm at it, is it possible to get a drawing as complex as the TM icon on a T-shirt? At least, without making it awfully expensive? Perhaps we should mind the possibility of purple (not black) and white or at least avoid gradation. ?douard Le 27 mai 07 ? 09:50, Henrik Nyh a ?crit : > On 26/05/07, Cliff Pruitt wrote: >> Agree, although I still like just TextMate as opposed to Text ? >> Mate. That said I could go for the logo & app name on the front and >> just a small simple: >> >> ? >> >> on the back between the shoulder blades. > > That could be nice. Very understated for sure. "wittySlogan?" > would be > funny, but less clean and simple ;) > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From andre at bonhote.org Sun May 27 10:29:46 2007 From: andre at bonhote.org (=?ISO-8859-1?Q?Bonh=F4te_Andr=E9?=) Date: Sun, 27 May 2007 12:29:46 +0200 Subject: [TxMt] quicksilver-style commands? In-Reply-To: <46591CB9.4070205@sbcglobal.net> References: <46591CB9.4070205@sbcglobal.net> Message-ID: Hi Kenneth On 27.05.2007, at 07:52, Kenneth McDonald wrote: > to TextMate's ability to move between files Could you tell me how THAT works? Never seen/used this feature. TIA Andr? From daniel.sonnerstedt at gmail.com Sun May 27 10:40:26 2007 From: daniel.sonnerstedt at gmail.com (=?ISO-8859-1?Q?Daniel_S=F6nnerstedt?=) Date: Sun, 27 May 2007 12:40:26 +0200 Subject: [TxMt] LaTeX - Insert Label Based On Current Word Message-ID: LaTeX - Insert Label Based On Current Word I didn't get this feature to work on my project. I experimented a bit and it seemed like the script was having troubles dealing with \include{"filename.tex"} but not with \include{filename.tex} I use this since I have filenames with spaces. So I skimmed through the code and added a small fix in LaTeXUtils.rb: def find_file(filename, extension, relative) filename.gsub!(/\.#{extension}$/,"") [...] end became def find_file(filename, extension, relative) filename.gsub!(/\"/,"") # Added this to strip ":s filename.gsub!(/\.#{extension}$/,"") [...] end And now it works! Now, I'm not a ruby programmer so there's is probably some better way to solve this. But I think that this fix should benifit others; perhaps implemented in a more proper way though. Thanks for another great LaTeX-bundle-feature. Regards, Daniel S?nnerstedt From skiadas at hanover.edu Sun May 27 11:19:33 2007 From: skiadas at hanover.edu (Charilaos Skiadas) Date: Sun, 27 May 2007 07:19:33 -0400 Subject: [TxMt] LaTeX - Insert Label Based On Current Word In-Reply-To: References: Message-ID: <701A29F6-E718-4917-9313-D73384283D37@hanover.edu> On May 27, 2007, at 6:40 AM, Daniel S?nnerstedt wrote: > LaTeX - Insert Label Based On Current Word > > I didn't get this feature to work on my project. I experimented a bit > and it seemed like the script was having troubles dealing with > > \include{"filename.tex"} > I actually have tried using filenames this way, and I find that LaTeX doesn't process the corresponding file, unless you remove the .tex part in the above line. Is there some package you need to use to make this work with the .tex part? I'll commit your patch. > but not with > > \include{filename.tex} > > I use this since I have filenames with spaces. So I skimmed through > the code and added a small fix in LaTeXUtils.rb: > > def find_file(filename, extension, relative) > filename.gsub!(/\.#{extension}$/,"") > [...] > end > > became > > def find_file(filename, extension, relative) > filename.gsub!(/\"/,"") # Added this > to strip ":s > filename.gsub!(/\.#{extension}$/,"") > [...] > end > > And now it works! > > Now, I'm not a ruby programmer so there's is probably some better way > to solve this. But I think that this fix should benifit others; > perhaps implemented in a more proper way though. > > Thanks for another great LaTeX-bundle-feature. > > Regards, > Daniel S?nnerstedt Haris Skiadas Department of Mathematics and Computer Science Hanover College From henrik at nyh.se Sun May 27 12:02:08 2007 From: henrik at nyh.se (Henrik Nyh) Date: Sun, 27 May 2007 14:02:08 +0200 Subject: [TxMt] quicksilver-style commands? In-Reply-To: References: <46591CB9.4070205@sbcglobal.net> Message-ID: On 27/05/07, Bonh?te Andr? wrote: > Hi Kenneth > > On 27.05.2007, at 07:52, Kenneth McDonald wrote: > > > to TextMate's ability to move between files > > Could you tell me how THAT works? Never seen/used this feature. Probably cmd+T (in a project). From oblivious at subtlegradient.com Sun May 27 12:43:04 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Sun, 27 May 2007 08:43:04 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> Message-ID: <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> On May 27, 2007, at 5:52 AM, ?douard Gilbert wrote: > Well, I wouldn't wear the first one, but it seems to be popular, so > I'm afraid I'l have to wear something else. Still, for the color, > I'd prefer a entirely purple one. While I'm at it, is it possible > to get a drawing as complex as the TM icon on a T-shirt? At least, > without making it awfully expensive? Perhaps we should mind the > possibility of purple (not black) and white or at least avoid > gradation. > > ?douard A Purple shirt with a gear and pen would look quite nice. The icon is purple with a white gear and black or white text (depending on the background). The pen is black and white The icon could be converted to a 2 color vector object and have the third color come from the color of the shirt. It's more expensive to print on black shirts. It'd be possible to keep some gradation in the vector object with a halftone pattern. It might look better to do a flat sharp object instead of gradating it. Does anyone have a vector version of the icon? Maybe the original photoshop file or anything? That'd make the conversion to a vector object a lot easier. So we can do either: ? Black shirt with purple and white ? Purple shirt with white and black So print in 1 color you'd have to do a purple shirt with white gear, pen & text. That could look really nice if the purple is dark enough. Personally, I'd like both the black and purple shirts. But if I had to choose only one, I'd probly have to choose the purple one. thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From dan at tangledhelix.com Sun May 27 13:48:29 2007 From: dan at tangledhelix.com (Dan Lowe) Date: Sun, 27 May 2007 09:48:29 -0400 Subject: [TxMt] Textmate for remote files In-Reply-To: <10822703.post@talk.nabble.com> References: <10822703.post@talk.nabble.com> Message-ID: On May 27, 2007, at 2:56 AM, Malte Sussdorff wrote: > > - Saving a file takes ages and locks up textmate. I have no problem if > saving the file takes time, after all it is going across a network. > What I > don't understand though is why textmate has to lock itself up while > it is > saving a file. > > But maybe I am going the wrong way about it altogether for working > with > remote files? I've found MacFuse / sshfs to be unstable. I've tried several versions and with all of them, I run into something that makes me stop using it for a while. Usually it is something unrecoverable, e.g. my UI locks up and I have no way to escape except to do a forced power-off. As such I've gone back to using Cyberduck with TextMate as the external editor. It's not as nice, but I don't get a spinning beach ball for 10 seconds every time I save a file, and more importantly I don't get unrecoverable system hang-ups. I end up trying sshfs now and again as new versions come out, though, because overall I love sshfs. It's just not ready for prime time yet, IMO. -dan From daniel.sonnerstedt at gmail.com Sun May 27 13:55:30 2007 From: daniel.sonnerstedt at gmail.com (=?ISO-8859-1?Q?Daniel_S=F6nnerstedt?=) Date: Sun, 27 May 2007 15:55:30 +0200 Subject: [TxMt] LaTeX - Insert Label Based On Current Word Message-ID: Haris Skiadas wrote: > > On May 27, 2007, at 6:40 AM, Daniel S?nnerstedt wrote: > > LaTeX - Insert Label Based On Current Word > > > > I didn't get this feature to work on my project. I experimented a bit > > and it seemed like the script was having troubles dealing with > > > > \include{"filename.tex"} > > > I actually have tried using filenames this way, and I find that LaTeX > doesn't process the corresponding file, unless you remove the .tex > part in the above line. Is there some package you need to use to make > this work with the .tex part? You're right. I wasn't thinking when I wrote the example code. Of course it actually should say \include{"filename"} > I'll commit your patch. > Great. I bought TextMate yesterday after trying it out for a few weeks, and I'm already contributing. This is fun. > > but not with > > > > \include{filename.tex} > > > > I use this since I have filenames with spaces. So I skimmed through > > the code and added a small fix in LaTeXUtils.rb: > > > > def find_file(filename, extension, relative) > > filename.gsub!(/\.#{extension}$/,"") > > [...] > > end > > > > became > > > > def find_file(filename, extension, relative) > > filename.gsub!(/\"/,"") # Added this > > to strip ":s > > filename.gsub!(/\.#{extension}$/,"") > > [...] > > end > > > > And now it works! > > > > Now, I'm not a ruby programmer so there's is probably some better way > > to solve this. But I think that this fix should benifit others; > > perhaps implemented in a more proper way though. > > > > Thanks for another great LaTeX-bundle-feature. > > > > Regards, > > Daniel S?nnerstedt > > Haris Skiadas > Department of Mathematics and Computer Science Daniel S?nnerstedt From dsnyder at txstate.edu Sun May 27 14:12:11 2007 From: dsnyder at txstate.edu (David F. Snyder) Date: Sun, 27 May 2007 09:12:11 -0500 Subject: [TxMt] "load in ghci" not working for haskell bundle In-Reply-To: <303dedc60705261512n651d508dh4d2bab22663e7b53@mail.gmail.com> Message-ID: I?ve the same problem. No terminal window. I just checked the console log (in /Library/Logs) and there is a repeated NPN_Invoke toString Best wishes David On 5/26/07 5:12 PM, "Edwin Chen" wrote: > nope...i tried it on my old ibook also, and nothing happens there either > > On 5/26/07, Allan Odgaard > wrote: >> On 25. May 2007, at 04:19, Edwin Chen wrote: >> >>> > On my MacBook (running ghc-6.6 and OS X 10.4), when I select "Load in >>> > GHCi", nothing happens. >>> > Any clue as to what's wrong, or anyone else experience this problem? >> >> Nothing happens? I.e. a terminal window doesn't even show? >> >> -------------- next part -------------- An HTML attachment was scrubbed... URL: From gerti-textmate at bitart.com Sun May 27 14:54:38 2007 From: gerti-textmate at bitart.com (Gerd Knops) Date: Sun, 27 May 2007 09:54:38 -0500 Subject: [TxMt] Performance Request: Faster "Find in Project" In-Reply-To: <953EF564-D08A-4A60-8F7E-4F070DAE1B67@mac.com> References: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> <953EF564-D08A-4A60-8F7E-4F070DAE1B67@mac.com> Message-ID: On May 26, 2007, at 5:41 PM, Rafa? Komorowski wrote: > On 26/05/2007, at 22:01, Soryu wrote: > >>> Spoiled by Spotight? What system are you using? One of the new >>> 8 core beasts? Spotlight is slow as mud for me usually on a Core >>> Duo MacBook Pro. >> >> Quicksilver ftw and I have ?only? 1.5 GB of RAM on my Powerbook >> as well. But still Find in Project never seems to lose its speed >> after the initial run. > > I have a private theory, that Spotlight is slow on machines with > Developer Tools installed, or any other enormous set of text/PDF > files. I have both DevTools and lots of txt/doc/pdf files with my > work, and Spotlight really slows down on my Powerbook. It is certainly next to unusable for anyone with a network-mounted home directory... From pierodancona at gmail.com Sun May 27 17:47:59 2007 From: pierodancona at gmail.com (Piero D'Ancona) Date: Sun, 27 May 2007 17:47:59 +0000 (UTC) Subject: [TxMt] Re: Performance Request: Faster "Find in Project" References: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> <953EF564-D08A-4A60-8F7E-4F070DAE1B67@mac.com> Message-ID: Rafa? Komorowski writes: > > On 26/05/2007, at 22:01, Soryu wrote: > > >> Spoiled by Spotight? What system are you using? One of the new 8 > >> core beasts? Spotlight is slow as mud for me usually on a Core > >> Duo MacBook Pro. > > > > Quicksilver ftw and I have ?only? 1.5 GB of RAM on my Powerbook > > as well. But still Find in Project never seems to lose its speed > > after the initial run. > > I have a private theory, that Spotlight is slow on machines with > Developer Tools installed, or any other enormous set of text/PDF > files. I have both DevTools and lots of txt/doc/pdf files with my > work, and Spotlight really slows down on my Powerbook. > Personal experience: DevTools + 12G of papers (mostly pdf) on a Powerbook G4 1.5 with 512M: Spotlight is slow, close to painfully. Quicksilver much better (slowish) DevTools + 18G of papers (mostly pdf) on a MacBook pro 2.33 with 3G (yay!): Spotlight is as fast as Quicksilver. First time you call Spotlight can be a bit slow to list results (3-5 sec), from the second time on it's very fast, like in Jobs' keynotes. I use Spotlight as an app launcher, would you believe it? Piero From newsgr at tobiasjung.net Sun May 27 18:04:32 2007 From: newsgr at tobiasjung.net (Tobias Jung) Date: Sun, 27 May 2007 20:04:32 +0200 Subject: [TxMt] HTML syntax coloring Message-ID: Hi, TextMate's HTML syntax coloring seems to be based on rules while other coloring schemes (e.g. CSS, PHP) are based on keywords. Here's an example with syntax errors:

foo bar

So, TexMate will display the 'broder' NOT colored (because it's a syntax error) which shows me that TextMate uses keywords here. But it WILL display the 'stlye' colored (using the "Markup tag attribute" color) because it is placed where a attribute has to be... but of course, it's no valid HTML attribute. So, my question is: Is there any way to get TextMate to use a keyword list for HTML coloring as well - so it will use the default text color for 'stlye' making me realize that it's a typo? Kind regards, Tobias Jung From throw-away-1 at macromates.com Sun May 27 18:54:07 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sun, 27 May 2007 20:54:07 +0200 Subject: [TxMt] "load in ghci" not working for haskell bundle In-Reply-To: <303dedc60705261512n651d508dh4d2bab22663e7b53@mail.gmail.com> References: <303dedc60705241919q69f0573bh2c89b8ab64d50569@mail.gmail.com> <303dedc60705261512n651d508dh4d2bab22663e7b53@mail.gmail.com> Message-ID: On 27. May 2007, at 00:12, Edwin Chen wrote: > nope...i tried it on my old ibook also, and nothing happens there > either Seems the app name to tell (in the AppleScript) was ?Term? instead of ?Terminal?. I updated the command. From throw-away-1 at macromates.com Sun May 27 18:56:33 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sun, 27 May 2007 20:56:33 +0200 Subject: [TxMt] HTML syntax coloring In-Reply-To: References: Message-ID: <29A625EF-5B06-46AE-AD55-A273634DB1EF@macromates.com> On 27. May 2007, at 20:04, Tobias Jung wrote: > [...] > So, my question is: Is there any way to get TextMate to use a > keyword list for HTML coloring as well - so it will use the default > text color for 'stlye' making me realize that it's a typo? If you?re willing to put some effort behind it, you can make a pretty strict HTML parser. See http://macromates.com/textmate/manual/language_grammars From throw-away-1 at macromates.com Sun May 27 19:05:17 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sun, 27 May 2007 21:05:17 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> Message-ID: On 27. May 2007, at 14:43, Thomas Aylott (subtleGradient) wrote: > [...] > Does anyone have a vector version of the icon? Maybe the original > photoshop file or anything? > That'd make the conversion to a vector object a lot easier. I have a 3-4 color version of the icon (from Wolfgang) which he did for the last shirts. An alternative is to only use the cog, Jacob made this mockup which I like (the composition, the slogan is not my favorite ;) ): http:// pastie.textmate.org/paste/asset/65002/Picture_21.png I also really like the tab trigger idea, and for slogans, the ?beyond words? is my favorite. From throw-away-1 at macromates.com Sun May 27 19:14:28 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sun, 27 May 2007 21:14:28 +0200 Subject: [TxMt] Release notes and diff - how to distinguish .txt files? In-Reply-To: <6C12F0AD-2D40-4953-B700-39D677627D84@mac.com> References: <51A30B8E-DBA0-40BF-A8FD-8EDF4A14E62D@mac.com> <6C5C8553-5578-48D4-B605-012AB29A9842@macromates.com> <6C12F0AD-2D40-4953-B700-39D677627D84@mac.com> Message-ID: <4142AF9E-C2A5-4FE9-BB7E-704CD00DB533@macromates.com> On 26. May 2007, at 21:32, Rafa? Komorowski wrote: >> I assume this is when invoking diff from the commit or status >> window? The rest of the diff actions should AFAIK be fine. But >> those two should have the used extension changed. > It seems you're right. When I select: Bundle ? Subversion ? > Diff ? Diff with Working Copy then I get "untitled" text-window > properly set to "Diff" (and properly colored, of course). > > I tried again to look into the guts of Subversion.tmbundle, to find > the place where the temporary files are generated, but I can't find > this. Too weak textmater I am... Both the commit window and the status window use ?mate? to send text to TextMate, and does so by piping the text to mate?s standard input. Presently this results in a temporary file with a ?.txt? extension -- so to make a fix now, you?d have to change these two commands to create their own temporary file with a ?.diff? extension. The current temporary file though is just an implementation detail I?d like to get rid of in the future. From chuck.esterbrook at gmail.com Sun May 27 19:28:07 2007 From: chuck.esterbrook at gmail.com (Chuck Esterbrook) Date: Sun, 27 May 2007 12:28:07 -0700 Subject: [TxMt] Re: Performance Request: Faster "Find in Project" In-Reply-To: References: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> <953EF564-D08A-4A60-8F7E-4F070DAE1B67@mac.com> Message-ID: <94cdd26f0705271228r362ed2b8v1513cda30e640c78@mail.gmail.com> On 5/27/07, Piero D'Ancona wrote: > Personal experience: > > DevTools + 12G of papers (mostly pdf) on a Powerbook G4 1.5 with 512M: > Spotlight is slow, close to painfully. Quicksilver much better (slowish) > > DevTools + 18G of papers (mostly pdf) on a MacBook pro 2.33 with 3G (yay!): > Spotlight is as fast as Quicksilver. First time you call Spotlight can be a > bit slow to list results (3-5 sec), from the second time on it's > very fast, like in Jobs' keynotes. I use Spotlight as an app launcher, > would you believe it? > > Piero Yep, I do the same thing (Spotlight as an app launcher). Yes, TextMate gets faster after the first time as does Spotlight. But Spotlight's first time is faster than TextMate's, and likewise, Spotlight's subsequent times are faster than TextMate's. Also, I think Spotlight may be displaying results as they come in. TextMate seems to wait until it has completed the search. Improving that could make a difference. Indexing would too. (The subsequent speedups are likely from operating system level file caching as someone pointed out.) For reference, I have Core 2 Duo MacBook Pro with 3 GB. These improvements would probably help slower machines with less RAM even more. -Chuck From flo at andersground.net Sun May 27 19:45:29 2007 From: flo at andersground.net (Florian Gilcher) Date: Sun, 27 May 2007 21:45:29 +0200 Subject: [TxMt] Re: Performance Request: Faster "Find in Project" In-Reply-To: <94cdd26f0705271228r362ed2b8v1513cda30e640c78@mail.gmail.com> References: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> <953EF564-D08A-4A60-8F7E-4F070DAE1B67@mac.com> <94cdd26f0705271228r362ed2b8v1513cda30e640c78@mail.gmail.com> Message-ID: <4659DFD9.6050000@andersground.net> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I have no problems with the "Find in Project"-performance, even on network drives (as long as they are in the same network). I know it is slow when searching the first time, so i can expect that an go get a cup of tea. My biggest complaint is that there is still no fast possibility to narrow the search by sub-folders. (I know my controllers are not in vendor...) This is a point where I would like to see some improvement, as constantly creating temp-projects for search reasons is no fun at all. (Machine is a MacBook Pro with 2.0 Ghz and 2GB RAM... first edition) Florian > Yep, I do the same thing (Spotlight as an app launcher). > > Yes, TextMate gets faster after the first time as does Spotlight. But > Spotlight's first time is faster than TextMate's, and likewise, > Spotlight's subsequent times are faster than TextMate's. > > Also, I think Spotlight may be displaying results as they come in. > TextMate seems to wait until it has completed the search. Improving > that could make a difference. > > Indexing would too. (The subsequent speedups are likely from operating > system level file caching as someone pointed out.) > > For reference, I have Core 2 Duo MacBook Pro with 3 GB. These > improvements would probably help slower machines with less RAM even > more. > > -Chuck > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFGWd/X8RlGMqQ8m7oRAtPSAJ48AT4bN4izfhAC/nAbeTe9BGhdsACfUTCY ew7fzC8YiSH/NarivmwpBzU= =Tn6b -----END PGP SIGNATURE----- From yqiang at gmail.com Sun May 27 19:55:19 2007 From: yqiang at gmail.com (Yi Qiang) Date: Sun, 27 May 2007 12:55:19 -0700 Subject: [TxMt] Re: Performance Request: Faster "Find in Project" In-Reply-To: <4659DFD9.6050000@andersground.net> References: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> <953EF564-D08A-4A60-8F7E-4F070DAE1B67@mac.com> <94cdd26f0705271228r362ed2b8v1513cda30e640c78@mail.gmail.com> <4659DFD9.6050000@andersground.net> Message-ID: <580C3DC1-7E49-49FA-968D-250D1E8EDD54@gmail.com> On May 27, 2007, at 12:45 PM, Florian Gilcher wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > I have no problems with the "Find in Project"-performance, even on > network drives (as long as they are in the same network). I know it is > slow when searching the first time, so i can expect that an go get > a cup > of tea. > > My biggest complaint is that there is still no fast possibility to > narrow the search by sub-folders. (I know my controllers are not in > vendor...) This is a point where I would like to see some improvement, > as constantly creating temp-projects for search reasons is no fun > at all. > I think this feature has been requested several times, but I am not sure whether or not it is planned for TM 2.0. Can anyone comment on that? > (Machine is a MacBook Pro with 2.0 Ghz and 2GB RAM... first edition) > > Florian > >> Yep, I do the same thing (Spotlight as an app launcher). >> >> Yes, TextMate gets faster after the first time as does Spotlight. But >> Spotlight's first time is faster than TextMate's, and likewise, >> Spotlight's subsequent times are faster than TextMate's. >> >> Also, I think Spotlight may be displaying results as they come in. >> TextMate seems to wait until it has completed the search. Improving >> that could make a difference. >> >> Indexing would too. (The subsequent speedups are likely from >> operating >> system level file caching as someone pointed out.) >> >> For reference, I have Core 2 Duo MacBook Pro with 3 GB. These >> improvements would probably help slower machines with less RAM even >> more. >> >> -Chuck >> >> _____________________________________________________________________ >> _ >> For new threads USE THIS: textmate at lists.macromates.com >> (threading gets destroyed and the universe will collapse if you >> don't) >> http://lists.macromates.com/mailman/listinfo/textmate >> > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.3 (Darwin) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org > > iD8DBQFGWd/X8RlGMqQ8m7oRAtPSAJ48AT4bN4izfhAC/nAbeTe9BGhdsACfUTCY > ew7fzC8YiSH/NarivmwpBzU= > =Tn6b > -----END PGP SIGNATURE----- > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate Cheers, Yi -- http://www.yiqiang.org From newsgr at tobiasjung.net Sun May 27 19:57:50 2007 From: newsgr at tobiasjung.net (Tobias Jung) Date: Sun, 27 May 2007 21:57:50 +0200 Subject: [TxMt] HTML syntax coloring In-Reply-To: <29A625EF-5B06-46AE-AD55-A273634DB1EF@macromates.com> References: <29A625EF-5B06-46AE-AD55-A273634DB1EF@macromates.com> Message-ID: At 20:56 Uhr +0200 27.05.2007, Allan Odgaard wrote: >> [...] >> So, my question is: Is there any way to get TextMate to use a >> keyword list for HTML coloring as well - so it will use the >> default text color for 'stlye' making me realize that it's a typo? > > If you're willing to put some effort behind it, you can make a > pretty strict HTML parser. > > See http://macromates.com/textmate/manual/language_grammars I don't mind the effort but I'm afraid that I currently don't have the time to dig myself into that. Thank you anyway, I'll keep that in mind and maybe someday... Kind regards, Tobias Jung From throw-away-1 at macromates.com Sun May 27 20:03:56 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Sun, 27 May 2007 22:03:56 +0200 Subject: [TxMt] Re: Performance Request: Faster "Find in Project" In-Reply-To: <580C3DC1-7E49-49FA-968D-250D1E8EDD54@gmail.com> References: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> <953EF564-D08A-4A60-8F7E-4F070DAE1B67@mac.com> <94cdd26f0705271228r362ed2b8v1513cda30e640c78@mail.gmail.com> <4659DFD9.6050000@andersground.net> <580C3DC1-7E49-49FA-968D-250D1E8EDD54@gmail.com> Message-ID: <54018318-D20C-49F4-ADF8-4AE7058122AC@macromates.com> On 27. May 2007, at 21:55, Yi Qiang wrote: > [...] > I think this feature has been requested several times, but I am not > sure whether or not it is planned for TM 2.0. Can anyone comment on > that? I believe I have gone on record at least a dozen times saying 2.0 has an improved find in project (folder)? From erichsu at math.sfsu.edu Sun May 27 20:46:54 2007 From: erichsu at math.sfsu.edu (Eric Hsu) Date: Sun, 27 May 2007 13:46:54 -0700 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> Message-ID: <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> > I also really like the tab trigger idea, and for slogans, the > ?beyond words? is my favorite. I'll cast a vote for "beyond words". Classy and to the point. - Eric -- Eric Hsu, Associate Professor of Mathematics San Francisco State University http://math.sfsu.edu/hsu erichsu at math.sfsu.edu From dsnyder at txstate.edu Sun May 27 21:11:28 2007 From: dsnyder at txstate.edu (David F. Snyder) Date: Sun, 27 May 2007 16:11:28 -0500 Subject: [TxMt] "load in ghci" not working for haskell bundle In-Reply-To: <303dedc60705261512n651d508dh4d2bab22663e7b53@mail.gmail.com> Message-ID: I ran 2+2 in Textmate from a haskell scope, modifying the ?Run in GHCi? command in Bundle editor to pipe the result to the html view and got (if it helps at all)... 22:23: syntax error: No user interaction allowed. (-1713) On 5/26/07 5:12 PM, "Edwin Chen" wrote: > nope...i tried it on my old ibook also, and nothing happens there either > > On 5/26/07, Allan Odgaard > wrote: >> On 25. May 2007, at 04:19, Edwin Chen wrote: >> >>> > On my MacBook (running ghc-6.6 and OS X 10.4), when I select "Load in >>> > GHCi", nothing happens. >>> > Any clue as to what's wrong, or anyone else experience this problem? >> >> Nothing happens? I.e. a terminal window doesn't even show? >> >> >> ______________________________________________________________________ >> For new threads USE THIS: textmate at lists.macromates.com >> (threading gets destroyed and the universe will collapse if you don't) >> http://lists.macromates.com/mailman/listinfo/textmate >> > Best wishes ---- David F. Snyder, Ph. D. Associate Professor of Mathematics Department of Mathematics Texas State University 601 University Drive San Marcos, TX 78666 (512)245-3419 My office (512)245-2551 Department Office (512)245-3425 fax dsnyder at txstate.edu -------------- next part -------------- An HTML attachment was scrubbed... URL: From ledunn at mac.com Sun May 27 21:19:51 2007 From: ledunn at mac.com (Linda Dunn) Date: Sun, 27 May 2007 17:19:51 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> Message-ID: On May 27, 2007, at 4:46 PM, Eric Hsu wrote: >> I also really like the tab trigger idea, and for slogans, the >> ?beyond words? is my favorite. >> > > I'll cast a vote for "beyond words". Classy and to the point. > I agree, of all the ones that have been kicked around, "beyond words" is by far my favorite. BTW, I hope there will be a consideration of women-sized t-shirts as well as the generic unisex/guy ones. :) ld Linda Dunn, M.A. Purplegenie Design {web+graphics} ledunn at mac.com 252.422.9393 From harrison at Math.Berkeley.EDU Sun May 27 21:57:50 2007 From: harrison at Math.Berkeley.EDU (Jenny Harrison) Date: Sun, 27 May 2007 14:57:50 -0700 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> Message-ID: <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> > >>> I also really like the tab trigger idea, and for slogans, the >>> ?beyond words? is my favorite. >>> >> How about the tab trigger idea on the front, below the gears, and "beyond words" on the back? I second the request for some female shirts. Are there just two of us out here? Jenny ____________________________________ Jenny Harrison Professor of Mathematics University of California, Berkeley 851 Evans Hall Berkeley CA 94720-3270 Tele: 510-642-9666 Fax: 510-642-5270 Email: harrison at math.berkeley.edu Web: http://math.berkeley.edu/~harrison/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From contact at helmutgranda.com Sun May 27 22:09:20 2007 From: contact at helmutgranda.com (Helmut Granda) Date: Sun, 27 May 2007 15:09:20 -0700 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> Message-ID: "beyond text" On 5/27/07, Linda Dunn wrote: > > On May 27, 2007, at 4:46 PM, Eric Hsu wrote: > > > >> I also really like the tab trigger idea, and for slogans, the > >> "beyond words" is my favorite. > >> > > > > I'll cast a vote for "beyond words". Classy and to the point. > > > > I agree, of all the ones that have been kicked around, "beyond words" > is by far my favorite. > > BTW, I hope there will be a consideration of women-sized t-shirts as > well as the generic unisex/guy ones. :) > > ld > > > Linda Dunn, M.A. > Purplegenie Design {web+graphics} > ledunn at mac.com > 252.422.9393 > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dsnyder at txstate.edu Sun May 27 22:11:20 2007 From: dsnyder at txstate.edu (David F. Snyder) Date: Sun, 27 May 2007 17:11:20 -0500 Subject: [TxMt] "load in ghci" not working for haskell bundle In-Reply-To: <303dedc60705261512n651d508dh4d2bab22663e7b53@mail.gmail.com> Message-ID: OK, I found out that my TM_SUPPORT_PATH variable was being set to a local support folder that I don?t recall the reason for creating (it was way before last Fall?s major upgrade), but when I deleted the TextMate folder in ~/Library/Application Support/ it all began to work again. I had to reinstall two bundles that got installed in the miscreant directory, nothing horrendous. Now the terminal window opens (I had to downgrade the level of protection offered by KeyChain, but no biggie either) and the programs load. A couple other mysterious behaviors disappeared as well. I found support in the mailing list archive: http://search.gmane.org/?query=TM_SUPPORT_PATH+is+incorrect%3F%3F+&author=&g roup=gmane.editors.textmate.general&sort=relevance&DEFAULTOP=and&xP=tm%09sup port%09variable&xFILTERS=Geditors.textmate.general---A All hail TextMate! Best wishes David On 5/26/07 5:12 PM, "Edwin Chen" wrote: > nope...i tried it on my old ibook also, and nothing happens there either > > On 5/26/07, Allan Odgaard > wrote: >> On 25. May 2007, at 04:19, Edwin Chen wrote: >> >>> > On my MacBook (running ghc-6.6 and OS X 10.4), when I select "Load in >>> > GHCi", nothing happens. >>> > Any clue as to what's wrong, or anyone else experience this problem? >> >> Nothing happens? I.e. a terminal window doesn't even show? >> -------------- next part -------------- An HTML attachment was scrubbed... URL: From james at grayproductions.net Sun May 27 22:26:16 2007 From: james at grayproductions.net (James Edward Gray II) Date: Sun, 27 May 2007 17:26:16 -0500 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> Message-ID: On May 27, 2007, at 4:57 PM, Jenny Harrison wrote: > >> >>>> I also really like the tab trigger idea, and for slogans, the >>>> ?beyond words? is my favorite. >>>> >>> > > How about the tab trigger idea on the front, below the gears, and > "beyond words" on the back? I'm a fan of the tab trigger idea myself. I like it better than the "beyond words" slogan because I feel like it's more TextMate-ish. James Edward Gray II From jasper at logt.nu Sun May 27 22:31:18 2007 From: jasper at logt.nu (Jasper van der Meulen) Date: Mon, 28 May 2007 00:31:18 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> Message-ID: "The evolution of text" (maybe on the front) "Text ? Mate" (on the back)? Regards J. On May 28, 2007, at 12:26 AM, James Edward Gray II wrote: > On May 27, 2007, at 4:57 PM, Jenny Harrison wrote: > >> >>> >>>>> I also really like the tab trigger idea, and for slogans, the >>>>> ?beyond words? is my favorite. >>>>> >>>> >> >> How about the tab trigger idea on the front, below the gears, and >> "beyond words" on the back? > > I'm a fan of the tab trigger idea myself. I like it better than > the "beyond words" slogan because I feel like it's more TextMate-ish. > > James Edward Gray II > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate -------------- next part -------------- An HTML attachment was scrubbed... URL: From kenneth.m.mcdonald at sbcglobal.net Mon May 28 04:39:01 2007 From: kenneth.m.mcdonald at sbcglobal.net (Kenneth McDonald) Date: Sun, 27 May 2007 23:39:01 -0500 Subject: [TxMt] Fastest way to get license--credit card or PayPal? Message-ID: <465A5CE5.3060205@sbcglobal.net> Any guesses? Both are options when purchasing, apparently. Thanks, Ken From throw-away-1 at macromates.com Mon May 28 05:41:17 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Mon, 28 May 2007 07:41:17 +0200 Subject: [TxMt] New DRYML bundle In-Reply-To: <31E9B3B5-DE78-43BE-82FC-403CF5AD1201@web.de> References: <31E9B3B5-DE78-43BE-82FC-403CF5AD1201@web.de> Message-ID: <2877CCE8-EBB9-4D01-846D-968ACFF74E72@macromates.com> On 24. May 2007, at 23:10, Niko Dittmann wrote: > [...] What would be the procedure to get the bundle into TMs bundle > repository? The process is: 1. read 2. email the bundle to ?tm-bundles (at) macromates (dot) com? and a preferred svn user name, then I?ll add it to 3) me and others have a chance to submit feedback (to the textmate- dev list) 4) when the bundle is in conformance with established conventions, I?ll move it to From throw-away-1 at macromates.com Mon May 28 05:41:50 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Mon, 28 May 2007 07:41:50 +0200 Subject: [TxMt] Fastest way to get license--credit card or PayPal? In-Reply-To: <465A5CE5.3060205@sbcglobal.net> References: <465A5CE5.3060205@sbcglobal.net> Message-ID: <7F8445B8-AF2F-4E89-949C-836A33C51561@macromates.com> On 28. May 2007, at 06:39, Kenneth McDonald wrote: > Any guesses? Both are options when purchasing, apparently. All but eChecks have instant clearing. From oliver at ollieman.net Mon May 28 05:51:48 2007 From: oliver at ollieman.net (Oliver Taylor) Date: Sun, 27 May 2007 22:51:48 -0700 Subject: [TxMt] Web Searches Bundle Message-ID: I must have missed the memo, where did the web searches bundle go? I miss the "search google" and "shorten amazon url" commands. --oliver From throw-away-1 at macromates.com Mon May 28 06:06:23 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Mon, 28 May 2007 08:06:23 +0200 Subject: [TxMt] Web Searches Bundle In-Reply-To: References: Message-ID: <07506182-4007-47A1-B732-A0D2395630AB@macromates.com> On 28. May 2007, at 07:51, Oliver Taylor wrote: > I must have missed the memo, where did the web searches bundle go? It was sort of replaced by the Hyperlink Helper bundle (I say sort of, because they are functionally related, but not equivalent). > I miss the "search google" and "shorten amazon url" commands. As for ?Shorten Amazon Link?, if you have the link on the clipboard, press ??L to insert a link using a shortened form of the URL (if there is a selection then this will be used as the link text) -- this works for most markup languages supported by TM (HTML, Markdown, etc.) As for ?Google?, there are a few search functions in the Hyperlink Helper, but these will all insert the resulting link in your document, where the Web Searches would open a browser window. If you need the latter behavior, I?d suggest trying Quicksilver instead. The way I do it is by pressing ?E to copy the text to the search clipboard, then ?? to invoke Quicksilver, and now ?g? + 2 ? ? to google that. The nice thing about this workflow is that I can use ?wp? to Wikipedia the text, ?im? to Internet Movie Database the text, etc. and it works in basically all programs (not just TM) -- the downside is that if you?re not using OmniWeb, its search shortcuts, and the OmniWeb QS module, setting up these web queries in Quicksilver is IIRC not trivial. If these solutions are not to your likings, it is possible to do a checkout of the last revision of the Web Searches bundle. From henrik at nyh.se Mon May 28 07:17:32 2007 From: henrik at nyh.se (Henrik Nyh) Date: Mon, 28 May 2007 09:17:32 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> Message-ID: On 27/05/07, Allan Odgaard wrote: > > I also really like the tab trigger idea, and for slogans, the "beyond > words" is my favorite. Whereas I do think "beyond words" is very clever, I think I'd feel embarrassed with it on a t-shirt. A bit pretentious, or something. Can't quite put my finger on it. From xcambar at gmail.com Mon May 28 08:02:55 2007 From: xcambar at gmail.com (Xavier Cambar) Date: Mon, 28 May 2007 10:02:55 +0200 Subject: [TxMt] Feature request Message-ID: <7DAA9C6C-D3FD-44C1-B522-429CF0A3119F@gmail.com> Hi, When writing an article, it happens that some symbols appear very very often, so instead of type-writing them all every time, I'm used to create snippets or commands o make things faster and easier. But such snippets are not to be kept in a safe place for a later usage. So I was wondering if there wasn't a way to create project snippets, not stored in a particular bundle, but (e.g.) in the project file, so every time a projec is open, the custom commands are available. It would be like the Scope Selector, but concerning projects, sort of. Xavier Cambar PS: On the T-shirts debate, what about "Happy Mating"? From oblivious at subtlegradient.com Mon May 28 12:33:50 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Mon, 28 May 2007 08:33:50 -0400 Subject: [TxMt] Web Searches Bundle In-Reply-To: <07506182-4007-47A1-B732-A0D2395630AB@macromates.com> References: <07506182-4007-47A1-B732-A0D2395630AB@macromates.com> Message-ID: <27505C78-0A91-43B0-AE90-12014D3D772B@subtlegradient.com> On May 28, 2007, at 2:06 AM, Allan Odgaard wrote: > if you?re not using OmniWeb, its search shortcuts, and the OmniWeb > QS module, setting up these web queries in Quicksilver is IIRC not > trivial. If you have Safari bookmarks in your Quicksilver catalogs You can just bookmark a url with *** in it. Quicksilver will then search your bookmarks occasionally and automatically convert all urls containing *** to search bookmarks. thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From knutin at urtete.com Mon May 28 13:32:08 2007 From: knutin at urtete.com (Knut Ivar Nesheim) Date: Mon, 28 May 2007 15:32:08 +0200 Subject: [TxMt] Textmate for remote files In-Reply-To: <10822703.post@talk.nabble.com> References: <10822703.post@talk.nabble.com> Message-ID: <1E6D74BA-B27B-4C96-A6A6-222838AA3F79@urtete.com> Den 27. mai. 2007 kl. 08.56 skrev Malte Sussdorff: > > Textmate is great to work with, if you are using it on your mac. > The moment > you have a file on a remote server though, things get tough, at > least with > MacFuse using SSH. I used TextMate over nfs and everytime TextMate gets focus it will search through your project for changes made by other programs. After a while as my projects, waiting for TextMate *everytime* it got focus started to make me feel like a potential serial killer. The solution(for me, at least): do a checkout of your code on your local mac, edit with textmate, use scp(just create a command and bind it to ^+command+s or something) to copy the files to the server. It's great! :-) -- Knut Ivar Nesheim From james at grayproductions.net Mon May 28 14:01:09 2007 From: james at grayproductions.net (James Edward Gray II) Date: Mon, 28 May 2007 09:01:09 -0500 Subject: [TxMt] Web Searches Bundle In-Reply-To: <27505C78-0A91-43B0-AE90-12014D3D772B@subtlegradient.com> References: <07506182-4007-47A1-B732-A0D2395630AB@macromates.com> <27505C78-0A91-43B0-AE90-12014D3D772B@subtlegradient.com> Message-ID: On May 28, 2007, at 7:33 AM, Thomas Aylott (subtleGradient) wrote: > On May 28, 2007, at 2:06 AM, Allan Odgaard wrote: > >> if you?re not using OmniWeb, its search shortcuts, and the OmniWeb >> QS module, setting up these web queries in Quicksilver is IIRC not >> trivial. > > If you have Safari bookmarks in your Quicksilver catalogs > You can just bookmark a url with *** in it. > Quicksilver will then search your bookmarks occasionally and > automatically convert all urls containing *** to search bookmarks. I built a QuickSilver trigger for YubNub (Search for...). It gives me all the goodies Allan described and more. It took a couple of minutes. James Edward Gray II From jay-txmt at soffian.org Mon May 28 14:01:31 2007 From: jay-txmt at soffian.org (Jay Soffian) Date: Mon, 28 May 2007 10:01:31 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> Message-ID: <473A1A46-E348-497C-8E6A-95F21F51258B@soffian.org> On May 27, 2007, at 6:17 AM, ?douard Gilbert wrote: > I was thinking about > > text? This got me thinking. The point of snippets is to save typing. So the above should really be tm?. But then it occurred to me. The snippet should be added to the TextMate bundle. Then put the trigger on the t-shirt. Something like: nyfe? If someone asks you what the heck that means, tell them they need to type it into TextMate to find out. Kinda like a secret-handshake. :-) (Bonus points for coming up with an acronym/backronym that stands on its own.) j. -------------- next part -------------- A non-text attachment was scrubbed... Name: Slogan.tmSnippet Type: application/octet-stream Size: 498 bytes Desc: not available URL: From andy at hexten.net Mon May 28 14:05:10 2007 From: andy at hexten.net (Andy Armstrong) Date: Mon, 28 May 2007 15:05:10 +0100 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <473A1A46-E348-497C-8E6A-95F21F51258B@soffian.org> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <473A1A46-E348-497C-8E6A-95F21F51258B@soffian.org> Message-ID: <17874282-2C4C-4B3F-A0D7-CA2E2867FFF5@hexten.net> On 28 May 2007, at 15:01, Jay Soffian wrote: > This got me thinking. The point of snippets is to save typing. So > the above should really be tm?. > > But then it occurred to me. The snippet should be added to the > TextMate bundle. Then put the trigger on the t-shirt. Something like: > > nyfe? > > If someone asks you what the heck that means, tell them they need > to type it into TextMate to find out. Kinda like a secret- > handshake. :-) I like this idea very much. -- Andy Armstrong, hexten.net From guy at britewhite.net Mon May 28 14:26:01 2007 From: guy at britewhite.net (Guy) Date: Mon, 28 May 2007 15:26:01 +0100 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <17874282-2C4C-4B3F-A0D7-CA2E2867FFF5@hexten.net> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <473A1A46-E348-497C-8E6A-95F21F51258B@soffian.org> <17874282-2C4C-4B3F-A0D7-CA2E2867FFF5@hexten.net> Message-ID: yeah me too.. just have the Textmate logo in the middle at the front with the shortcut... and the answer on the back. --Guy ***************************************** --On May 28, 2007 15:05:10 +0100 Andy Armstrong wrote: > On 28 May 2007, at 15:01, Jay Soffian wrote: >> This got me thinking. The point of snippets is to save typing. So >> the above should really be tm?. >> >> But then it occurred to me. The snippet should be added to the >> TextMate bundle. Then put the trigger on the t-shirt. Something like: >> >> nyfe? >> >> If someone asks you what the heck that means, tell them they need >> to type it into TextMate to find out. Kinda like a secret- >> handshake. :-) > > I like this idea very much. ---Guy PGP Key on Request From chuck.esterbrook at gmail.com Mon May 28 14:28:14 2007 From: chuck.esterbrook at gmail.com (Chuck Esterbrook) Date: Mon, 28 May 2007 07:28:14 -0700 Subject: [TxMt] Re: Performance Request: Faster "Find in Project" In-Reply-To: <54018318-D20C-49F4-ADF8-4AE7058122AC@macromates.com> References: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> <953EF564-D08A-4A60-8F7E-4F070DAE1B67@mac.com> <94cdd26f0705271228r362ed2b8v1513cda30e640c78@mail.gmail.com> <4659DFD9.6050000@andersground.net> <580C3DC1-7E49-49FA-968D-250D1E8EDD54@gmail.com> <54018318-D20C-49F4-ADF8-4AE7058122AC@macromates.com> Message-ID: <94cdd26f0705280728o51c2a531kb1b17c6104298546@mail.gmail.com> On 5/27/07, Allan Odgaard wrote: > On 27. May 2007, at 21:55, Yi Qiang wrote: > > > [...] > > I think this feature has been requested several times, but I am not > > sure whether or not it is planned for TM 2.0. Can anyone comment on > > that? > > I believe I have gone on record at least a dozen times saying 2.0 has > an improved find in project (folder)? Thanks. -Chuck From sven.axelsson at gmail.com Mon May 28 14:37:09 2007 From: sven.axelsson at gmail.com (Sven Axelsson) Date: Mon, 28 May 2007 16:37:09 +0200 Subject: [TxMt] Textmate for remote files In-Reply-To: <1E6D74BA-B27B-4C96-A6A6-222838AA3F79@urtete.com> References: <10822703.post@talk.nabble.com> <1E6D74BA-B27B-4C96-A6A6-222838AA3F79@urtete.com> Message-ID: On 28/05/07, Knut Ivar Nesheim wrote: [snip] > > The solution(for me, at least): do a checkout of your code on your > local mac, edit with textmate, use scp(just create a command and bind > it to ^+command+s or something) to copy the files to the server. > > It's great! :-) Or set up a Subversion post-commit hook that updates the project on the server every time you commit your local changes. It's even better! ;^) -- Sven Axelsson From oblivious at subtlegradient.com Mon May 28 15:04:35 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Mon, 28 May 2007 11:04:35 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <473A1A46-E348-497C-8E6A-95F21F51258B@soffian.org> <17874282-2C4C-4B3F-A0D7-CA2E2867FFF5@hexten.net> Message-ID: <4DB56123-3077-493C-9B35-E9650233F7E7@subtlegradient.com> On May 28, 2007, at 10:26 AM, Guy wrote: > yeah me too.. > > just have the Textmate logo in the middle at the front with the > shortcut... and the answer on the back. > > --Guy > > ***************************************** > --On May 28, 2007 15:05:10 +0100 Andy Armstrong > wrote: > >> On 28 May 2007, at 15:01, Jay Soffian wrote: >>> This got me thinking. The point of snippets is to save typing. So >>> the above should really be tm?. >>> >>> But then it occurred to me. The snippet should be added to the >>> TextMate bundle. Then put the trigger on the t-shirt. Something >>> like: >>> >>> nyfe? >>> >>> If someone asks you what the heck that means, tell them they need >>> to type it into TextMate to find out. Kinda like a secret- >>> handshake. :-) >> >> I like this idea very much. > > > > ---Guy PGP Key on Request Interesting idea, but I'm not going to wear a shirt that says weird things. I don't know anyone that would ever understand or care what it means Might be interesting for people that actually know other programmers or go to conferences, or as a giveaway at macworld or something. thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: From xcambar at gmail.com Mon May 28 15:29:27 2007 From: xcambar at gmail.com (Xavier Cambar) Date: Mon, 28 May 2007 17:29:27 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <473A1A46-E348-497C-8E6A-95F21F51258B@soffian.org> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <473A1A46-E348-497C-8E6A-95F21F51258B@soffian.org> Message-ID: <28F579EA-5FCD-4BD9-85A0-A866FF16F408@gmail.com> Le 28 mai 07 ? 16:01, Jay Soffian a ?crit : > > On May 27, 2007, at 6:17 AM, ?douard Gilbert wrote: > >> I was thinking about >> >> text > > This got me thinking. The point of snippets is to save typing. So > the above should really be tm?. > > But then it occurred to me. The snippet should be added to the > TextMate bundle. Then put the trigger on the t-shirt. Something like: > > nyfe? > > If someone asks you what the heck that means, tell them they need > to type it into TextMate to find out. Kinda like a secret- > handshake. :-) > > (Bonus points for coming up with an acronym/backronym that stands > on its own.) > > j. > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate I liked the "Try it to find out" part of your idea. Thinking of something dealing with text, I (i.e. a software) converted an image of the gear to ASCII art. A simple tm? would do the thing and display it in the current document. nyfe? was nice, it has pros that my attempt doesn't, like it is more attractive because many would get what "tm" means, and so won't type it in the editor, but "nyfe" sounds like you WANT to try to find out. At least , "nyfe" worked for me! ...But... I'm not fond of the result of the snippet. One thing sucks about what I did: it is recommended to maximise the window, otherwise, it will look bad, sooo baaad! (width: 166 lines) -------------- next part -------------- A non-text attachment was scrubbed... Name: Logo.tmSnippet Type: application/octet-stream Size: 10756 bytes Desc: not available URL: -------------- next part -------------- Ladies and Gentlemen, may you appreciate it! Xavier Cambar From dd at dyce.com Mon May 28 15:32:46 2007 From: dd at dyce.com (Richard Dyce) Date: Mon, 28 May 2007 16:32:46 +0100 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <28F579EA-5FCD-4BD9-85A0-A866FF16F408@gmail.com> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <473A1A46-E348-497C-8E6A-95F21F51258B@soffian.org> <28F579EA-5FCD-4BD9-85A0-A866FF16F408@gmail.com> Message-ID: <64CD8A30-CB91-4242-BAD4-AA8CDF7BFDBC@dyce.com> Nice. On 28 May 2007, at 16:29, Xavier Cambar wrote: > -- Richard Dyce MA (Cantab.) MBCS MIET http://dyce.com -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2405 bytes Desc: not available URL: From bbs at fatslice.com Mon May 28 16:51:38 2007 From: bbs at fatslice.com (David Eriksson) Date: Mon, 28 May 2007 18:51:38 +0200 Subject: [TxMt] relative project path (for bundles), without a project Message-ID: <49445084-3EFD-4E50-BA49-CA15B0A01DAA@fatslice.com> I (and many others) use Mate with just typing [term] mate /Dev/projectname That gives you a TM window with the "project drawer". But this isn't really a project since we have no .tmproj file. Anyway, two questions #1 Is there a $TM_... path that can tell me the top-level directory for the open window? Reason I'm asking is that some bundles, (just tried the AS3 one) depends on knowing the "root folder". They should just assume that we wanna use the currently opened dir (if one). #2 Any alternative way of adding "tm shell variables" to a directory. Like the ones in project.tmproj -> shellVariables -> .. best /david From hendrik.fuss at gmail.com Mon May 28 16:56:29 2007 From: hendrik.fuss at gmail.com (=?ISO-8859-1?Q?Hendrik_Fu=DF?=) Date: Mon, 28 May 2007 17:56:29 +0100 Subject: [TxMt] LaTeX natbib uppercase \Cite* commands Message-ID: <99cd1f6d0705280956k7c36df19k4b9560f638759ace@mail.gmail.com> Hi, natbib defines a set of cite commands that start with an uppercase C (e.g. \Citep), which are meant to be used at the start of sentences, especially if the author name starts with a lowercase letter (as in "von ...."). The current TextMate highlighting doesn't recognise these commands as citation commands. However, this is easily fixed by changing the first occurrence of "cite" to "[Cc]ite" in the language definition. The fix seems to work fine, so I was wondering whether this should go into the main release. cheers Hendrik From ciawal at gmail.com Mon May 28 17:12:53 2007 From: ciawal at gmail.com (=?ISO-8859-1?Q?Ciar=E1n_Walsh?=) Date: Mon, 28 May 2007 18:12:53 +0100 Subject: [TxMt] relative project path (for bundles), without a project In-Reply-To: <49445084-3EFD-4E50-BA49-CA15B0A01DAA@fatslice.com> References: <49445084-3EFD-4E50-BA49-CA15B0A01DAA@fatslice.com> Message-ID: <3D69BCC7-7D49-4B0C-9F69-9748AB92F22A@gmail.com> On 28 May 2007, at 17:51, David Eriksson wrote: > But this isn't really a project since we have no .tmproj file. > > Anyway, two questions > > #1 > Is there a $TM_... path that can tell me the top-level directory > for the open window? For a project yes, TM_PROJECT_DIRECTORY > Reason I'm asking is that some bundles, (just tried the AS3 one) > depends on knowing the "root folder". They should just assume that > we wanna use the currently opened dir (if one). I don't use the bundle so can't comment on this. > #2 > Any alternative way of adding "tm shell variables" to a directory. > Like the ones in project.tmproj -> shellVariables -> .. You can make a file called .textmate_init in the project root directory. This is a shell script which is executed before commands, so you should use e.g. export TM_DB_USER=projectuser However ? due to an implementation detail these values won't be available for all commands so you might get some confusing results. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bbs at fatslice.com Mon May 28 17:33:49 2007 From: bbs at fatslice.com (David Eriksson) Date: Mon, 28 May 2007 19:33:49 +0200 Subject: [TxMt] relative project path (for bundles), without a project In-Reply-To: <3D69BCC7-7D49-4B0C-9F69-9748AB92F22A@gmail.com> References: <49445084-3EFD-4E50-BA49-CA15B0A01DAA@fatslice.com> <3D69BCC7-7D49-4B0C-9F69-9748AB92F22A@gmail.com> Message-ID: >> #1 >> Is there a $TM_... path that can tell me the top-level directory >> for the open window? > For a project yes, TM_PROJECT_DIRECTORY I mean achieve the same result without using "projects". The file list that shows up when launching mate from the terminal (mate projectdir) is obviously called "project drawer" even if we just opened a directory. Anyway, the list of files there, The top- directory, that is what I want. best d -------------- next part -------------- An HTML attachment was scrubbed... URL: From bbs at fatslice.com Mon May 28 17:50:35 2007 From: bbs at fatslice.com (David Eriksson) Date: Mon, 28 May 2007 19:50:35 +0200 Subject: [TxMt] Re: Performance Request: Faster "Find in Project" In-Reply-To: <94cdd26f0705280728o51c2a531kb1b17c6104298546@mail.gmail.com> References: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> <953EF564-D08A-4A60-8F7E-4F070DAE1B67@mac.com> <94cdd26f0705271228r362ed2b8v1513cda30e640c78@mail.gmail.com> <4659DFD9.6050000@andersground.net> <580C3DC1-7E49-49FA-968D-250D1E8EDD54@gmail.com> <54018318-D20C-49F4-ADF8-4AE7058122AC@macromates.com> <94cdd26f0705280728o51c2a531kb1b17c6104298546@mail.gmail.com> Message-ID: <9CC98E93-4781-4A78-A257-5AE3A223B658@fatslice.com> We've talked about this earlier too, but projects with big binary files (without extensions, if that matters) seem to get searched even though they are big binaries. It can be a 10MB+ file that it tries to find stuff in. Sometimes If the machine is really low on ram, I can get an alert in Mate telling me that we're low on ram and that big file cant be opened. A setting where one could choose to skip searching files > x megs!? Tried BBEdit, Xcode and searched the same project and they didn't look in that specific file. I know that deciding if the file is text or binary would be tricky, I mean we could have a 100MB+ postscript file, but would be interesting to know what differs betw say TM and xCode here. /d From stevemolitor at gmail.com Mon May 28 18:23:08 2007 From: stevemolitor at gmail.com (Steve Molitor) Date: Mon, 28 May 2007 13:23:08 -0500 Subject: [TxMt] custom indentation for Ruby case statements Message-ID: <3e21ad60705281123j320d81cdp3954bb46708840dc@mail.gmail.com> Has anyone managed to hack the TextMate indentation engine to display case statements with indented 'when' and 'else' blocks? Thanks. Steve -------------- next part -------------- An HTML attachment was scrubbed... URL: From lists at tiggs.net Mon May 28 19:55:43 2007 From: lists at tiggs.net (Charley Tiggs) Date: Mon, 28 May 2007 15:55:43 -0400 Subject: [TxMt] Textmate for remote files In-Reply-To: References: <10822703.post@talk.nabble.com> <1E6D74BA-B27B-4C96-A6A6-222838AA3F79@urtete.com> Message-ID: <465B33BF.1010000@tiggs.net> > On 28/05/07, Knut Ivar Nesheim wrote: > [snip] >> >> The solution(for me, at least): do a checkout of your code on your >> local mac, edit with textmate, use scp(just create a command and bind >> it to ^+command+s or something) to copy the files to the server. >> >> It's great! :-) If you're going to create a command for scp, why not use rsync? At least, using rsync, it'll go much faster since only the files that need to be uploaded will be uploaded. Charley From warp at reboot.ch Tue May 29 02:21:05 2007 From: warp at reboot.ch (Will Arp) Date: Tue, 29 May 2007 04:21:05 +0200 Subject: [TxMt] problem with command Message-ID: <9C3DB2B3-DEDC-4607-984E-8290F2074A22@reboot.ch> I'm getting crazy, have a command with a simple "cat file" when output set to "Replace Document" I get nothing but an empty file, works fine when output set to "Show as HTML" Thank you! -will From devlist at samuraicoder.net Tue May 29 03:48:15 2007 From: devlist at samuraicoder.net (Takaaki Kato) Date: Tue, 29 May 2007 12:48:15 +0900 Subject: [TxMt] Any extended Monokai thmes? Message-ID: <3B665F76-4945-4784-8822-712EEEFE645D@samuraicoder.net> Hi, t-shirt lovers: I love Monokai theme personally, but the theme has fewer elements resulting in fewer colors. I know I can add and customize it easily, but I'm not talented with picking colors and designing. Can anybody have her or his own customized themes? Can we share yours? Regards. Takaaki -- Takaaki Kato http://samuraicoder.net From andre at bonhote.org Tue May 29 11:53:27 2007 From: andre at bonhote.org (=?ISO-8859-1?Q?Bonh=F4te_Andr=E9?=) Date: Tue, 29 May 2007 13:53:27 +0200 Subject: [TxMt] GPG en-/decryption Message-ID: <4D00A0F7-1BFC-473A-8182-6ACE62342279@bonhote.org> Hi I'm looking for a way to easily encrypt and decrypt a text file. It should do the following: - On open, ask for the passphrase and decrypt the document - Display the document plain text, allow edits - On save, automatically encrypt the document, but leave the unencrypted doc open. I'd use this to store passwords. Any ideas? Thanks a lot! Andr? From throw-away-1 at macromates.com Tue May 29 13:19:02 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Tue, 29 May 2007 15:19:02 +0200 Subject: [TxMt] relative project path (for bundles), without a project In-Reply-To: References: <49445084-3EFD-4E50-BA49-CA15B0A01DAA@fatslice.com> <3D69BCC7-7D49-4B0C-9F69-9748AB92F22A@gmail.com> Message-ID: <7B81E58E-0FAB-443F-A293-C4CAE7A36257@macromates.com> On 28. May 2007, at 19:33, David Eriksson wrote: >>> #1 >>> Is there a $TM_... path that can tell me the top-level directory >>> for the open window? >> For a project yes, TM_PROJECT_DIRECTORY > I mean achieve the same result without using "projects". The TM_PROJECT_DIRECTORY will be set to the root folder in the project drawer. If there are multiple entries at root level, it will be the nearest common ancestor of these, so e.g. adding a bunch of files from the same folder will have that folder as project directory. As for the .textmate_init file Ciar?n mentioned, it works for all but commands which use shebang. From throw-away-1 at macromates.com Tue May 29 13:31:06 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Tue, 29 May 2007 15:31:06 +0200 Subject: [TxMt] Re: Performance Request: Faster "Find in Project" In-Reply-To: <9CC98E93-4781-4A78-A257-5AE3A223B658@fatslice.com> References: <94cdd26f0705260740q6ba4f745xa7ccf4d55931b55c@mail.gmail.com> <953EF564-D08A-4A60-8F7E-4F070DAE1B67@mac.com> <94cdd26f0705271228r362ed2b8v1513cda30e640c78@mail.gmail.com> <4659DFD9.6050000@andersground.net> <580C3DC1-7E49-49FA-968D-250D1E8EDD54@gmail.com> <54018318-D20C-49F4-ADF8-4AE7058122AC@macromates.com> <94cdd26f0705280728o51c2a531kb1b17c6104298546@mail.gmail.com> <9CC98E93-4781-4A78-A257-5AE3A223B658@fatslice.com> Message-ID: <15DE2A10-1461-427E-8A56-16E42BFD1A51@macromates.com> On 28. May 2007, at 19:50, David Eriksson wrote: > [...] > Tried BBEdit, Xcode and searched the same project and they didn't > look in that specific file. I know that deciding if the file is > text or binary would be tricky, I mean we could have a 100MB+ > postscript file, but would be interesting to know what differs betw > say TM and xCode here. The way TM presently does it is by: 1) check if TM is set as the handler for this file type (in Finder), if so, search it 2) check if the extension is known as a binary or text extension -- all extensions declared in TM?s Info.plist are known text extensions, but you can right-click a file in the project drawer to toggle the type for the clicked file?s extension 3) scan the first 8 KB of the file and check if it is a) valid UTF-8 and b) contains no control characters (i.e. below 0x20) except for tab and carriage return / line feed). Files w/o extension will thus always pass/fall based on the third check. When 2.0 is out, it should be easier to see which files TM chokes on based on the new UI, at that time I?ll take input on improving the heuristic, if there are still problems. From throw-away-1 at macromates.com Tue May 29 13:32:13 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Tue, 29 May 2007 15:32:13 +0200 Subject: [TxMt] problem with command In-Reply-To: <9C3DB2B3-DEDC-4607-984E-8290F2074A22@reboot.ch> References: <9C3DB2B3-DEDC-4607-984E-8290F2074A22@reboot.ch> Message-ID: On 29. May 2007, at 04:21, Will Arp wrote: > have a command with a simple "cat file" > when output set to "Replace Document" > I get nothing but an empty file, > works fine when output set to "Show as HTML" Most likely the file you cat is not UTF-8. Currently TM will silently suppress non-UTF-8 output from commands. From throw-away-1 at macromates.com Tue May 29 13:34:44 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Tue, 29 May 2007 15:34:44 +0200 Subject: [TxMt] GPG en-/decryption In-Reply-To: <4D00A0F7-1BFC-473A-8182-6ACE62342279@bonhote.org> References: <4D00A0F7-1BFC-473A-8182-6ACE62342279@bonhote.org> Message-ID: On 29. May 2007, at 13:53, Bonh?te Andr? wrote: > I'm looking for a way to easily encrypt and decrypt a text file. It > should do the following: > > - On open, ask for the passphrase and decrypt the document > - Display the document plain text, allow edits > - On save, automatically encrypt the document, but leave the > unencrypted doc open. > > I'd use this to store passwords. > > Any ideas? This would require implicitly invoked import/export code, which TM does not support. One popular option for sensitive files is to store them on an encrypted disk image. From n.kobschaetzki at googlemail.com Tue May 29 13:41:13 2007 From: n.kobschaetzki at googlemail.com (=?ISO-8859-1?Q?Niels_Kobsch=E4tzki?=) Date: Tue, 29 May 2007 15:41:13 +0200 Subject: [TxMt] GPG en-/decryption In-Reply-To: References: <4D00A0F7-1BFC-473A-8182-6ACE62342279@bonhote.org> Message-ID: <3E6B8AD1-2441-4CDC-9ABE-3B374D598330@googlemail.com> On May 29, 2007, at 3:34 PM, Allan Odgaard wrote: > On 29. May 2007, at 13:53, Bonh?te Andr? wrote: > >> I'm looking for a way to easily encrypt and decrypt a text file. >> It should do the following: >> >> - On open, ask for the passphrase and decrypt the document >> - Display the document plain text, allow edits >> - On save, automatically encrypt the document, but leave the >> unencrypted doc open. >> >> I'd use this to store passwords. >> >> Any ideas? > > This would require implicitly invoked import/export code, which TM > does not support. > > One popular option for sensitive files is to store them on an > encrypted disk image. I use 1Passwd (anything in the browser) and Yojimbo (anything else) nowadays for it and a hardcopy of the most important stuff stored outside the apartment ;) Niels From david at olrik.dk Tue May 29 13:41:11 2007 From: david at olrik.dk (David Jack Olrik) Date: Tue, 29 May 2007 15:41:11 +0200 Subject: [TxMt] Textmate for remote files In-Reply-To: <465B33BF.1010000@tiggs.net> References: <10822703.post@talk.nabble.com> <1E6D74BA-B27B-4C96-A6A6-222838AA3F79@urtete.com> <465B33BF.1010000@tiggs.net> Message-ID: <0B42CFE2-D8C5-4C25-B790-1FBD741F2C45@olrik.dk> On 28/05/2007, at 21.55, Charley Tiggs wrote: > If you're going to create a command for scp, why not use rsync? At > least, using rsync, it'll go much faster since only the files that > need to be uploaded will be uploaded. Or .. you can just use this bundle that uses scp for single files and rsync over ssh for the whole project. That way you can sync one file or the whole project. http://david.olrik.dk/articles/2007/02/09/textmate-remote-editing -- Best regards, David Jack Olrik http://david.olrik.dk GnuPG fingerprint C290 0A4A 0CCC CBA8 2B37 E18D 01D2 F6EF 2E61 9894 ["The first rule of Perl club is You do not talk about Perl club"] -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 1855 bytes Desc: not available URL: From jaguarcy at gmail.com Tue May 29 13:47:12 2007 From: jaguarcy at gmail.com (=?UTF-8?Q?Constantinos_Neophytou_=E2=99=8E?=) Date: Tue, 29 May 2007 16:47:12 +0300 Subject: [TxMt] GPG en-/decryption In-Reply-To: <4D00A0F7-1BFC-473A-8182-6ACE62342279@bonhote.org> References: <4D00A0F7-1BFC-473A-8182-6ACE62342279@bonhote.org> Message-ID: how about use the AES encrypt/decrypt Text bundle actions, and bind the encrypt action to cmd-S for a certain type of text-files (let's say with .sec extension)? Not as automatic, but I guess you could modify the commands a bit and have the AES decryption module store the password in a temporary global variable, and have the encryption command triggered by cmd-S use that password... So u open the .sec file, hit a key combination to decrypt it, and when u save it (using cmd-S) it encrypts using the same pass, saves, and u have to decrypt it again before using it (could also use the same pass if it exists..?) That's as smooth as I can get it, at least in theory... maybe someone cares to elaborate a bit? Keeping a plain text file would be easier than managing an encrypted disk image, but I'm not sure how easily the global variable could be accessed... On May 29, 2007, at 2:53 PM, Bonh?te Andr? wrote: > Hi > > I'm looking for a way to easily encrypt and decrypt a text file. It > should do the following: > > - On open, ask for the passphrase and decrypt the document > - Display the document plain text, allow edits > - On save, automatically encrypt the document, but leave the > unencrypted doc open. > > I'd use this to store passwords. > > Any ideas? > > Thanks a lot! > > Andr? > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate -- What's your Dream? Make it happen with www.dostpost.com -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 1288 bytes Desc: not available URL: From Steven.Klass at smsc.com Tue May 29 14:41:47 2007 From: Steven.Klass at smsc.com (Steven.Klass at smsc.com) Date: Tue, 29 May 2007 07:41:47 -0700 Subject: [TxMt] Textmate for remote files In-Reply-To: <1E6D74BA-B27B-4C96-A6A6-222838AA3F79@urtete.com> Message-ID: You know... I too am a huge (unfortunate) fan of working on remote files... This topic has been discussed at great length. Since it is apparent none of the existing solutions work nicely and as elegantly as working on local code we all have come up with less than ideal solutions for solving this problem. I for example use RBrowser because I like that - but again it is less than perfect. So.. We need a better solution. Writing down the short list of requirements - Tie to Textmate - very closely - Allow me to easily create a project out of remote files - Allow me to add remote files - Allow me to search those remote files - Save the file back - Connect via ssh - Should be able to routinely (background) poll the remote system and determine the status of the file. This should be able to be turned off or time adjusted based on user needs. I wouldn't need this per se. - Should have an integrated browser mechanism which 1) gets on a remote system (ssh) 2) allows you to traverse a remote file system - Might want to be able to bind a command to a save ( svn commit ) feature - Might want to be able to bind a command to the file status ( p4 fstat ) feature OK what do we need to add shorten or comment on?? Perhaps the cyberduck / rbrowser / macfuse / Olrik folks are listening. I think David Olrik's solution is a decent start but needs a bit more polishing. A better solution can't be far off.. Thoughts?? --- Steven M. Klass Strategic Manager, Design Automation - Analog Mixed Signal SMSC 3930 East Ray Road, Suite 200 Phoenix, Arizona 85044 (480) 704-7046 (Desk) (480) 225-1112 (Mobile) steven.klass at smsc.com Knut Ivar Nesheim Sent by: textmate-bounces at lists.macromates.com 05/28/07 06:32 AM Please respond to TextMate users To TextMate users cc Subject Re: [TxMt] Textmate for remote files Den 27. mai. 2007 kl. 08.56 skrev Malte Sussdorff: > > Textmate is great to work with, if you are using it on your mac. > The moment > you have a file on a remote server though, things get tough, at > least with > MacFuse using SSH. I used TextMate over nfs and everytime TextMate gets focus it will search through your project for changes made by other programs. After a while as my projects, waiting for TextMate *everytime* it got focus started to make me feel like a potential serial killer. The solution(for me, at least): do a checkout of your code on your local mac, edit with textmate, use scp(just create a command and bind it to ^+command+s or something) to copy the files to the server. It's great! :-) -- Knut Ivar Nesheim ______________________________________________________________________ For new threads USE THIS: textmate at lists.macromates.com (threading gets destroyed and the universe will collapse if you don't) http://lists.macromates.com/mailman/listinfo/textmate -------------- next part -------------- An HTML attachment was scrubbed... URL: From steve at narbat.com Tue May 29 15:01:43 2007 From: steve at narbat.com (Steve King) Date: Tue, 29 May 2007 11:01:43 -0400 (EDT) Subject: [TxMt] Unused key-bindings In-Reply-To: <9c31463d0705251551m8997387h302430c5c728fbf5@mail.gmail.com> References: <80FCC3B7-AF45-443F-BEDE-4FA2F8E607E2@gmail.com> <9c31463d0705251551m8997387h302430c5c728fbf5@mail.gmail.com> Message-ID: On Sat, 26 May 2007, Fred B wrote: > Bundles menu -> Select Bundle Item. > Change the search field to "Key equivalent", type the shortcut. > Note that the result depend on the scope in the frontmost doc. One problem is that this only shows keys assigned to bundle items, not keys assigned to built-in functions (items on the File, Edit, etc. menus). I'd like to see an enhanced form of the Select Bundle Item dialog in TM2, which includes the built-in keybindings as well as other information: Item name Item type (command, snippet, built-in, etc.) Bundle in which the item is found Activation Scope(s) Ideally this would be presented in the standard table-view widget, so that I can display or hide any column, re-arrange the columns, and (especially!) sort by any column. It would also be nice to have a similar table indexed by scope. That is, for each scope show the bundles which define or reference it and the keys active within that scope. And I'd also like a pony. :-) -- Steve King, From steve at narbat.com Tue May 29 15:13:29 2007 From: steve at narbat.com (Steve King) Date: Tue, 29 May 2007 11:13:29 -0400 (EDT) Subject: [TxMt] Release notes and diff - how to distinguish .txt files? In-Reply-To: <51A30B8E-DBA0-40BF-A8FD-8EDF4A14E62D@mac.com> References: <51A30B8E-DBA0-40BF-A8FD-8EDF4A14E62D@mac.com> Message-ID: On Sat, 26 May 2007, Rafa? Komorowski wrote: > I have a changelog.txt file in my Rails project, that describes changes made > in svn-commits. This file should be viewed as "Release Notes" file-type (then > it's properly colored etc.). But it is in conflict with the Subversion-bundle > (or Diff-bundle?), because temporaty diff-files generated by TextMate (when > using Subversion-bundle) have now a .txt extension too, not .diff, as it used > to have. You could try the TabMate plugin. It's not a proper fix, but it might be a viable work-around for you. TabMate reads a special modeline (? la Emacs) from the first line of the file. This modeline can specify the file type, tab width, and hard or soft tabs on a file-by-file basis. So, if you have different types of text files all ending in ".txt", you can use the modeline to specify "diff" or "Release Notes" or whatever. -- Steve King, From dana.kashubeck at riemer.com Tue May 29 16:43:38 2007 From: dana.kashubeck at riemer.com (Dana Kashubeck) Date: Tue, 29 May 2007 12:43:38 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> Message-ID: <465C583A.3020907@riemer.com> On 5/27/07 5:57 PM, Jenny Harrison wrote: > I second the request for some female shirts. Are there just two of us > out here? femaleShirtRequests++ -- ------------------------------------- Dana Kashubeck Systems Manager Riemer Reporting Service Inc. http://www.riemer.com Phone: 440-835-2477 x. 125 Fax: 440-835-4594 ------------------------------------- -------------- next part -------------- A non-text attachment was scrubbed... Name: dana.kashubeck.vcf Type: text/x-vcard Size: 363 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3269 bytes Desc: S/MIME Cryptographic Signature URL: From dana.kashubeck at riemer.com Tue May 29 16:45:35 2007 From: dana.kashubeck at riemer.com (Dana Kashubeck) Date: Tue, 29 May 2007 12:45:35 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> Message-ID: <465C58AF.5080407@riemer.com> On 5/27/07 3:05 PM, Allan Odgaard wrote: > On 27. May 2007, at 14:43, Thomas Aylott (subtleGradient) wrote: > >> [...] >> Does anyone have a vector version of the icon? Maybe the original >> photoshop file or anything? >> That'd make the conversion to a vector object a lot easier. > > I have a 3-4 color version of the icon (from Wolfgang) which he did for > the last shirts. > > An alternative is to only use the cog, Jacob made this mockup which I > like (the composition, the slogan is not my favorite ;) ): > http://pastie.textmate.org/paste/asset/65002/Picture_21.png > > I also really like the tab trigger idea, and for slogans, the ?beyond > words? is my favorite. Oooooh . . . I *love* that graphic. I think that it is very nicely done and I like the subtle slogan. I also agree that "beyond words" is good. Although, I have to say that Helmut's "beyond text" makes more sense. I don't think I would put the tab trigger under the logo, though. I think the best place for it is on the back. -- ------------------------------------- Dana Kashubeck Systems Manager Riemer Reporting Service Inc. http://www.riemer.com Phone: 440-835-2477 x. 125 Fax: 440-835-4594 ------------------------------------- -------------- next part -------------- A non-text attachment was scrubbed... Name: dana.kashubeck.vcf Type: text/x-vcard Size: 363 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3269 bytes Desc: S/MIME Cryptographic Signature URL: From lists at tiggs.net Tue May 29 17:09:19 2007 From: lists at tiggs.net (Charley Tiggs) Date: Tue, 29 May 2007 13:09:19 -0400 Subject: [TxMt] Textmate for remote files In-Reply-To: <0B42CFE2-D8C5-4C25-B790-1FBD741F2C45@olrik.dk> References: <10822703.post@talk.nabble.com> <1E6D74BA-B27B-4C96-A6A6-222838AA3F79@urtete.com> <465B33BF.1010000@tiggs.net> <0B42CFE2-D8C5-4C25-B790-1FBD741F2C45@olrik.dk> Message-ID: <465C5E3F.6050408@tiggs.net> David Jack Olrik wrote: > > On 28/05/2007, at 21.55, Charley Tiggs wrote: > >> If you're going to create a command for scp, why not use rsync? At >> least, using rsync, it'll go much faster since only the files that >> need to be uploaded will be uploaded. > > Or .. you can just use this bundle that uses scp for single files and > rsync over ssh for the whole project. That way you can sync one file or > the whole project. > > http://david.olrik.dk/articles/2007/02/09/textmate-remote-editing Even better! Charley From erichsu at math.sfsu.edu Tue May 29 17:37:44 2007 From: erichsu at math.sfsu.edu (Eric Hsu) Date: Tue, 29 May 2007 10:37:44 -0700 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <465C58AF.5080407@riemer.com> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <465C58AF.5080407@riemer.com> Message-ID: <697D69EC-52AF-462B-A66B-87FCAB370162@math.sfsu.edu> On May 29, 2007, at 9:45 AM, Dana Kashubeck wrote: > Oooooh . . . I *love* that graphic. I think that it is very nicely > done and I like the subtle slogan. I also agree that "beyond > words" is good. Although, I have to say that Helmut's "beyond > text" makes more sense. I agree the graphic looks great. "Beyond text" might make more literal sense, but it loses the natural double meaning of "beyond words"= unspeakably, ineffably good. - Eric -- Eric Hsu, Associate Professor of Mathematics San Francisco State University http://math.sfsu.edu/hsu erichsu at math.sfsu.edu From david at olrik.dk Tue May 29 19:22:46 2007 From: david at olrik.dk (David Jack Olrik) Date: Tue, 29 May 2007 21:22:46 +0200 Subject: [TxMt] Textmate for remote files In-Reply-To: References: Message-ID: On 29/05/2007, at 16.41, Steven.Klass at smsc.com wrote: > - Tie to Textmate - very closely Agreed - I have tried to add easy key-combos to my sync bundle. apple+shift+s : save and sync current file via scp apple+F12 : sync entire project with rsync The configure options do not have a key-combo, as this is typically something you only do once per project. > - Allow me to easily create a project out of remote files This one is tricky, as TextMate Bundle commands need an open file in order to be activated. So you have to create a directory with an empty file before you can fetch the remote files. > - Allow me to add remote files Files are added locally and the synced to the remote end, this also fixes the next requirement > - Allow me to search those remote files All project files are "cached" locally so searching is easily done with TextMates normal search functions. > - Save the file back You can do this either for the current file or for the whole project. > - Connect via ssh Is there any other way ;) > - Should be able to routinely (background) poll the remote system > and determine the status of the file. This should be able to be > turned off or time adjusted based on user needs. I wouldn't need > this per se. This is the reason that TextMate is slow when working on networked volumes. TextMate scans the project directory continuously in order to update the project drawer. > - Should have an integrated browser mechanism which 1) gets on a > remote system (ssh) 2) allows you to traverse a remote file system If you can accept that all editing is done locally then my sync bundle will do what you want. I am curious as to why you would want to do this ? > - Might want to be able to bind a command to a save ( svn commit ) > feature > - Might want to be able to bind a command to the file status ( p4 > fstat ) feature These will be void if you can accept to work locally, TextMate has excellent support for both subversion and perforce (haven't tried the Perforce bundle though) > OK what do we need to add shorten or comment on?? Perhaps the > cyberduck / rbrowser / macfuse / Olrik folks are listening. I think MacFUSE is the most elegant solution, but it is useless as long as TextMate insists on continuously rescanning the project directory. I tried the cyberduck bundle a long time ago, but found that it took too long time to sync a single file for my taste, plus it wasn't integrated tightly enough into TextMate. I just want to press "save" and then my file should appear on the remote server. > I think David Olrik's solution is a decent start but needs a bit > more polishing. A better solution can't be far off.. What kind of polishing did you have in mind ? I'm listening =) -- Best regards, David Jack Olrik http://david.olrik.dk GnuPG fingerprint C290 0A4A 0CCC CBA8 2B37 E18D 01D2 F6EF 2E61 9894 ["The first rule of Perl club is You do not talk about Perl club"] -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 1855 bytes Desc: not available URL: From edouard.gilbert at eleves.bretagne.ens-cachan.fr Tue May 29 19:33:43 2007 From: edouard.gilbert at eleves.bretagne.ens-cachan.fr (=?ISO-8859-1?Q?=C9douard_Gilbert?=) Date: Tue, 29 May 2007 21:33:43 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <697D69EC-52AF-462B-A66B-87FCAB370162@math.sfsu.edu> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <465C58AF.5080407@riemer.com> <697D69EC-52AF-462B-A66B-87FCAB370162@math.sfsu.edu> Message-ID: <57B2F377-1BAA-4568-8F79-A10B2EDDDF6C@eleves.bretagne.ens-cachan.fr> Yet some other stupid ideas. What about using the as a verb? ?-S time, your time. your work. (whatever) From tanja+textmate at itendswith.com Tue May 29 22:28:25 2007 From: tanja+textmate at itendswith.com (Tanja) Date: Wed, 30 May 2007 00:28:25 +0200 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <465C583A.3020907@riemer.com> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> <465C583A.3020907@riemer.co m> Message-ID: <3E8AD76E-8F61-4364-92F3-04F941636624@itendswith.com> On 29 May 2007, at 18:43, Dana Kashubeck wrote: > On 5/27/07 5:57 PM, Jenny Harrison wrote: >> I second the request for some female shirts. Are there just two of >> us out here? > > femaleShirtRequests++ Another one here ;) female shirts rock. cheers, Tanja From dsnyder at txstate.edu Wed May 30 02:41:52 2007 From: dsnyder at txstate.edu (David F. Snyder) Date: Tue, 29 May 2007 21:41:52 -0500 Subject: [TxMt] Experimental Wiki Message-ID: Me, again. OK, so the GHCi fix was due to Alan's patch of the haskell bundle, not to my trashing my local bundle repository. I've been playing with the 3rd party bundle Plain Text Wiki, but it doesn't seem to play nice with the fact that I modify some of the standard bundles (LaTeX templates and commands primarily). I've installed it in the standard place now, but then it will get wiped out upon update, right? So, I tried the Experimental Wiki bundle: easy to do, perform the one command available. Apparently it should open a wiki based in a subdirectory of the bundle. I get the following error message, looks like a typo in the file linkify.rb (Errno::EPIPE) from /Applications/TextMate.app/Contents/SharedSupport/Bundles/Experimental Wiki.tmbundle/Support/bin/linkify.rb:39:in `<<' from /Applications/TextMate.app/Contents/SharedSupport/Bundles/Experimental Wiki.tmbundle/Support/bin/linkify.rb:39 from /Applications/TextMate.app/Contents/SharedSupport/Bundles/Experimental Wiki.tmbundle/Support/bin/linkify.rb:38:in `open' from /Applications/TextMate.app/Contents/SharedSupport/Bundles/Experimental Wiki.tmbundle/Support/bin/linkify.rb:38 sh: line 1: /Users/ds08/Library/Application Support/TextMate/Support/bin/Markdown.pl: No such file or directory /tmp/tm_wiki/intro.html I went into linkify.rb and noticed that the path is based on a HOME directory, so I altered that path name to be based on TM_SUPPORT_PATH. Now it works. And its cool (a bit clunky but useful). It would be good to have the patch committed to the repository. Best wishes David From matthew at nolobe.com Wed May 30 03:21:22 2007 From: matthew at nolobe.com (Matthew Drayton) Date: Wed, 30 May 2007 11:21:22 +0800 Subject: [TxMt] Textmate for remote files In-Reply-To: References: Message-ID: <832442C8-7B80-4583-8E64-7883BE6C1F3D@nolobe.com> > Writing down the short list of requirements > - Tie to Textmate - very closely > - Allow me to easily create a project out of remote files > - Allow me to add remote files > - Allow me to search those remote files > - Save the file back > - Connect via ssh > - Should be able to routinely (background) poll the remote > system and determine the status of the file. This should be able > to be turned off or time adjusted based on user needs. I wouldn't > need this per se. > - Should have an integrated browser mechanism which 1) gets > on a remote system (ssh) 2) allows you to traverse a remote file > system > - Might want to be able to bind a command to a save ( svn > commit ) feature > - Might want to be able to bind a command to the file > status ( p4 fstat ) feature You may want to take what I am about to write with a grain of salt but check out Interarchy. I think it will do what you want. I would (and I do) set up either a mirror or a Net Disk. Both approaches have different pros and cons but both will allow you to work pretty much transparently with a remote server. Kind Regards, Matthew -- Nolobe Pty Ltd From jonlarkowski at gmail.com Wed May 30 03:57:20 2007 From: jonlarkowski at gmail.com (Jon Larkowski) Date: Tue, 29 May 2007 22:57:20 -0500 Subject: [TxMt] Caps Lock as Ctrl key doesn't work for all combos Message-ID: <71E894C8-D04A-4835-B6D9-B77F932DD871@gmail.com> I've mapped my Caps Lock key to act as the Ctrl key (in Keyboard & Mouse preferences > Modifier Keys...). Problem is, not all TextMate combos work with this. [Hear me now, believe me later. I had an old Sun keyboard that was laid out this way, and it's the only way to fly. Especially on the MacBook Pro where the normal Ctrl key is quite inconvenient to hit.] For example: Paste From History Ctrl-Option-Command-V. Works fine with normal Ctrl key, but does not work with Caps Lock used as Ctrl. Another example: Select Bundle Item... Ctrl-Command-T works fine both ways, however. Perhaps there's something deep in TextMate's key processing code that's only looking directly at the Ctrl key, and not seeing the system-remapped Caps Lock key? Thanks for your attention! Jon From jacobolus at gmail.com Wed May 30 06:11:54 2007 From: jacobolus at gmail.com (Jacob Rus) Date: Wed, 30 May 2007 02:11:54 -0400 Subject: [TxMt] Re: Caps Lock as Ctrl key doesn't work for all combos In-Reply-To: <71E894C8-D04A-4835-B6D9-B77F932DD871@gmail.com> References: <71E894C8-D04A-4835-B6D9-B77F932DD871@gmail.com> Message-ID: Jon Larkowski wrote: > For example: Paste From History Ctrl-Option-Command-V. Works fine with > normal Ctrl key, but does not work with Caps Lock used as Ctrl. Works fine for me, both on a built-in 12" powerbook keyboard and on an external USB keyboard. There can be wonkiness w/ some keyboard shortcuts w/ an external keyboard, but in my experience they are unrelated to a remapped ctrl key. From jonlarkowski at gmail.com Wed May 30 06:32:20 2007 From: jonlarkowski at gmail.com (Jon Larkowski) Date: Wed, 30 May 2007 01:32:20 -0500 Subject: [TxMt] Re: Caps Lock as Ctrl key doesn't work for all combos In-Reply-To: References: <71E894C8-D04A-4835-B6D9-B77F932DD871@gmail.com> Message-ID: <796E0374-DDF4-43F0-8098-55B4B888D465@gmail.com> Wow, I'm surprised/encouraged to hear remapped Caps Lock as Ctrl works on 12" PowerBook. For forensics' sake... I'm on a MacBook Pro running OS X 10.4.9 and TextMate 1.5.5 (1383) using the built-in keyboard. And it no worky. From andre at bonhote.org Wed May 30 06:32:15 2007 From: andre at bonhote.org (=?ISO-8859-1?Q?Bonh=F4te_Andr=E9?=) Date: Wed, 30 May 2007 08:32:15 +0200 Subject: [TxMt] GPG en-/decryption In-Reply-To: <3E6B8AD1-2441-4CDC-9ABE-3B374D598330@googlemail.com> References: <4D00A0F7-1BFC-473A-8182-6ACE62342279@bonhote.org> <3E6B8AD1-2441-4CDC-9ABE-3B374D598330@googlemail.com> Message-ID: <8BEBF8BB-1FB5-46A6-A3AC-97B87BEEBA19@bonhote.org> Hi On 29.05.2007, at 15:41, Niels Kobsch?tzki wrote: >> >> One popular option for sensitive files is to store them on an >> encrypted disk image. > > I use 1Passwd (anything in the browser) and Yojimbo (anything else) > nowadays for it and a hardcopy of the most important stuff stored > outside the apartment ;) The disk image solution is far too slow. And the problem with 1Passwd and Yojimbo is: two tools. A while ago I have written a short shell script which does this job I described. I can, of course, use mate instead of vim to edit it, but that's not really what I'd wish. Thanks for the replies Andr? From throw-away-1 at macromates.com Wed May 30 07:16:55 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Wed, 30 May 2007 09:16:55 +0200 Subject: [TxMt] Caps Lock as Ctrl key doesn't work for all combos In-Reply-To: <71E894C8-D04A-4835-B6D9-B77F932DD871@gmail.com> References: <71E894C8-D04A-4835-B6D9-B77F932DD871@gmail.com> Message-ID: On 30. May 2007, at 05:57, Jon Larkowski wrote: > [...] > For example: Paste From History Ctrl-Option-Command-V. Works fine > with normal Ctrl key, but does not work with Caps Lock used as Ctrl. I tried remapping it on a MBP and pressed ???V -- up comes the clipboard history. So works fine here. See http://macromates.com/wiki/Troubleshooting/KeyBindings for troubleshooting suggestions. From throw-away-1 at macromates.com Wed May 30 07:18:11 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Wed, 30 May 2007 09:18:11 +0200 Subject: [TxMt] Experimental Wiki In-Reply-To: References: Message-ID: <58F62547-1503-4832-9981-20BD45D79913@macromates.com> On 30. May 2007, at 04:41, David F. Snyder wrote: > I've been playing with the 3rd party bundle Plain Text Wiki, but it > doesn't > seem to play nice with the fact that I modify some of the standard > bundles > (LaTeX templates and commands primarily). I've installed it in the > standard > place now, but then it will get wiped out upon update, right? Could you be more specific? How does it not play nice? And what is ?the standard place?? > [...] > I went into linkify.rb and noticed that the path is based on a HOME > directory, so I altered that path name to be based on > TM_SUPPORT_PATH. Now > it works. And its cool (a bit clunky but useful). > > It would be good to have the patch committed to the repository. Sure, please attach it :) From mats at imediatec.co.uk Wed May 30 10:03:26 2007 From: mats at imediatec.co.uk (Mats Persson) Date: Wed, 30 May 2007 11:03:26 +0100 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <3E8AD76E-8F61-4364-92F3-04F941636624@itendswith.com> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> <465C583A.3020907@riemer.co m> <3E8AD76E-8F61-4364-92F3-04F941636624@itendswith.com> Message-ID: <9FBDF2C0-9963-45EE-A965-45DD9603905B@imediatec.co.uk> Hi all, OK, 102 messages in one thread got me interested so I too had to contribute ;-) Full complete display of all designs found here: [ http:// www.imediatec.co.uk/tm/tshirts/ ] And there's one specifically for the ladies as well ;-) On 29 May 2007, at 23:28, Tanja wrote: > On 29 May 2007, at 18:43, Dana Kashubeck wrote: >> On 5/27/07 5:57 PM, Jenny Harrison wrote: >>> I second the request for some female shirts. Are there just two >>> of us out here? >> femaleShirtRequests++ > Another one here ;) > female shirts rock. Enjoy ! Kind regards, Mats ---- "TextMate, coding with an incredible sense of joy and ease" - www.macromates.com - From ledunn at mac.com Wed May 30 10:54:47 2007 From: ledunn at mac.com (Linda Dunn) Date: Wed, 30 May 2007 06:54:47 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <9FBDF2C0-9963-45EE-A965-45DD9603905B@imediatec.co.uk> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> <3E8AD76E-8F61-4364-92F3-0! 4F9416! 36624@itendswith.com> <9FBDF2C0-9963-45EE-A965-45DD9603905B@imediatec.co.uk> Message-ID: <9FFF2A33-438A-47F6-9E9B-08DB60496656@mac.com> On May 30, 2007, at 6:03 AM, Mats Persson wrote: > > Hi all, > > OK, 102 messages in one thread got me interested so I too had to > contribute ;-) > > Full complete display of all designs found here: [ http:// > www.imediatec.co.uk/tm/tshirts/ ] > > And there's one specifically for the ladies as well ;-) Er...you say "The general idea of the various 'designs' is that they should remain tasteful and professional looking, so that you can wear them anytime." This is true for all the shirts except the ones for the ladies. (sigh). How about (radical idea here) the same design that you'd do for the guys (the rest of them are great), just sized for women? Without the tit jokes? Just a thought. :) linda From textmate at minimaldesign.net Wed May 30 13:01:29 2007 From: textmate at minimaldesign.net (Yann B) Date: Wed, 30 May 2007 09:01:29 -0400 Subject: [TxMt] Re: Textmate for remote files In-Reply-To: <20070530120013.D46E86B13@comox.textdrive.com> References: <20070530120013.D46E86B13@comox.textdrive.com> Message-ID: <41DDC678-280E-4183-A468-D888EB4E5923@minimaldesign.net> > I too am a huge (unfortunate) fan of working on remote files... > This topic has been discussed at great length. Since it is > apparent none > of the existing solutions work nicely and as elegantly as working > on local > code we all have come up with less than ideal solutions for solving > this > problem. I for example use RBrowser because I like that - but > again it is > less than perfect. So.. We need a better solution. Writing down the > short list of requirements > - Tie to Textmate - very closely > - Allow me to easily create a project out of remote files > - Allow me to add remote files > - Allow me to search those remote files > - Save the file back > - Connect via ssh > - Should be able to routinely (background) poll the remote > system > and determine the status of the file. This should be able to be > turned > off or time adjusted based on user needs. I wouldn't need this per > se. > - Should have an integrated browser mechanism which 1) gets > on a > remote system (ssh) 2) allows you to traverse a remote file system > - Might want to be able to bind a command to a save ( svn > commit ) > feature > - Might want to be able to bind a command to the file > status ( p4 > fstat ) feature > > OK what do we need to add shorten or comment on?? Perhaps the > cyberduck / > rbrowser / macfuse / Olrik folks are listening. I think David > Olrik's > solution is a decent start but needs a bit more polishing. A better > solution can't be far off.. > > > Thoughts?? At this point (unless TextMate 2.0 addresses the issue ;) I think MacFuse pretty much solves everything, so the single one change that I would like to see in textmate is a mechanism to stop and/or set intervals on the project directory scanning routine. I have no idea what that would entail or if it's even feasible, so forgive me Allan if what I'm saying is ludicrous... ;) That single change would make MacFuse usable on projects that have more than 5 files... and solve everything... no? -------------- next part -------------- An HTML attachment was scrubbed... URL: From mats at imediatec.co.uk Wed May 30 13:15:17 2007 From: mats at imediatec.co.uk (Mats Persson) Date: Wed, 30 May 2007 14:15:17 +0100 Subject: [TxMt] new shirt ideas/slogans [revised] In-Reply-To: <9FFF2A33-438A-47F6-9E9B-08DB60496656@mac.com> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> <3E8AD76E-8F61-4364-92F3-0! 4F9416! 36624@itendswith.com> <9FBDF2C0-9963-45EE-A965-45DD9603905B@imediatec.co.uk> <9FFF2A33-438A-47F6-9E9B-08DB60496656@mac.com> Message-ID: <11080443-C7A4-4008-B613-984ABCC6E821@imediatec.co.uk> On 30 May 2007, at 11:54, Linda Dunn wrote: > On May 30, 2007, at 6:03 AM, Mats Persson wrote: >> Full complete display of all designs found here: [ http:// >> www.imediatec.co.uk/tm/tshirts/ ] >> And there's one specifically for the ladies as well ;-) > > Er...you say "The general idea of the various 'designs' is that > they should remain tasteful and professional looking, so that you > can wear them anytime." I also said "with a **heavy dose of tongue in cheek**" for the first one :-) [ http://en.wikipedia.org/wiki/Tongue-in-cheek ] Yes, I admit it was a bit of an obvious joke, but hey it was meant to get people smiling, not sighing/frowning. It was NOT meant as the only one for the ladies! > This is true for all the shirts except the ones for the ladies. > (sigh). How about (radical idea here) the same design that you'd do > for the guys (the rest of them are great), just sized for women? Linda, the rest of the T-shirts were classed as *Uni-sex* so they were meant for both sexes. As for sizes, well I've got nothing to do with that, so it's entirely up to those making them. (= Not me) > Without the tit jokes? Just a thought. :) One version of the same without the 'tit jokes' coming right up! (Has also been added to the URL page) Just to clarify for everyone, in order to remove any misunderstandings. The whole idea with this version is to play with Mac symbols, their substitutions into words and the multitude of meanings that can be construed from those words, within the TextMate scope, Life in general and the English language. In other words, play on many different levels, and therefore confound(?) the uninitiated, while being an 'in-crowd joke' among us TM users. Yes, the message can contain a naughty side, but that is down to your imagination ;-) The whole T-shirt design is both the front and the back as the message needs to be intact. -------------- next part -------------- A non-text attachment was scrubbed... Name: TM-Female-Purple-Front.v1.1.png Type: image/png Size: 31241 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: TM-Female-Purple-Back.png Type: image/png Size: 24850 bytes Desc: not available URL: -------------- next part -------------- Kind regards, Mats ---- "TextMate, coding with an incredible sense of joy and ease" - www.macromates.com - From harrison at Math.Berkeley.EDU Wed May 30 13:54:43 2007 From: harrison at Math.Berkeley.EDU (Jenny Harrison) Date: Wed, 30 May 2007 06:54:43 -0700 Subject: [TxMt] new shirt ideas/slogans [revised] In-Reply-To: <11080443-C7A4-4008-B613-984ABCC6E821@imediatec.co.uk> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> <3E8AD76E-8F61-4364-92F3-0! ! 4F9416! 36624@itendswith.com> <9FBDF2C0-9963-45EE-A965-45DD9603905B@imediatec.co.uk> <9FFF2A33-438A-47F6-9E9B-08DB60496656@mac.com> <11080443-C7A4-4008-B613-984ABCC6E821@imediatec.co.uk> Message-ID: <4423CCEB-DDF4-4755-B591-8F95FEC479F0@math.berkeley.edu> Mats, There are female t-shirts available with different necklines. (Part 3 of the offending t-shirt was "over the top". Please be respectful, even in humor.) Jenny On May 30, 2007, at 6:15 AM, Mats Persson wrote: > > > On 30 May 2007, at 11:54, Linda Dunn wrote: >> On May 30, 2007, at 6:03 AM, Mats Persson wrote: >>> Full complete display of all designs found here: [ http:// >>> www.imediatec.co.uk/tm/tshirts/ ] >>> And there's one specifically for the ladies as well ;-) >> >> Er...you say "The general idea of the various 'designs' is that >> they should remain tasteful and professional looking, so that you >> can wear them anytime." > > I also said "with a **heavy dose of tongue in cheek**" for the > first one :-) [ http://en.wikipedia.org/wiki/Tongue-in-cheek ] > > Yes, I admit it was a bit of an obvious joke, but hey it was meant > to get people smiling, not sighing/frowning. It was NOT meant as > the only one for the ladies! > > >> This is true for all the shirts except the ones for the ladies. >> (sigh). How about (radical idea here) the same design that you'd >> do for the guys (the rest of them are great), just sized for women? > > Linda, the rest of the T-shirts were classed as *Uni-sex* so they > were meant for both sexes. As for sizes, well I've got nothing to > do with that, so it's entirely up to those making them. (= Not me) > >> Without the tit jokes? Just a thought. :) > > One version of the same without the 'tit jokes' coming right up! > (Has also been added to the URL page) > > Just to clarify for everyone, in order to remove any > misunderstandings. > > The whole idea with this version is to play with Mac symbols, their > substitutions into words and the multitude of meanings that can be > construed from those words, within the TextMate scope, Life in > general and the English language. In other words, play on many > different levels, and therefore confound(?) the uninitiated, while > being an 'in-crowd joke' among us TM users. Yes, the message can > contain a naughty side, but that is down to your imagination ;-) > > The whole T-shirt design is both the front and the back as the > message needs to be intact. > > > > > > > > > > Kind regards, > > Mats > > ---- > "TextMate, coding with an incredible sense of joy and ease" > - www.macromates.com - > > > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From dsnyder at txstate.edu Wed May 30 15:09:00 2007 From: dsnyder at txstate.edu (David F. Snyder) Date: Wed, 30 May 2007 10:09:00 -0500 Subject: [TxMt] Experimental Wiki In-Reply-To: <58F62547-1503-4832-9981-20BD45D79913@macromates.com> Message-ID: On 5/30/07 2:18 AM, "Allan Odgaard" wrote: > On 30. May 2007, at 04:41, David F. Snyder wrote: > >> I've been playing with the 3rd party bundle Plain Text Wiki, but it >> doesn't >> seem to play nice with the fact that I modify some of the standard >> bundles >> (LaTeX templates and commands primarily). I've installed it in the >> standard >> place now, but then it will get wiped out upon update, right? > > Could you be more specific? How does it not play nice? And what is > ?the standard place?? > "the standard place" is TextMate.app/Contents/SharedSupport/Bundles. When I modify default bundles, a support directory is created in my user dir, per the manual. It seems at some point that the environment variable TM_SUPPORT_PATH was getting set to $HOME/Application Support/TextMate/ (though today I'm not able to get this behavior ... ?). To prevent problems I just copied the downloaded plaintextwiki.tmbundle into the Bundles subdirectory ("the standard place" to install it, rather than double clicking the tmbundle file. Now the bundle commands work. Not that I know how to do this (yet), but one thing that would make the Experimental Wiki bundle more attractive: a key to navigate the links on the page (including the "menu"). >> [...] >> >> It would be good to have the patch committed to the repository. > > Sure, please attach it :) > > Done. Best wishes David ---- David F. Snyder Texas State University, Math -------------- next part -------------- A non-text attachment was scrubbed... Name: Experimental Wiki.tmbundle.zip Type: application/octet-stream Size: 24506 bytes Desc: not available URL: From lists.cpruitt at cliffpruitt.com Wed May 30 16:06:55 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Wed, 30 May 2007 12:06:55 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <9FFF2A33-438A-47F6-9E9B-08DB60496656@mac.com> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> <3E8AD76E-8F61-4364-92F3-0! 4F9416! 36624@itendswith.com> <9FBDF2C0-9963-45EE-A965-45DD9603905B@imediatec.co.uk> <9FFF2A33-438A-47F6-9E9B-08DB60496656@mac.com> Message-ID: <7C356C6E-5606-4289-B429-E46FFF7D684D@cliffpruitt.com> On May 30, 2007, at 6:54 AM, Linda Dunn wrote: > This is true for all the shirts except the ones for the ladies. > (sigh). How about (radical idea here) the same design that you'd do > for the guys (the rest of them are great), just sized for women? > Without the tit jokes? Just a thought. :) Yeah, I have to side with Linda here. I've *had* it with these stupid stereotypes! Why do we think some people don't deserve equal attention just because their gender is different? How come guys never get to have shirts that make fun of our boobs??? I want a nipple- making-fun-of shirt NOW! Consider this an ultimatum... - Cliff From oblivious at subtlegradient.com Wed May 30 16:55:03 2007 From: oblivious at subtlegradient.com (Thomas Aylott (subtleGradient)) Date: Wed, 30 May 2007 12:55:03 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <4DB56123-3077-493C-9B35-E9650233F7E7@subtlegradient.com> References: <464CDBEE.9010308@gmail.com> <35265E2C-B5A0-47FE-A85E-B26C896FF567@gmail.com> <740695C2-F9D2-49E7-ABFF-C141F57D739C@cliffpruitt.com> <179CAF56-2462-4FE1-88A5-C109D7669D44@integrateddevcorp.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <473A1A46-E348-497C-8E6A-95F21F51258B@soffian.org> <17874282-2C4C-4B3F-A0D7-CA2E2867FFF5@hexten.net> <4DB56123-3077-493C-9B35-E9650233F7E7@subtlegradient.com> Message-ID: <84F9A0FC-CF47-4C58-AE8E-53E1F26C7D07@subtlegradient.com> This is a rough mockup of the shirt that I want. You guys can have fun with all your slogans and unicode characters, but it's just not my kind of thing. What I want: Purple shirt LARGE White flat vector version of the icon with textmate under this is just a very rough mockup of what it could look like (thanks for the psd mats!) obviously the final version wouldn't be all wobbly http://trippledoubleyou.subtlegradient.com/stuff/sG_TextMate-Shirt- purple_MOCKUP1.png ? thomas Aylott ? subtleGradient ? CrazyEgg ? sixteenColors -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: sG_TextMate-Shirt-purple_MOCKUP1.png Type: image/png Size: 21377 bytes Desc: not available URL: From digilord at mac.com Wed May 30 18:01:11 2007 From: digilord at mac.com (digilord at mac.com) Date: Wed, 30 May 2007 11:01:11 -0700 Subject: [TxMt] Project Sidebar Size Message-ID: Is there a way to make it so that the sidebar for a project stays the same size between invocations of TM? Daniel Morrigan "He who says it cannot be done is usually interrupting the one doing it." - Chinese Proverb -------------- next part -------------- An HTML attachment was scrubbed... URL: From steve at narbat.com Wed May 30 18:21:25 2007 From: steve at narbat.com (Steve King) Date: Wed, 30 May 2007 14:21:25 -0400 (EDT) Subject: [TxMt] new shirt ideas/slogans In-Reply-To: <7C356C6E-5606-4289-B429-E46FFF7D684D@cliffpruitt.com> References: <464CDBEE.9010308@gmail.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> <3E8AD76E-8F61-4364-92F3-0! 4F9416! 36624@itendswith.com> <9FBDF2C0-9963-45EE-A965-45DD9603905B@imediatec.co.uk> <9FFF2A33-438A-47F6-9E9B-08DB60496656@mac.com> <7C356C6E-5606-4289-B429-E46FFF7D684D@cliffpruitt.com> Message-ID: On Wed, 30 May 2007, Cliff Pruitt wrote: > Yeah, I have to side with Linda here. I've *had* it with these stupid > stereotypes! Why do we think some people don't deserve equal attention just > because their gender is different? How come guys never get to have shirts > that make fun of our boobs??? I want a nipple-making-fun-of shirt NOW! Oooh, I wish you hadn't said that... See attached. -- Steve King, -------------- next part -------------- A non-text attachment was scrubbed... Name: nurple.png Type: image/png Size: 41467 bytes Desc: URL: From muellerj at gmx.de Wed May 30 18:22:27 2007 From: muellerj at gmx.de (=?ISO-8859-1?Q?Jonas_M=FCller?=) Date: Wed, 30 May 2007 19:22:27 +0100 Subject: [TxMt] Re: Bug when viewing PDF files with PDFView In-Reply-To: <27811D94-B588-486C-8D22-1B7F592EF8AE@cam.ac.uk> References: <27811D94-B588-486C-8D22-1B7F592EF8AE@cam.ac.uk> Message-ID: Hello everyone, I was wondering if anyone else came across the same following behavior: When repeatedly typesetting a LaTeX file (e.g. when changing equations around), PDFView correctly updates the page in question but then jumps back to the first page (making it very annoying to scroll to the appropriate page again). I have only experienced this behavior with _some_ files, while others seem to work fine. Thanks for your help, Jonas M?ller -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2413 bytes Desc: not available URL: From harrison at Math.Berkeley.EDU Wed May 30 18:27:29 2007 From: harrison at Math.Berkeley.EDU (Jenny Harrison) Date: Wed, 30 May 2007 11:27:29 -0700 Subject: [TxMt] Re: Bug when viewing PDF files with PDFView In-Reply-To: References: <27811D94-B588-486C-8D22-1B7F592EF8AE@cam.ac.uk> Message-ID: <1FF07375-5FAE-4016-A3A0-DD53B43BAC13@math.berkeley.edu> On May 30, 2007, at 11:22 AM, Jonas M?ller wrote: > Hello everyone, > > I was wondering if anyone else came across the same following > behavior: When repeatedly typesetting a LaTeX file (e.g. when > changing equations around), PDFView correctly updates the page in > question but then jumps back to the first page (making it very > annoying to scroll to the appropriate page again). I have only > experienced this behavior with _some_ files, while others seem to > work fine. > > Thanks for your help, > Jonas M?ller > Try Skim. A new version came out this morning and it is now my default PDF viewer. You can find recent references to it in this list. Jenny From tylerhall at gmail.com Wed May 30 18:39:22 2007 From: tylerhall at gmail.com (Tyler Hall) Date: Wed, 30 May 2007 13:39:22 -0500 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> <9FBDF2C0-9963-45EE-A965-45DD9603905B@imediatec.co.uk> <9FFF2A33-438A-47F6-9E9B-08DB60496656@mac.com> <7C356C6E-5606-4289-B429-E46FFF7D684D@cliffpruitt.com> Message-ID: I'll probably get in trouble for using the TextMate logo without permission, but in lieu of an official t-shirt, I had this one printed up a few weeks ago. This one is actually dark, navy-blue (not black). It's just bad lighting in the picture :) http://flickr.com/photos/tylerhall/515388395/ Tyler On 5/30/07, Steve King wrote: > On Wed, 30 May 2007, Cliff Pruitt wrote: > > > Yeah, I have to side with Linda here. I've *had* it with these stupid > > stereotypes! Why do we think some people don't deserve equal attention just > > because their gender is different? How come guys never get to have shirts > > that make fun of our boobs??? I want a nipple-making-fun-of shirt NOW! > > Oooh, I wish you hadn't said that... See attached. > > -- > Steve King, > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > > -------------- next part -------------- A non-text attachment was scrubbed... Name: shirt.jpg Type: image/jpeg Size: 120548 bytes Desc: not available URL: From alex.j.ross at gmail.com Wed May 30 18:48:17 2007 From: alex.j.ross at gmail.com (Alex Ross) Date: Wed, 30 May 2007 11:48:17 -0700 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> <3E8AD76E-8F61-4364-92F3-0! 4F9416! 36624@itendswith.com> <9FBDF2C0-9963-45EE-A965-45DD9603905B@imediatec.co.uk> <9FFF2A33-438A-47F6-9E9B-08DB60496656@mac.com> <7C356C6E-5606-4289-B429-E46FFF7D684D@cliffpruitt.com> Message-ID: HAH! On May 30, 2007, at 11:21 AM, Steve King wrote: > On Wed, 30 May 2007, Cliff Pruitt wrote: > >> Yeah, I have to side with Linda here. I've *had* it with these >> stupid stereotypes! Why do we think some people don't deserve >> equal attention just because their gender is different? How come >> guys never get to have shirts that make fun of our boobs??? I want >> a nipple-making-fun-of shirt NOW! > > Oooh, I wish you hadn't said that... See attached. > > -- > Steve King, > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From lists.cpruitt at cliffpruitt.com Wed May 30 20:06:02 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Wed, 30 May 2007 16:06:02 -0400 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <6555BC34-F784-42C0-867D-769A9B4A9B94@subtlegradient.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> <3E8AD76E-8F61-4364-92F3-0! 4F9416! 36624@itendswith.com> <9FBDF2C0-9963-45EE-A965-45DD9603905B@imediatec.co.uk> <9FFF2A33-438A-47F6-9E9B-08DB60496656@mac.com> <7C356C6E-5606-4289-B429-E46FFF7D684D@cliffpruitt.com> Message-ID: <6BF2E28C-5B1B-4F3F-BD92-9282700DC332@cliffpruitt.com> OK... now tell me THAT shirt wouldn't be a conversation starter. ;-) - Cliff On May 30, 2007, at 2:21 PM, Steve King wrote: > On Wed, 30 May 2007, Cliff Pruitt wrote: > >> Yeah, I have to side with Linda here. I've *had* it with these >> stupid stereotypes! Why do we think some people don't deserve >> equal attention just because their gender is different? How come >> guys never get to have shirts that make fun of our boobs??? I want >> a nipple-making-fun-of shirt NOW! > > Oooh, I wish you hadn't said that... See attached. > > -- > Steve King, > > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate From lists.cpruitt at cliffpruitt.com Wed May 30 20:21:48 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Wed, 30 May 2007 16:21:48 -0400 Subject: [TxMt] Project Sidebar Size (branched thread) : Feature Request/Thoughts(?) Message-ID: <92C29B12-9CF3-4B06-B5E3-E74385E23225@cliffpruitt.com> OK I know this is a lame feature that probably only I would use, but here are my thoughts & maybe someone has a suggestion or maybe it could make its way into TextMate 9.1 or something... I know there are keyboard shortcuts to focus on the drawer and to show the drawer, but I'd love a shortcut to toggle the size of the drawer. By that I mean: Initial State: Project window with drawer of n px width. (TM "remembers" and saves this value) Closed State: Drawer is hidden, but project window resizes its width to fill the space that was once occupied by the drawer. Expanded state: project drawer increases its width until all items in the drawer are displayed without any ellipsis (...) characters. The window resizes (reduces) its width to make room for the drawer. In all of the modes the sum of window width + drawer width would remain equal. The reason I bring it up is that I almost always work with TM zoomed to fill the screen. Toggling the drawer on/off does not resize the window so it doesn't improve the size of the project window. Also, if I have several nested folders, it becomes difficult to read file names when the drawer is kept narrow. I'm constantly dragging folders from the drawer to the dock icon to open temporary sub-projects or revealing files in the finder just to view the files full names. I don't expect that this is something that enough people need to warrant major development time, but I thought I'd just voice my opinion. Maybe TM 2.0 will open up something that a plugin can use to handle this functionality? If anyone sees some obvious currently available solution I'm overlooking please let me know. - Cliff From ben at incomumdesign.com Thu May 31 03:55:10 2007 From: ben at incomumdesign.com (Benjamin Jackson) Date: Thu, 31 May 2007 00:55:10 -0300 Subject: [TxMt] RubyCocoa Bundle - Sending application's output to HTML Message-ID: Hey all, I'm currently working on the beginnings of of RubyCocoa Bundle, and trying to do something similar to the "Build and Run" script from the XCode Bundle: #!/bin/sh echo "" cd $TM_PROJECT_DIRECTORY && rake MyApp.app/Contents/MacOS/MyApp echo "" I've gotten to the point where I can run MyApp.app/Contents/MacOS/ MyApp and get the output, but only after the program has terminated. I know there's some way to get my traces to output while I'm running the program, but not sure how. Any pointers? Thanks, Ben From jeanpierre at gmail.com Thu May 31 04:19:04 2007 From: jeanpierre at gmail.com (jeanpierre at gmail.com) Date: Wed, 30 May 2007 21:19:04 -0700 Subject: [TxMt] RubyCocoa Bundle - Sending application's output to HTML In-Reply-To: References: Message-ID: On 5/30/07, Benjamin Jackson wrote: > > Hey all, > > I'm currently working on the beginnings of of RubyCocoa Bundle, and > trying to do something similar to the "Build and Run" script from the > XCode Bundle: > > #!/bin/sh > echo "" > cd $TM_PROJECT_DIRECTORY && rake > MyApp.app/Contents/MacOS/MyApp > echo "" > > I've gotten to the point where I can run MyApp.app/Contents/MacOS/ > MyApp and get the output, but only after the program has terminated. > I know there's some way to get my traces to output while I'm running > the program, but not sure how. Any pointers? Thanks, are you trying to launch rubycocoa applications and display output or are you trying to run a rubycocoa application within the textmate process? if the former, does the xcode bundle not work? i thought it just used the xcodebuild tool which should works for rubycocoa applications as well. if the latter, i think you'll need to initialize rubycocoa from within textmate and also load/run rubycocoa scripts inside textmate (otherwise you won't be able to interact with the window server). i wrote a plugin to do this (i wanted to write a bundle which could offer commands that made use of rubycocoa) but stalled at the point of creating a RubyCocoaMate or tweaked RubyMate to handle and present output. cheers, jean-pierre -------------- next part -------------- An HTML attachment was scrubbed... URL: From throw-away-1 at macromates.com Thu May 31 11:13:59 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Thu, 31 May 2007 13:13:59 +0200 Subject: [TxMt] Experimental Wiki In-Reply-To: References: Message-ID: On 30. May 2007, at 17:09, David F. Snyder wrote: >> Could you be more specific? How does it not play nice? And what is >> ?the standard place?? > "the standard place" is TextMate.app/Contents/SharedSupport/Bundles. That?s not ?standard?, that?s for default bundles only. See http://macromates.com/wiki/Troubleshooting/RevertToDefaultBundles for a walk-through of the various locations bundles can be stored. > When I modify default bundles, a support directory is created in my > user > dir, per the manual. No, TextMate does not create any local support directory. > It seems at some point that the environment variable > TM_SUPPORT_PATH was getting set to $HOME/Application Support/TextMate/ > (though today I'm not able to get this behavior ... ?). It would be $HOME/Application Support/TextMate/Support IFF (if and only if) a) you created that folder and b) it has a ?version? file with a version larger than of the default support dir. >>> [...] >>> It would be good to have the patch committed to the repository. >> Sure, please attach it :) > Done. Ah, back when I did this bundle, JS executions did not get the TM_* variables, that?s why I had to hardcode the path (which granted, would not work for all users). I?ve updated the script. From throw-away-1 at macromates.com Thu May 31 11:15:22 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Thu, 31 May 2007 13:15:22 +0200 Subject: [TxMt] Project Sidebar Size In-Reply-To: References: Message-ID: On 30. May 2007, at 20:01, digilord at mac.com wrote: > Is there a way to make it so that the sidebar for a project stays > the same size between invocations of TM? If you save the project, the drawer width should be in the tmproj file. From throw-away-1 at macromates.com Thu May 31 11:25:10 2007 From: throw-away-1 at macromates.com (Allan Odgaard) Date: Thu, 31 May 2007 13:25:10 +0200 Subject: [TxMt] Feature request In-Reply-To: <7DAA9C6C-D3FD-44C1-B522-429CF0A3119F@gmail.com> References: <7DAA9C6C-D3FD-44C1-B522-429CF0A3119F@gmail.com> Message-ID: <335CAFC5-DBF2-414A-ACA8-3D7B21A55C6D@macromates.com> On 28. May 2007, at 10:02, Xavier Cambar wrote: > [...] I was wondering if there wasn't a way to create project > snippets, not stored in a particular bundle, but (e.g.) in the > project file, so every time a projec is open, the custom commands > are available. It?s not an uncommon request, and I am thinking about it (and a few other ways that bundles would not have to be tied to ~/Library), but there are a lot of details I am not sure how to go about (so unlikely to be in 2.0, but maybe 2.n). From singletoned at gmail.com Thu May 31 12:04:00 2007 From: singletoned at gmail.com (Ed Singleton) Date: Thu, 31 May 2007 13:04:00 +0100 Subject: [TxMt] Caps Lock as Ctrl key doesn't work for all combos In-Reply-To: <71E894C8-D04A-4835-B6D9-B77F932DD871@gmail.com> References: <71E894C8-D04A-4835-B6D9-B77F932DD871@gmail.com> Message-ID: <34bb7f5b0705310504v584f7496o5cfdba5417b04d3b@mail.gmail.com> On 5/30/07, Jon Larkowski wrote: > I've mapped my Caps Lock key to act as the Ctrl key (in Keyboard & > Mouse preferences > Modifier Keys...). Problem is, not all TextMate > combos work with this. > > [Hear me now, believe me later. I had an old Sun keyboard that was > laid out this way, and it's the only way to fly. Especially on the > MacBook Pro where the normal Ctrl key is quite inconvenient to hit.] I like the sound of this, and I'm going to try it for a while. My Caps Lock is currently disabled anyway (I don't think I've ever seen anyone use caps lock except by accident). [1] I've always wanted the caps lock to be replaced by an alternative tab, so that you could have one tab button for the tab character and another for moving around form items and such. Ed [1] Actually, I do remember once, a long time, working with someone who used caps lock for every capital letter she wrote. She also used the space bar to delete things (if you select text and press the space bar, the text goes away). Her filenames would often have upto eight spaces in a row in them. From buname at gmail.com Thu May 31 13:49:45 2007 From: buname at gmail.com (Emmanuel Borlet) Date: Thu, 31 May 2007 15:49:45 +0200 Subject: [TxMt] PHP Project Functions - "Dion Almaer" Message-ID: <962535cf0705310649t5121a63ei364f284a3335f0c0@mail.gmail.com> helo i would like to use ---------- PHP Project Functions - "Dion Almaer" Goes through the project directory and groks out all functions. If you select some text it will narrow it to that. Before running command: Nothing Command(s): grep -E -n -r --include=\*.php --exclude=.svn "function ${TM_SELECTED_TEXT:-$TM_CURRENT_WORD}\w+\s*\(" ${TM_PROJECT_DIRECTORY:-$TM_DIRECTORY} Standard input: None Standard output: Show in separate window Pattern: ^(.+):(\d+):(.*)$ Format String: $1, line $2: $3 File Register: 1 Line: 2 ------------ finded there : but it didn't work can you help me ? From xcambar at gmail.com Thu May 31 15:07:34 2007 From: xcambar at gmail.com (Xavier Cambar) Date: Thu, 31 May 2007 17:07:34 +0200 Subject: [TxMt] pbs with LaTeX labels Message-ID: Hello Ladies and Gentlemen, Is there a way to substitute an accented character by its non- accented equivalent with a regular expression? I'm asking because the LaTeX snippets for sectioning (cha, sec, sub, subs, ...) automatically generate the label associated with a newly created environment, but unfortunately the regexp used for this keeps the characters accented. Beacause of this, it requires to correct manually the label in order for LaTeX to accept it for compilation. Is it fixable? Xavier Cambar From chuck.esterbrook at gmail.com Thu May 31 15:11:07 2007 From: chuck.esterbrook at gmail.com (Chuck Esterbrook) Date: Thu, 31 May 2007 08:11:07 -0700 Subject: [TxMt] Open command Message-ID: <94cdd26f0705310811w1bb22391t7ab54bfda819f8ea@mail.gmail.com> When I hit Command+O, the directory I'm put in is the one for the project, but I would prefer that the directory match the file that I'm currently editing (which is often in a subdirectory of the project). I guess that most of the time I open a file, I'm opening a sibling to the file I'm currently editing. I have this behavior with UltraEdit on Windows and find it quite productive. -Chuck From bibiko at eva.mpg.de Thu May 31 15:24:49 2007 From: bibiko at eva.mpg.de (Hans-Joerg Bibiko) Date: Thu, 31 May 2007 17:24:49 +0200 Subject: [TxMt] pbs with LaTeX labels In-Reply-To: References: Message-ID: <86DB0F1B-73A4-48F0-9187-F2A50BA781E6@eva.mpg.de> On 31 May 2007, at 17:07, Xavier Cambar wrote: > > Is there a way to substitute an accented character by its non- > accented equivalent with a regular expression? > As far as I know it would be very tricky. By myself I use perl for that: Write a command: Input: Selected Text or Document Output: Replace Selected Text Command: perl -e' use Unicode::Normalize; use utf8; no warnings; binmode (STDIN, ":utf8"); binmode (STDOUT, ":utf8"); while(<>){ $_=NFKD($_); s/[\x{0300}-\x{0362}]//g; # combining diacritics s/\x{3099}//g;s/\x{FF9E}//g;s/\x{309B}//g; # Japanese voiced mark s/\x{309A}//g;s/\x{309C}//g;s/\x{FF9F}//g; # Japanese semi-voiced mark print; } ' You can delete the Japanese stuff. The function NFKD decompose any character with a diacritic into its base character plus the diacritics as combining form according to the Unicode specification. The next is simply delete all combining diacritics. Please note, this will delete ALL diacritics, i.e cedilla, diaereses, acute, grave, macron, hook, ogonek etc.! I guess you have to install the Perl library Unicode::Normalize in beforehand via CPAN, but I don't know this exactly. How to apply this to the LaTeX snippets for sectioning, I don't know, but maybe my hint helps. Best, Hans From dsnyder at txstate.edu Thu May 31 15:38:37 2007 From: dsnyder at txstate.edu (David F. Snyder) Date: Thu, 31 May 2007 10:38:37 -0500 Subject: [TxMt] Experimental Wiki In-Reply-To: Message-ID: On 5/31/07 6:13 AM, "Allan Odgaard" wrote: > [...] > That?s not ?standard?, that?s for default bundles only. > > See http://macromates.com/wiki/Troubleshooting/RevertToDefaultBundles > for a walk-through of the various locations bundles can be stored. > Oops, /Library/Application Support/TextMate/Bundles is the standard place for adding bundles, true dat. You never know what your "children" are up to! :) I noticed that if the Exp. Wiki bundle is added using the BundleInstaller bundle then the patch doesn't work (or it didn't for me) but installing the bundle per the manual (into /Library/... Instead of ~/Library/.../Pristine Copy/) worked fine. What's up with that? Best wishes David From lists.cpruitt at cliffpruitt.com Thu May 31 17:24:44 2007 From: lists.cpruitt at cliffpruitt.com (Cliff Pruitt) Date: Thu, 31 May 2007 13:24:44 -0400 Subject: [TxMt] Open command In-Reply-To: <94cdd26f0705310811w1bb22391t7ab54bfda819f8ea@mail.gmail.com> References: <94cdd26f0705310811w1bb22391t7ab54bfda819f8ea@mail.gmail.com> Message-ID: On May 31, 2007, at 11:11 AM, Chuck Esterbrook wrote: > When I hit Command+O, the directory I'm put in is the one for the > project, but I would prefer that the directory match the file that I'm > currently editing (which is often in a subdirectory of the project). > > I guess that most of the time I open a file, I'm opening a sibling to > the file I'm currently editing. I have this behavior with UltraEdit on > Windows and find it quite productive. > > -Chuck I'm not quite sure I understand what you're asking. Cmd+O is just a generic open command. The directory you are shown is the last directory that TextMate remembers you opening something from. If you've already got a project open (re: "which is often in a subdirectory of the project") why not use the file drawer to just click the file? - Cliff From pierodancona at gmail.com Thu May 31 18:28:52 2007 From: pierodancona at gmail.com (Piero D''Ancona) Date: Thu, 31 May 2007 18:28:52 +0000 (UTC) Subject: [TxMt] question: save hook Message-ID: I'd like to do a series of things automatically each time I save a modified file. E.g. change the name of the file adding a timestamp to it, etc. What is the simplest way? Probably to create a command which does all the stuff, and assign the shortcut CMD-S to it. I do not like this idea, emacs' hook mechanism sounds the right way to achieve this, but I could live with it. Anyway: how can I say TextMate to save the open (modified) file? I mean, from inside my command? Thanks, Piero From henrik at nyh.se Thu May 31 18:31:35 2007 From: henrik at nyh.se (Henrik Nyh) Date: Thu, 31 May 2007 20:31:35 +0200 Subject: [TxMt] question: save hook In-Reply-To: References: Message-ID: On 31/05/07, Piero D''Ancona wrote: > I'd like to do a series of things automatically > each time I save a modified file. E.g. change > the name of the file adding a timestamp to it, > etc. What is the simplest way? Probably to > create a command which does all the stuff, and > assign the shortcut CMD-S to it. I do not > like this idea, emacs' hook mechanism sounds > the right way to achieve this, but I could live with it. > > Anyway: how can I say TextMate to save the > open (modified) file? I mean, from inside my > command? Right at the top in the Bundle Editor, it says "Save: Nothing/Current File/All Files in Project". Just set the value to "Current File". From pierodancona at gmail.com Thu May 31 18:35:40 2007 From: pierodancona at gmail.com (Piero D''Ancona) Date: Thu, 31 May 2007 18:35:40 +0000 (UTC) Subject: [TxMt] Re: question: save hook References: Message-ID: Henrik Nyh writes: > Right at the top in the Bundle Editor, it says "Save: Nothing/Current > File/All Files in Project". Just set the value to "Current File". right!... thank you Piero From ben at incomumdesign.com Thu May 31 19:17:14 2007 From: ben at incomumdesign.com (Benjamin Jackson) Date: Thu, 31 May 2007 16:17:14 -0300 Subject: [TxMt] Re: RubyCocoa Bundle - Sending application's output to HTML In-Reply-To: References: Message-ID: <9EF38D39-345E-4687-9E87-4F0978A84643@incomumdesign.com> > > are you trying to launch rubycocoa applications and display output > or are you trying to run a rubycocoa application within the > textmate process? > > if the former, does the xcode bundle not work? i thought it just > used the xcodebuild tool which should works for rubycocoa > applications as well. > > if the latter, i think you'll need to initialize rubycocoa from > within textmate and also load/run rubycocoa scripts inside textmate > (otherwise you won't be able to interact with the window server). i > wrote a plugin to do this (i wanted to write a bundle which could > offer commands that made use of rubycocoa) but stalled at the point > of creating a RubyCocoaMate or tweaked RubyMate to handle and > present output. > > cheers, > jean-pierre > > The former. I'd use the xcode bundle but I wanted to use Rake to develop a more generalized build language instead of worrying about binary XCode projects. any ideas? I'm happy to work with you on this. take care, Ben From rick at alpinenetworking.com Thu May 31 21:43:39 2007 From: rick at alpinenetworking.com (Rick Gigger) Date: Thu, 31 May 2007 15:43:39 -0600 Subject: [TxMt] Re: Textmate for remote files In-Reply-To: <41DDC678-280E-4183-A468-D888EB4E5923@minimaldesign.net> References: <20070530120013.D46E86B13@comox.textdrive.com> <41DDC678-280E-4183-A468-D888EB4E5923@minimaldesign.net> Message-ID: <465F418B.2020300@alpinenetworking.com> Yann B wrote: > >> I too am a huge (unfortunate) fan of working on remote files... >> >> This topic has been discussed at great length. Since it is apparent none >> >> of the existing solutions work nicely and as elegantly as working on >> local >> >> code we all have come up with less than ideal solutions for solving this >> >> problem. I for example use RBrowser because I like that - but again >> it is >> >> less than perfect. So.. We need a better solution. Writing down the >> >> short list of requirements >> >> - Tie to Textmate - very closely >> >> - Allow me to easily create a project out of remote files >> >> - Allow me to add remote files >> >> - Allow me to search those remote files >> >> - Save the file back >> >> - Connect via ssh >> >> - Should be able to routinely (background) poll the remote system >> >> and determine the status of the file. This should be able to be turned >> >> off or time adjusted based on user needs. I wouldn't need this per se. >> >> - Should have an integrated browser mechanism which 1) gets on a >> >> remote system (ssh) 2) allows you to traverse a remote file system >> >> - Might want to be able to bind a command to a save ( svn >> commit ) >> >> feature >> >> - Might want to be able to bind a command to the file status ( p4 >> >> fstat ) feature >> >> >> OK what do we need to add shorten or comment on?? Perhaps the >> cyberduck / >> >> rbrowser / macfuse / Olrik folks are listening. I think David Olrik's >> >> solution is a decent start but needs a bit more polishing. A better >> >> solution can't be far off.. >> >> >> >> Thoughts?? >> > > At this point (unless TextMate 2.0 addresses the issue ;) I think > MacFuse pretty much solves everything, so the single one change that I > would like to see in textmate is a mechanism to stop and/or set > intervals on the project directory scanning routine. I have no idea what > that would entail or if it's even feasible, so forgive me Allan if what > I'm saying is ludicrous... ;) That single change would make MacFuse > usable on projects that have more than 5 files... and solve > everything... no? I agree that would be SUCH nice feature. Obviously I don't know how it works, but couldn't you just take the code that causes a directory scan on focus and disable it. Then worst case have a menu command to refresh it? Also couldn't you get notifications directly from the file system when something changes, just like spotlight does? What is the point of the full directory scan? There must be some reason that it is the way it is, but it is very strange to me, and is somewhat of a black eye on what is other wise one of the best pieces of software I've ever used. From contact at helmutgranda.com Thu May 31 22:25:42 2007 From: contact at helmutgranda.com (Helmut Granda) Date: Thu, 31 May 2007 17:25:42 -0500 Subject: [TxMt] new shirt ideas/slogans In-Reply-To: References: <464CDBEE.9010308@gmail.com> <9043807B-84CE-4856-9B80-E87CF3ED62A4@subtlegradient.com> <4069D0C6-09F2-42BE-9371-F6EE7B574083@math.sfsu.edu> <24C5E995-DC03-4989-AECC-C7536650A193@math.berkeley.edu> <9FBDF2C0-9963-45EE-A965-45DD9603905B@imediatec.co.uk> <9FFF2A33-438A-47F6-9E9B-08DB60496656@mac.com> <7C356C6E-5606-4289-B429-E46FFF7D684D@cliffpruitt.com> Message-ID: They look like nipples... On 5/30/07, Steve King wrote: > > On Wed, 30 May 2007, Cliff Pruitt wrote: > > > Yeah, I have to side with Linda here. I've *had* it with these stupid > > stereotypes! Why do we think some people don't deserve equal attention > just > > because their gender is different? How come guys never get to have > shirts > > that make fun of our boobs??? I want a nipple-making-fun-of shirt NOW! > > Oooh, I wish you hadn't said that... See attached. > > -- > Steve King, > > ______________________________________________________________________ > For new threads USE THIS: textmate at lists.macromates.com > (threading gets destroyed and the universe will collapse if you don't) > http://lists.macromates.com/mailman/listinfo/textmate > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeanpierre at gmail.com Thu May 31 22:51:18 2007 From: jeanpierre at gmail.com (jeanpierre at gmail.com) Date: Thu, 31 May 2007 15:51:18 -0700 Subject: [TxMt] Re: RubyCocoa Bundle - Sending application's output to HTML In-Reply-To: <9EF38D39-345E-4687-9E87-4F0978A84643@incomumdesign.com> References: <9EF38D39-345E-4687-9E87-4F0978A84643@incomumdesign.com> Message-ID: On 5/31/07, Benjamin Jackson wrote: > > > > [?] > > if the former, does the xcode bundle not work? i thought it just > > used the xcodebuild tool which should works for rubycocoa > > applications as well. > > [?] > > The former. I'd use the xcode bundle but I wanted to use Rake to > develop a more generalized build language instead of worrying about > binary XCode projects. > > any ideas? I'm happy to work with you on this. take care, well, i'll describe my workflow a bit and maybe we can come up with something. rather than replace the xcode project file, i augment it with a series of rake tasks. the xcode project still provides great organization and i'd really rather not try and memorize all those flags/settings adn replicate a lot of the structure it provides. i've just wrapped the xcodebuild tool in some rake tasks which dynamically publish targets and configurations. additionally i have tasks for generating bridge support files and some ruby bits like rspec/mocha/rcov and what not. i'd like to build a base set of rake tasks into rubycocoa and have the project templates provide you with a stub (much like rails does) as well. which part of the development cycle did you want to use rake for? building, launching the build product, testing? cheers, jean-pierre -------------- next part -------------- An HTML attachment was scrubbed... URL: From lmcdougall at yahoo.com Thu May 31 15:45:16 2007 From: lmcdougall at yahoo.com (luismcdougall) Date: Thu, 31 May 2007 08:45:16 -0700 (PDT) Subject: [TxMt] PHP echo wrap Message-ID: <10896573.post@talk.nabble.com> I find my self wrapping html code very frequently. It is a pain but I do not know how to work with regex, Basically I need to use echo "" to wrap the html code and escape all of the other " in it. can someone help me? Please. -Thansk -L -- View this message in context: http://www.nabble.com/PHP-echo-wrap-tf3847294.html#a10896573 Sent from the textmate users mailing list archive at Nabble.com.