0
votes
3answers
56 views
textmate railscast theme and font?
where can I get the textmate rails theme and font used on Railscast?
1
vote
1answer
54 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 …
2
votes
2answers
112 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 …
0
votes
2answers
45 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
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|
…
4
votes
5answers
153 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
19 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?
1
vote
3answers
82 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.
0
votes
1answer
61 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:
…
0
votes
4answers
88 views
Python + SVN + Windows/Mac = Invalid syntax?
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.
Myself, I use Python on Mac, editing with TextMate.
…
0
votes
2answers
37 views
can anyone explain this javascript textmate snippet to me please
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.
…
0
votes
5answers
166 views
TextMate’s Jump to Function in VIM?
Hi guys,
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 …
1
vote
1answer
37 views
TextMate - jump to latest modification
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 …
0
votes
1answer
20 views
SASS syntax highlighting does not work when bundle is installed along with HAML’s in Textmate?
I've encountered this issue on two different machines and can't figure out what the cause is.
SASS syntax highlighting works fine in TextMate when I install a SASS bundle like this. However, when I …
0
votes
4answers
138 views
Replace www.example.com w/ <a href=”http://www.example.com”>www.example.com</a>
I am not very good at regex, but I need to convert the following example from this
<li>Creations by Carol - www.driedfloralcreations.com</li>
to
<li>Creations by Carol - <a …
