aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin/copy_linebreak.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-04 17:33:06 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-04 17:33:06 +1300
commit85b05425ed3be65439fefa5f0074d3d7f18217f9 (patch)
tree6785858b291dcc6bbaddd5b363b28261b37a6401 /vim/plugin/copy_linebreak.vim
parentMove Vim background detection logic into plugin (diff)
downloaddotfiles-85b05425ed3be65439fefa5f0074d3d7f18217f9.tar.gz
dotfiles-85b05425ed3be65439fefa5f0074d3d7f18217f9.zip
Don't suggest mappings in Vim plugin comments
Pretty useless, really.
Diffstat (limited to 'vim/plugin/copy_linebreak.vim')
-rw-r--r--vim/plugin/copy_linebreak.vim2
1 files changed, 0 insertions, 2 deletions
diff --git a/vim/plugin/copy_linebreak.vim b/vim/plugin/copy_linebreak.vim
index ac21b66d..cba2c866 100644
--- a/vim/plugin/copy_linebreak.vim
+++ b/vim/plugin/copy_linebreak.vim
@@ -3,7 +3,6 @@
" showbreak characters and breakindent mode on and off, for convenience of
" copying multiple lines from terminal emulators.
"
-" Suggested mapping: <leader>b
"
if has('eval')
@@ -30,7 +29,6 @@ if has('eval')
endfunction
" Provide mapping proxy to the function just defined
- " Suggested mapping: <leader>b
noremap <Plug>CopyLinebreak
\ :<C-U>call <SID>CopyLinebreak()<CR>
endif