On Tue, Mar 18, 2003 at 12:22:11PM -0500, Greg Ward wrote: > [...] add a "restart" link to your app for debugging. I have a key mapped in my editor. If I make a change and want to test it I hit that key after testing. Here's part of my .vimrc: nmap ,r :!qkillnmap ,l :!rxvt -e tail -n 100 -f /www/log/quixote-error.log & "qkill" is a command that restarts the Quixote process. The ,l command is handy if I added debugging prints and want to see the output. Neil