From: Sam Roberts Date: 2004-05-11T11:06:40+09:00 Subject: Re: OT Re: vim and make Quoteing carl@youngbloods.org, on Fri, May 07, 2004 at 01:28:02AM +0900: > Your post sparked some interest. I have been using vim for a while but > my level of understanding is pretty much limited to basic text file > editing. I have been wanting to raise the bar and become a more serious > vim guru. Are you saying that vim has a mechanism for compiling within > vim and running automated tests/debugging etc.? I know that you can In general it's easy, write a Makefile: --- Makefile --- default: test test: ruby -w -I. my_test.rb ---------------- Then, from inside vim, do ":mak". Cheers, Sam