Skip to content

Commit

Permalink
Simplify the compiler options
Browse files Browse the repository at this point in the history
Also tweak perl skeleton files
  • Loading branch information
Steven Humphrey committed Jan 19, 2013
1 parent f73207e commit f0f411b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion skeleton/template.pl
Expand Up @@ -8,7 +8,7 @@ =head1 DESCRIPTION
=cut

use v5.10;
use 5.010;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion skeleton/template.pm
Expand Up @@ -17,7 +17,7 @@ Steven Humphrey

package ::package::;

use v5.10;
use 5.010;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion skeleton/template.t
Expand Up @@ -14,7 +14,7 @@ Steven Humphrey
=cut

use v5.10;
use 5.010;
use strict;
use warnings;
use Test::More;
Expand Down
6 changes: 1 addition & 5 deletions vimrc
Expand Up @@ -138,8 +138,6 @@ endif
"""""""""""""
" filetypes "
"""""""""""""
" autocmd! " reset autocommands incase reloading vimrc
" Set template::toolkit files to use the tt2html syntax plugin
au BufNewFile,BufRead *.tt set filetype=tt2html
au BufNewFile,BufRead *.psgi set filetype=perl
au BufNewFile,BufRead *.t set filetype=perl
Expand All @@ -156,9 +154,7 @@ iab eric ERIC IS BANANAMAN!!!
" Compiler options
"""""""""""""""""""
" let g:perl_compiler_force_warnings = 0
autocmd BufNewFile,BufRead *.pl compiler perl
autocmd BufNewFile,BufRead *.pm compiler perl
autocmd BufNewFile,BufRead *.t compiler perl
autocmd BufNewFile,BufRead *.pl,*.pm,*.t compiler perl

"""""""""""""""""""""""""""""""""""""""""""
" enable snipmate and sparkup for tt2html
Expand Down

0 comments on commit f0f411b

Please sign in to comment.