aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/perl
diff options
context:
space:
mode:
Diffstat (limited to 'vim/after/ftplugin/perl')
-rw-r--r--vim/after/ftplugin/perl/check.vim28
-rw-r--r--vim/after/ftplugin/perl/lint.vim28
-rw-r--r--vim/after/ftplugin/perl/maps.vim30
-rw-r--r--vim/after/ftplugin/perl/tidy.vim28
4 files changed, 0 insertions, 114 deletions
diff --git a/vim/after/ftplugin/perl/check.vim b/vim/after/ftplugin/perl/check.vim
deleted file mode 100644
index c810c91f..00000000
--- a/vim/after/ftplugin/perl/check.vim
+++ /dev/null
@@ -1,28 +0,0 @@
-" perl/check.vim: Use Perl binary to check for errors
-
-" Don't load if running compatible or too old
-if &compatible || v:version < 700
- finish
-endif
-
-" Don't load if already loaded
-if exists('b:did_ftplugin_perl_check')
- finish
-endif
-
-" Don't load if the user doesn't want ftplugin mappings
-if exists('g:no_plugin_maps') || exists('g:no_perl_maps')
- finish
-endif
-
-" Flag as loaded
-let b:did_ftplugin_perl_check = 1
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|unlet b:did_ftplugin_perl_check'
-
-" Define a mapping target
-nnoremap <buffer> <silent> <unique>
- \ <Plug>PerlCheck
- \ :<C-U>call compiler#Make('perl')<CR>
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|nunmap <buffer> <Plug>PerlCheck'
diff --git a/vim/after/ftplugin/perl/lint.vim b/vim/after/ftplugin/perl/lint.vim
deleted file mode 100644
index 86741f79..00000000
--- a/vim/after/ftplugin/perl/lint.vim
+++ /dev/null
@@ -1,28 +0,0 @@
-" perl/lint.vim: Use Perl::Critic to lint scripts
-
-" Don't load if running compatible or too old
-if &compatible || v:version < 700
- finish
-endif
-
-" Don't load if already loaded
-if exists('b:did_ftplugin_perl_lint')
- finish
-endif
-
-" Don't load if the user doesn't want ftplugin mappings
-if exists('g:no_plugin_maps') || exists('g:no_html_maps')
- finish
-endif
-
-" Flag as loaded
-let b:did_ftplugin_perl_lint = 1
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|unlet b:did_ftplugin_perl_lint'
-
-" Define a mapping target
-nnoremap <buffer> <silent> <unique>
- \ <Plug>PerlLint
- \ :<C-U>call compiler#Make('perlcritic')<CR>
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|nunmap <buffer> <Plug>PerlLint'
diff --git a/vim/after/ftplugin/perl/maps.vim b/vim/after/ftplugin/perl/maps.vim
deleted file mode 100644
index 2340ac19..00000000
--- a/vim/after/ftplugin/perl/maps.vim
+++ /dev/null
@@ -1,30 +0,0 @@
-" perl/maps.vim: tejr's mappings for 'perl' filetypes
-
-" Don't load if running compatible or too old
-if &compatible || v:version < 700
- finish
-endif
-
-" Don't load if already loaded
-if exists('b:did_ftplugin_perl_maps')
- finish
-endif
-
-" Don't load if the user doesn't want ftplugin mappings
-if exists('g:no_plugin_maps') || exists('g:no_perl_maps')
- finish
-endif
-
-" Flag as loaded
-let b:did_ftplugin_perl_maps = 1
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|unlet b:did_ftplugin_perl_maps'
-
-" Set mappings
-nmap <buffer> <LocalLeader>c <Plug>PerlCheck
-nmap <buffer> <LocalLeader>l <Plug>PerlLint
-nmap <buffer> <LocalLeader>t <Plug>PerlTidy
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|nunmap <buffer> <LocalLeader>c'
- \ . '|nunmap <buffer> <LocalLeader>l'
- \ . '|nunmap <buffer> <LocalLeader>t'
diff --git a/vim/after/ftplugin/perl/tidy.vim b/vim/after/ftplugin/perl/tidy.vim
deleted file mode 100644
index c815aba9..00000000
--- a/vim/after/ftplugin/perl/tidy.vim
+++ /dev/null
@@ -1,28 +0,0 @@
-" perl/tidy.vim: Use Perl::Tidy to format and filter scripts
-
-" Don't load if running compatible or too old
-if &compatible || v:version < 700
- finish
-endif
-
-" Don't load if already loaded
-if exists('b:did_ftplugin_perl_tidy')
- finish
-endif
-
-" Don't load if the user doesn't want ftplugin mappings
-if exists('g:no_plugin_maps') || exists('g:no_perl_maps')
- finish
-endif
-
-" Flag as loaded
-let b:did_ftplugin_perl_tidy = 1
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|unlet b:did_ftplugin_perl_tidy'
-
-" Define a mapping target
-nnoremap <buffer> <silent> <unique>
- \ <Plug>PerlTidy
- \ :<C-U>call filter#Stable('perltidy')<CR>
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|nunmap <buffer> <Plug>PerlTidy'