aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-27 22:02:23 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-27 22:03:13 +1200
commit720742ff79d63bc3927638599b3483044e41fe97 (patch)
tree3aa01c09445cb2f11b8b0ab920f87cf354b6db92
parentRemove leading colon from example mapping (diff)
downloadvim-copy-linebreak-720742ff79d63bc3927638599b3483044e41fe97.tar.gz
vim-copy-linebreak-720742ff79d63bc3927638599b3483044e41fe97.zip
Remove <unique> attribute from mappings
-rw-r--r--plugin/copy_linebreak.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugin/copy_linebreak.vim b/plugin/copy_linebreak.vim
index 97b2170..ef7e4d2 100644
--- a/plugin/copy_linebreak.vim
+++ b/plugin/copy_linebreak.vim
@@ -46,12 +46,12 @@ function! s:CopyLinebreakToggle()
endfunction
" Provide mappings to the functions just defined
-noremap <silent> <unique>
+noremap <silent>
\ <Plug>CopyLinebreakEnable
\ :<C-U>call <SID>CopyLinebreakEnable()<CR>
-noremap <silent> <unique>
+noremap <silent>
\ <Plug>CopyLinebreakDisable
\ :<C-U>call <SID>CopyLinebreakDisable()<CR>
-noremap <silent> <unique>
+noremap <silent>
\ <Plug>CopyLinebreakToggle
\ :<C-U>call <SID>CopyLinebreakToggle()<CR>