diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-25 09:06:16 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-25 09:06:16 +1200 |
commit | d025b8101b300c34e0e74d54ec821b69ee08cc94 (patch) | |
tree | 2b506fb06d9dd7c3cb6f2d20c9fa64719ca27599 /vim/after/ftplugin/perl | |
parent | Merge branch 'release/v1.0.0' (diff) | |
parent | Bump VERSION (diff) | |
download | dotfiles-1.1.0.tar.gz (sig) dotfiles-1.1.0.zip |
Merge branch 'release/v1.1.0'v1.1.0
* release/v1.1.0:
Bump VERSION
Adjust an augroup name
Missed an ftplugin map: HTML URL linking
Update diff_prune.vim ftplugin
Move all local bindings out into .vimrc
Correct .vimrc comment
Add diff_prune.vim ftplugin
Update redact_pass.vim plugin
Correct Vim 'formatlistpat' def for Markdown
Add password filetype
Correct an exists() call in markdown ftplugin
Add "gitrebase" Vim filetype
Print working directory after \g in Vim
Bind \g in Vim to go to the current buffer's dir
Add tab cycle bindings
Update fixed_join.vim plugin
Diffstat (limited to 'vim/after/ftplugin/perl')
-rw-r--r-- | vim/after/ftplugin/perl/check.vim | 9 | ||||
-rw-r--r-- | vim/after/ftplugin/perl/lint.vim | 9 | ||||
-rw-r--r-- | vim/after/ftplugin/perl/tidy.vim | 9 |
3 files changed, 0 insertions, 27 deletions
diff --git a/vim/after/ftplugin/perl/check.vim b/vim/after/ftplugin/perl/check.vim index f6f99f08..c810c91f 100644 --- a/vim/after/ftplugin/perl/check.vim +++ b/vim/after/ftplugin/perl/check.vim @@ -26,12 +26,3 @@ nnoremap <buffer> <silent> <unique> \ :<C-U>call compiler#Make('perl')<CR> let b:undo_ftplugin = b:undo_ftplugin \ . '|nunmap <buffer> <Plug>PerlCheck' - -" If there isn't a key mapping already, use a default one -if !hasmapto('<Plug>PerlCheck') - nmap <buffer> <unique> - \ <LocalLeader>c - \ <Plug>PerlCheck - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap <buffer> <LocalLeader>c' -endif diff --git a/vim/after/ftplugin/perl/lint.vim b/vim/after/ftplugin/perl/lint.vim index eaa6684c..86741f79 100644 --- a/vim/after/ftplugin/perl/lint.vim +++ b/vim/after/ftplugin/perl/lint.vim @@ -26,12 +26,3 @@ nnoremap <buffer> <silent> <unique> \ :<C-U>call compiler#Make('perlcritic')<CR> let b:undo_ftplugin = b:undo_ftplugin \ . '|nunmap <buffer> <Plug>PerlLint' - -" If there isn't a key mapping already, use a default one -if !hasmapto('<Plug>PerlLint') - nmap <buffer> <unique> - \ <LocalLeader>l - \ <Plug>PerlLint - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap <buffer> <LocalLeader>l' -endif diff --git a/vim/after/ftplugin/perl/tidy.vim b/vim/after/ftplugin/perl/tidy.vim index 64f0eda2..c815aba9 100644 --- a/vim/after/ftplugin/perl/tidy.vim +++ b/vim/after/ftplugin/perl/tidy.vim @@ -26,12 +26,3 @@ nnoremap <buffer> <silent> <unique> \ :<C-U>call filter#Stable('perltidy')<CR> let b:undo_ftplugin = b:undo_ftplugin \ . '|nunmap <buffer> <Plug>PerlTidy' - -" If there isn't a key mapping already, use a default one -if !hasmapto('<Plug>PerlTidy') - nmap <buffer> <unique> - \ <LocalLeader>t - \ <Plug>PerlTidy - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap <buffer> <LocalLeader>t' -endif |