This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function nodewatch() { | |
| find . | grep coffee$ | xargs coffee -cwl & | |
| if [ $1 ] | |
| then | |
| nodemon $1.js & | |
| else | |
| nodemon app.js & | |
| fi | |