One post at a time
8 Jul
One of my favorite editor on Mac is Coda, the most important part for me is in their tagline:

Compare with my another favorite editor, TextMate, every time I open it, I will open three more windows at the same time:
Coda has all of these and even more:
Text editor + Transmit + CSS editor + Terminal + Books + More = Whoah.
But, on another side, leaking of version control and no powerful bundles as TextMate keep a lot of Ruby developers out of it.
Things may change:
After a lot of work, we’re finally ready to work with some people to test Coda 1.5 — the next major release of Coda — and prepare it for the general public.
…
To enter Coda 1.5 limited private beta, go to:
http://www.panic.com/hive/
If registration is still available, the registration link will be in the upper-right corner of the page. (If there’s no link, we’re full.)
So what’s new in Coda 1.5?
- Better Search and Replace?
- Source Control Support (SVN or Git)?
- Custom Books? Add more Ruby Document in it?
- Better Support for more than one languages mix together in one file?
- …
Stay tuned.
* Unless you want to use more than one window. Which is totally cool.
29 Jun
Keyboard navigation for TextMate stacktraces
Put this script at the end of /Applications/TextMate.app/Contents/SharedSupport/Support/script/webpreview.js.
document.addEventListener('keypress', function(e){
var key = e.keyCode
if (key != 63233 && key != 63232) return
links = document.getElementsByTagName('a')
for (var i = 1; i < links.length; i++)
if (links[i].title == 'focused') break
if (i == links.length) i = 0
links[i].title = null
if (key == 63233){
if (i == (links.length - 1)) i = 1
else i += 1
}
if (key == 63232){
if (i <= 1) i = links.length - 1
else i -= 1
}
links[i].title = 'focused'
links[i].focus()
})
Incredibly useful when I am running my tests!
Recent Comments