Subject: | request .t suffix for test files |
Hello Ingy!
Please include .t as an allowed extension.
I include .t test files from my projects into my Vroom presentations.
Having them included as .pl files clutters the directory and loses the
ability to differentiate between .pl and .t files in vim.
I use a different compiler setting for .t files than perl files. In my
.pl and .pm files, ':make' runs perl -c. With .t :make runs perlprove
to run all of my tests. Being able to run ':make' live in my
presentation to run my included test file seems ridiculously awesome.
vim.org file for perlprove.pm
http://www.vim.org/scripts/script.php?script_id=1319
au BufRead,BufNewFile *.t setfiletype=perl | compiler perlprove
Thanks Ingy!