# HG changeset patch # User Meredith Howard # Date 1466863700 14400 # Node ID e0bfe67950f863dad3d1ce39acccc752e68c3b2d # Parent 8e4bb4e70b2fdf2262896826e2c4f3b22aff127f using vim-perl after all. add some new contrib stuff too diff --git a/.vim/after/syntax/perl/custom.vim b/.vim/after/syntax/perl/custom.vim --- a/.vim/after/syntax/perl/custom.vim +++ b/.vim/after/syntax/perl/custom.vim @@ -1,6 +1,3 @@ -" Add match for 'fun' from Function::Parameters -" syn match perlFunction +\\_s*+ nextgroup=perlSubName - " Add match for =method from Pod::Weaver syn match podCommand "^=method" contained nextgroup=podCmdText contains=@NoSpell diff --git a/.vim/after/syntax/perl/perl-contrib.vim b/.vim/after/syntax/perl/perl-contrib.vim --- a/.vim/after/syntax/perl/perl-contrib.vim +++ b/.vim/after/syntax/perl/perl-contrib.vim @@ -1,4 +1,5 @@ +" Contrib files from vim-perl/vim-perl " I would use symlinks but cygwin likes to fumble them runtime contrib/carp.vim runtime contrib/highlight-all-pragmas.vim @@ -7,4 +8,5 @@ runtime contrib/method-signatures.vim runtime contrib/function-parameters.vim runtime contrib/test-more.vim runtime contrib/try-tiny.vim +runtime contrib/heredoc-sql.vim diff --git a/.vimrc b/.vimrc --- a/.vimrc +++ b/.vimrc @@ -85,6 +85,7 @@ end Plugin 'mhinz/vim-signify' Plugin 'asciidoc/vim-asciidoc' + Plugin 'vim-perl/vim-perl' Plugin 'sheerun/vim-polyglot' Plugin 'yko/mojo.vim'