0
votes
3answers
202 views
Fastest way to “jump back” to a file in TextMate?
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, …
0
votes
0answers
25 views
Having Textmate warn me when writing to a file that was modified since Textmate last read it [closed]
Scenario:
I open a file, I edit it. After I began editing, the file is modified by another program. Finally, I save the file.
In that case, Vim would provide that helpful warning:
WARNING: The …
0
votes
0answers
12 views
Textmate, open file at Caret
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 …
0
votes
1answer
20 views
Get filename without extension, textmade bundle editor
Thought this might work:
${TM_FILENAME/(.+?)(\.[^.]*$|$)/}
But it's giving me this error:
Error Parsing Snippet
line 1:257: expecting regexp options, found ''
Any tips?
0
votes
2answers
51 views
git commit -a on Mac hangs when TextMate is quitted
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 …
1
vote
1answer
56 views
How to enable ruby methods visualizing in vim
Hi, a have googled the question, but found nothing - maybe I do not know how to define the search keywords properly in this case.
I like to use folding in vim when I'm developing Ruby on Rails …
0
votes
3answers
69 views
textmate railscast theme and font?
where can I get the textmate rails theme and font used on Railscast?
2
votes
2answers
136 views
Using Python 3.1 with TextMate
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 …
1
vote
1answer
28 views
Code folding on consecutive collect/select/reject/each
I play around with arrays and hashes quite a lot in ruby and end up with some code that looks like this:
sum = two_dimensional_array.select{|i|
i.collect{|j|
j.to_i
}.sum > 5
}.collect{|i|
…
0
votes
2answers
132 views
Can TextMate find matching opening and closing tags?
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 …
6
votes
8answers
601 views
What’s so great about TextMate?
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 …
4
votes
5answers
156 views
Emacs session / projects / window management
Hello,
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 …
0
votes
1answer
63 views
Shell script to grab selected text and alter it?
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:
…
3
votes
3answers
175 views
How can I perform an action n-many times in TextMate ( both Emacs and Vim can do it easily! )?
Emacs: C-U (79) # » a pretty 79 character length divider
VIM: 79-i-# » see above
Textmate: ????
Or is it just assumed that we'll make a Ruby call or have a snippet somewhere?
1
vote
3answers
86 views
Ways to speed up TextMate on large rails projects?
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.
