Skip to content

Instantly share code, notes, and snippets.

@techyak
techyak / gist:2474743
Created April 24, 2012 00:00
fuzzyfinder_textmate.vim: changing display to full path
Despite what it calls for in the fuzzyfinder_textmate.vim file, in order to show the full path of the file when using \t add this to your vimrc file:
let g:fuzzy_path_display='path'
@techyak
techyak / Compass Watch
Created March 16, 2011 04:37
the alias that I'm using to watch node.js/coffeescript/compass at the same time
function nodewatch() {
find . | grep coffee$ | xargs coffee -cwl &
if [ $1 ]
then
nodemon $1.js &
else
nodemon app.js &
fi