active questions tagged textmate - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T03:44:56Zhttp://stackoverflow.com/feeds/tag/textmatehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/413330/fastest-way-to-jump-back-to-a-file-in-textmate0Fastest way to "jump back" to a file in TextMate?Fred2009-01-05T14:51:06Z2009-12-04T08:16:43Z
<p>Often, when I am reading code or debugging, I want the ability to quickly jump around files. I especially want to "go back" to where I was. I know about "Command+T", "Command+Shift+T", and, bookmarks. But, I cannot figure out a way to jump around files quickly.</p>
<p>UPDATE: I do not think I my question was clear enough judging by two answers given. Specifically, I am looking for a way to "jump back" to where I was in a file. I know how to navigate in TextMate (in general). I want to know if TextMate has a "jump back" key binding.</p>
http://stackoverflow.com/questions/1827605/having-textmate-warn-me-when-writing-to-a-file-that-was-modified-since-textmate-l0Having Textmate warn me when writing to a file that was modified since Textmate last read it [closed]emm2009-12-01T17:13:08Z2009-12-01T17:17:53Z
<p>Scenario:</p>
<p>I open a file, I edit it. After I began editing, the file is modified by another program. Finally, I save the file.</p>
<p>In that case, Vim would provide that helpful warning:</p>
<blockquote>
<p>WARNING: The file has been changed since reading it</p>
<p>Do you really want to write to it (y/n)?</p>
</blockquote>
<p>But Textmate will overwrite the file silently, which can result in unpleasant data loss (in my case, a <em>de facto</em> revert on Git). How can I prevent that?</p>
http://stackoverflow.com/questions/1824621/textmate-open-file-at-caret0Textmate, open file at CaretStu2009-12-01T07:50:21Z2009-12-01T07:50:21Z
<p>I bet this is really obvious but I can't find how to open the linked file that the Caret is currently on in Textmate. For example in the likes of Dreamweaver you can click in the index.html portion of <code><a href"index.html"</code> hit cmd-D and it opens this file in a new tab. Is this possible? </p>
<p>Would also be good to do this with <code><img src="image.jpg"</code> to open the file directly into Photoshop.</p>
http://stackoverflow.com/questions/1596615/get-filename-without-extension-textmade-bundle-editor0Get filename without extension, textmade bundle editorrpflo2009-10-20T18:52:47Z2009-11-27T16:51:50Z
<p>Thought this might work:</p>
<pre><code>${TM_FILENAME/(.+?)(\.[^.]*$|$)/}
</code></pre>
<p>But it's giving me this error:</p>
<pre><code>Error Parsing Snippet
line 1:257: expecting regexp options, found ''
</code></pre>
<p>Any tips?</p>
http://stackoverflow.com/questions/1755069/git-commit-a-on-mac-hangs-when-textmate-is-quitted0git commit -a on Mac hangs when TextMate is quittedGlyn Normington2009-11-18T10:31:10Z2009-11-24T12:55:27Z
<p>I have core.editor set to "mate -w". On Leopard, git commit -a starts TextMate. After entering a commit log message, saving (Cmd-S), and quitting (Cmd-Q) TextMate, git would successfully complete the commit operation using the entered commit log message.</p>
<p>Since upgrading to Snow Leopard (Mac OS X 10.6.2), the behaviour has changed. After quitting TextMate, git commit hangs (consuming 0% CPU) and needs to be cancelled with Ctrl-C.</p>
<p>The same happens if core-editor is not set and $EDITOR is set to "mate" or "mate -w".</p>
<p>A workaround is to quit just the current TextMate window by hitting Ctrl-W rather than Ctrl-Q after saving the commit log message, but I'd like to understand the difference in behaviour (especially as my fingers are now trained with the Cmd-S Cmd-Q sequence) and get a fix as many other people are likely to run into this.</p>
<p>The #git IRC channel (referenced on the <a href="http://git-scm.com/" rel="nofollow">git home page</a>) was some help. They got me to set $GIT_TRACE to 1 which showed the following trace:</p>
<pre><code>git commit -a
trace: built-in: git 'commit' '-a'
trace: run_command: 'sh' '-c' 'mate -w "$@"' 'mate -w' '.git/COMMIT_EDITMSG'
^C
</code></pre>
<p>(Also, on another Mac running Leopard in the past, git commit used to continue after I quitted TextMate, but then git would not find the commit log message and it would abort the commit. This seems to be a distinct problem, but it hints that the interaction between git commit and the editor is imperfect.)</p>
http://stackoverflow.com/questions/1783315/how-to-enable-ruby-methods-visualizing-in-vim1How to enable ruby methods visualizing in vimlipry2009-11-23T14:08:02Z2009-11-24T08:33:21Z
<p>Hi, a have googled the question, but found nothing - maybe I do not know how to define the search keywords properly in this case.</p>
<p>I like to use folding in vim when I'm developing Ruby on Rails applications. And my foldcolumn is set to 4. But its visualizing of the start and the end of the ruby method is not so simple and obvious ("-" - "def", "|" - "end"):</p>
<pre><code>-def foo
bar = 1
|end
</code></pre>
<p>The question is - is there any plugin for vim, that will show markers (arrows or stmh) near every "def" and "end" like it is done in TextMate (<a href="http://manual.macromates.com/images/show%5Fscope.png" rel="nofollow">1</a>)?</p>
<pre><code>v def foo
bar = 1
^ end
</code></pre>
<p>Also, as I do not have much experience in vim/ruby, maybe there is another, more elegant way to check that all def-end pairs are closed in a particular file? (matchit.vim is not very comfortable for this need)
I hope there is more convenient way to catch lost "ends" than to read "Syntax error" in the console :)</p>
http://stackoverflow.com/questions/1778901/textmate-railscast-theme-and-font0textmate railscast theme and font?Jason2009-11-22T14:49:38Z2009-11-23T14:00:54Z
<p>where can I get the textmate rails theme and font used on Railscast?</p>
http://stackoverflow.com/questions/1775954/using-python-3-1-with-textmate2Using Python 3.1 with TextMateNimbuz2009-11-21T16:34:17Z2009-11-21T20:17:07Z
<p>TextMate seems to use the built-in Python version I assume (sys.path doesn't work). How do you configure it to use 3.1 instead? I've already installed the 3.1 package and I can use IDLE for interactive sessions, but I need to use TextMate now.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1757181/code-folding-on-consecutive-collect-select-reject-each1Code folding on consecutive collect/select/reject/eachvrinek2009-11-18T16:18:42Z2009-11-19T14:39:47Z
<p>I play around with arrays and hashes quite a lot in ruby and end up with some code that looks like this:</p>
<pre><code>sum = two_dimensional_array.select{|i|
i.collect{|j|
j.to_i
}.sum > 5
}.collect{|i|
i.collect{|j|
j ** 2
}.average
}.sum
</code></pre>
<p>(Let's all pretend that the above code sample makes sense now...)</p>
<p>The problem is that even though TextMate (my editor of choice) picks up simple <code>{...}</code> or <code>do...end</code> blocks quite easily, it can't figure out (which is understandable since even I can't find a "correct" way to fold the above) where the above blocks start and end to fold them.</p>
<p>How would you fold the above code sample?</p>
<p>PS: considering that it could have 2 levels of folding, I only care about the outer consecutive ones (the blocks with the i)</p>
http://stackoverflow.com/questions/1241396/can-textmate-find-matching-opening-and-closing-tags0Can TextMate find matching opening and closing tags?johnny2009-08-06T20:57:12Z2009-11-14T05:00:02Z
<p>Something I liked in Visual Studio was that I could click an opening tag, say and it would do its best to highlight in bold the closing tag. Does anyone know if you can do that in textmate? I searched an looked but cannot find it.</p>
<p>It gets hard to find the closing tag many DIVs deep. </p>
<p>If TextMate won't do it, can anyone tell me an editor on Mac that will?</p>
<p>Thank you for any help.</p>
<p>EDIT: If it can do it, can someone please tell me how? Thanks again.</p>
http://stackoverflow.com/questions/1022579/whats-so-great-about-textmate6What's so great about TextMate?musicfreak2009-06-20T21:17:50Z2009-11-10T16:07:09Z
<p>Almost every developer that uses a Mac practically worships TextMate. Why? What extraordinary features does it have that other text editors and IDEs don't? I did a quick search and the only really useful feature that I found that most other editors lack is the column selection option, but I wouldn't use a certain editor just for that. What makes TextMate so amazing?</p>
http://stackoverflow.com/questions/1686197/emacs-session-projects-window-management4Emacs session / projects / window managementCezar2009-11-06T08:28:44Z2009-11-08T05:08:52Z
<p>Hello,</p>
<p>I am working with Ruby on Rails projects most of the time so I need a way to save projects and the state of the buffers/windows I am working on, mostly because I often find myself switching to a different project for a few minutes and then going back to the project I was working on. Desktop.el seems to be very close except for the window configuration saving.</p>
<p>For those familiar with TextMate, I'm looking for something like the textmate project files that you can open and they open a different instance of the editor that only opens the files in that project.</p>
<p>Thanks,
Cezar</p>
http://stackoverflow.com/questions/1675132/shell-script-to-grab-selected-text-and-alter-it0Shell script to grab selected text and alter it?thatryan2009-11-04T16:48:47Z2009-11-06T19:08:04Z
<p>How can I make a shell script that will know where the caret is and grab selected text, so I can wrap the text in something? For example, this is a script from a Textmate bundle:</p>
<pre><code><${1:p}>$TM_SELECTED_TEXT</${1/\s.*//}>
</code></pre>
<p>It grabs the text and wraps it in open/close HTML tags. And it is variable so the second tag is mirrored as you type the first.
I want to make a script like this but outside of Textmate so I can use it in TextEXpander.<br>
Does this make sense ? :)</p>
http://stackoverflow.com/questions/64387/how-can-i-perform-an-action-n-many-times-in-textmate-both-emacs-and-vim-can-do3How can I perform an action n-many times in TextMate ( both Emacs and Vim can do it easily! )?Steven G Harms2008-09-15T16:23:29Z2009-11-04T21:26:29Z
<p><strong>Emacs</strong>: <code>C-U (79) #</code> » a pretty 79 character length divider</p>
<p><strong>VIM</strong>: <code>79-i-# </code> » see above</p>
<p><strong><a href="http://macromates.com/" rel="nofollow">Textmate</a></strong>: ????</p>
<p>Or is it just assumed that we'll make a Ruby call or have a snippet somewhere?</p>
http://stackoverflow.com/questions/1651502/ways-to-speed-up-textmate-on-large-rails-projects1Ways to speed up TextMate on large rails projects?Bob Walsh2009-10-30T18:21:57Z2009-10-30T23:38:55Z
<p>Is there any way to improve the performance of TextMate when a large project is open? Making it the active app is taking about 10 second each and every time.</p>
http://stackoverflow.com/questions/1626168/sass-syntax-highlighting-does-not-work-when-bundle-is-installed-along-with-hamls0SASS syntax highlighting does not work when bundle is installed along with HAML's in Textmate?snl2009-10-26T17:32:58Z2009-10-30T16:35:17Z
<p>I've encountered this issue on two different machines and can't figure out what the cause is.</p>
<p>SASS syntax highlighting works fine in TextMate when I install a SASS bundle like <a href="http://github.com/seaofclouds/sass-textmate-bundle" rel="nofollow">this</a>. However, when I also install a HAML bundle, like <a href="http://github.com/handcrafted/handcrafted-haml-textmate-bundle" rel="nofollow">this one</a>, SASS code reverts to plain text color.</p>
<p>I've tried a bunch of different combinations of bundles out there, all with the same lousy result.</p>
<p>Any idea what I may be doing wrong here?</p>
http://stackoverflow.com/questions/1607359/textmate-jump-to-latest-modification1TextMate - jump to latest modificationMichal2009-10-22T13:49:46Z2009-10-29T16:25:49Z
<p>is there any way of quick jump to the last modified line? eclipse has it bound to ctrl-q and I find it very usefull while navigating between multiple files. for example, when i need to check something in other file, with ctrl-q i'm able to return immediately to the place where I was writing something before.</p>
http://stackoverflow.com/questions/1633199/java-code-formatting-in-textmate1Java Code Formatting in TextmateVinod2009-10-27T19:42:23Z2009-10-27T22:26:01Z
<p>Is there a way/bundle/shortcut to format the Java Source in TextMate?
(As we do with Shift+Command+F in Eclipse).</p>
http://stackoverflow.com/questions/1632554/textmate-snippet-to-mirror-only-matched-characters0TextMate Snippet to Mirror Only Matched CharactersRiddian2009-10-27T17:51:38Z2009-10-27T17:51:38Z
<p>I have been trying unsuccessfully to mirror text that only matches "a-z0-9" using the following code:</p>
<pre><code>${1/[a-z]/$0/}${1}
</code></pre>
<p>After the snippet has been tab triggered I would expect to type "$test" and see "test" mirrored.</p>
<p>Any clues?
Many thanks!</p>
http://stackoverflow.com/questions/1629711/can-anyone-explain-this-javascript-textmate-snippet-to-me-please0can anyone explain this javascript textmate snippet to me pleaseYousui2009-10-27T09:45:30Z2009-10-27T10:02:41Z
<p>hi all,
the following code is a textmate javascript snippet, can anyone explain it please? cuz i want to use this feature in my own snippets. greate thanks.</p>
<pre><code>document.getElement${1/(T)|.*/(?1:s)/}By${1:T}${1/(T)|(I)|.*/(?1:agName)(?2:d)/}("$2")
</code></pre>
http://stackoverflow.com/questions/1338525/textmate-not-picking-up-path0Textmate not picking up PATHDaniel Huckstep2009-08-27T02:14:32Z2009-10-26T18:00:02Z
<p>Textmate does not source my .profile file. I don't have a custom bash_init.rb, nor do I have a .bash_profile or .bash_login in my home directory (the other two files it checks first).</p>
<p>My .profile gets sourced properly when I start up terminal</p>
http://stackoverflow.com/questions/1618337/textmates-jump-to-function-in-vim0TextMate's Jump to Function in VIM?Patrick O'Doherty2009-10-24T15:49:56Z2009-10-25T13:38:43Z
<p>Hi guys,</p>
<p>Recently I've been trying my hand at using vim instead of TextMate and one of the features that I've missed most in VIM is TextMate's jump to method function (CMD + Shift + T for those who don't know). From looking around I havn't seen any particular way to emulate this functionality and was wondering if anyone here has had experience with this sort of functionality in VIM. </p>
<p>Thanks in advance for any answers</p>
<p>Patrick</p>
http://stackoverflow.com/questions/1619229/python-svn-windows-mac-invalid-syntax0Python + SVN + Windows/Mac = Invalid syntax?bluenote2009-10-24T21:44:05Z2009-10-25T00:58:55Z
<p>I'm pretty sure the following error is related to the fact that I'm sharing code via SVN with a colleague that is using a Windows system. </p>
<p>Myself, I use Python on Mac, editing with TextMate.</p>
<pre><code>#!/usr/bin/python
import os
from google.appengine.api import users
from google.appengine.ext import webapp
...
</code></pre>
<p>When running that code, I get a syntax error:</p>
<pre><code>events.py:2 invalid syntax
</code></pre>
<p>Is there an end-of-line issue when using SVN? </p>
<p>Thankful for every hint.</p>
<p><hr /></p>
<p><strong>edit</strong></p>
<p>The problem seems not to be caused by SVN.</p>
<p>Interestingly, executing directly at the Shell, there's no Syntax Error. But both validating with Textmate (using PyCheckMate) and trying to launch with GoogleAppEngineLauncher return the error.</p>
http://stackoverflow.com/questions/1586233/how-can-i-add-the-watch-flag-to-this-textmate-snippet1How can I add the "--watch" flag to this TextMate snippet?Jannis2009-10-18T22:35:23Z2009-10-22T14:21:31Z
<p>I love TextMate as my editor for all things web, and so I'd like to use a snippet to use it with <code>style.less</code> files to automatically take advantage of the .less way of compiling .css files on the fly using the native </p>
<p><code>$ lessc {filepath} --watch</code></p>
<p>as suggested in the less documentation (<a href="http://lesscss.org/docs.html" rel="nofollow">link</a>)</p>
<p>My (thanks to someone who wrote the LESS TM Bundle!) current TextMate snippet works well for writing the currently opened .less file to the .css file but I'd like to take advantage of the <code>--watch</code> parameter so that every change to the .less file gets automatically compiled into the .css file.</p>
<p>This works well when using the Terminal command line for it, so I am sure it must be possible to use it in an adapted version of the current LESS Command for TextMate since that only invokes the command to compile the file.</p>
<p>So how do I add the <code>--watch</code> flag to this command:?</p>
<pre><code>#!/usr/bin/env ruby
file = STDIN.read[/lessc: ([^*]+\.less)/, 1] || ENV["TM_FILEPATH"]
system("lessc \"#{file}\"")
</code></pre>
<p>I assume it should be something like:</p>
<pre><code>#!/usr/bin/env ruby
file = STDIN.read[/lessc: ([^*]+\.less)/, 1] || ENV["TM_FILEPATH"]
system("lessc \"#{file}\" --watch")
</code></pre>
<p>But doing so only crashes the TextMate.app.</p>
<p>Any ideas would be much appreciated.</p>
<p>Thanks for reading.</p>
<p>Jannis</p>
http://stackoverflow.com/questions/1134653/textmate-using-tmctags-bundle-opens-in-new-window-how-do-i-open-it-as-a-tab0TextMate: using tmctags bundle, opens in new window!!! how do i open it as a tab?unknown (google)2009-07-15T23:30:23Z2009-10-20T06:00:02Z
<p>I have this issue with textmate where it opens up a file in a new window, but not a tab. thereby its harder to navigate and also disables me from using tcmtags on that new file. Has anyone ever ran into this issue? I suspected it was some type of setting that got messed up, but opening any other file traditionally with the point and click will open in a new tab. So why does it screw up using tcmtags?</p>
<p>Thanks!
Tony</p>
http://stackoverflow.com/questions/1586336/groovy-bundle-for-textmate1Groovy bundle for TextMateSteve Kuo2009-10-18T23:36:43Z2009-10-19T01:46:11Z
<p>Where can I get the Groovy bundle for TextMate? I checked the <a href="http://svn.textmate.org/trunk/Bundles/" rel="nofollow">TextMate subversion repository</a> but it's not there. The <a href="http://groovy.codehaus.org/TextMate" rel="nofollow">Groovy site TextMate page</a> references TextMate's missing Groovy bundle.</p>
http://stackoverflow.com/questions/1555552/live-css-edit-with-textmate-firefox0Live CSS Edit with Textmate & FirefoxParrfolio2009-10-12T16:28:42Z2009-10-18T23:01:58Z
<p>I have become accustom to editing CSS live in the browser using FF dev toolbar. However I do miss Textmate and syntax highlighting. I'm looking for a plug-in for Textmate to edit CSS live while viewing in Firefox. I have tried other editors such as CSS Edit, Espresso, Coda but none live up to the power and flexibility of Textmate. </p>
<p>Ideally the best scenario would be Firefox with a Live CSS panel on the right (Textmate goodness) and Firebug on the bottom. I have staging environments but it's to slow to refresh/reload every time for changes.</p>
http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features11What are some useful TextMate features?dF2008-08-29T02:03:34Z2009-10-17T08:15:42Z
<p>I noticed that many people here use <a href="http://macromates.com/" rel="nofollow">TextMate</a> for coding on OS X. I've recently started using it, and although I like its minimalistic interface, it makes it harder to stumble upon cool features if you don't know what you're looking for.</p>
<p>So, what feature have you found most helpful for coding (mainly in Python)? Are there any third-party bundles I should know about, besides what's included?</p>
http://stackoverflow.com/questions/1569955/cleanly-translate-x-to-y-and-y-to-x-using-a-find-replace-regex-in-textmate0Cleanly translate (x to y) and (y to x) using a find/replace/regex in TextMate.Ollie Saunders2009-10-15T02:05:53Z2009-10-15T05:57:33Z
<p>I want to change this:</p>
<pre><code>_(with(new FuListNode )->isList())->shouldBe(true);
_(with(new FuListNodes)->isList())->shouldBe(false);
_(with(new FuTreeNode )->isList())->shouldBe(true);
_(with(new FuTreeNodes)->isList())->shouldBe(false); } }
</code></pre>
<p>to this (look at the booleans at the end):</p>
<pre><code>_(with(new FuListNode )->isList())->shouldBe(false);
_(with(new FuListNodes)->isList())->shouldBe(true);
_(with(new FuTreeNode )->isList())->shouldBe(false);
_(with(new FuTreeNodes)->isList())->shouldBe(true); } }
</code></pre>
<p>I'm using TextMate, how can I do that cleanly with a single find/replace?</p>
http://stackoverflow.com/questions/1562721/replace-www-example-com-w-a-hrefhttp-www-example-comwww-example-com-a0Replace www.example.com w/ <a href="http://www.example.com">www.example.com</a>Brad2009-10-13T20:26:42Z2009-10-13T21:30:55Z
<p>I am not very good at regex, but I need to convert the following example from this</p>
<pre><code><li>Creations by Carol - www.driedfloralcreations.com</li>
</code></pre>
<p>to</p>
<pre><code><li>Creations by Carol - <a href="http://www.driedfloralcreations.com" rel="external">www.driedfloralcreations.com</a></li>
</code></pre>