aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-07 22:05:55 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-07 22:05:55 +1200
commit6f56e4f0b3c79af5046c8cca16e6aa5186f74702 (patch)
treecaaa2205a6067532956866d6c15f465f499a414d /plugin
parentCorrect a comment (diff)
downloadvim-copy-linebreak-6f56e4f0b3c79af5046c8cca16e6aa5186f74702.tar.gz
vim-copy-linebreak-6f56e4f0b3c79af5046c8cca16e6aa5186f74702.zip
Add missing parens to func callsv0.2.0
Diffstat (limited to 'plugin')
-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 f9c06ae..80ef96c 100644
--- a/plugin/copy_linebreak.vim
+++ b/plugin/copy_linebreak.vim
@@ -59,11 +59,11 @@ noremap <silent> <unique>
if has('user_commands')
command -nargs=0
\ CopyLinebreakEnable
- \ call <SID>CopyLinebreakEnable
+ \ call <SID>CopyLinebreakEnable()
command -nargs=0
\ CopyLinebreakDisable
- \ call <SID>CopyLinebreakDisable
+ \ call <SID>CopyLinebreakDisable()
command -nargs=0
\ CopyLinebreakToggle
- \ call <SID>CopyLinebreakToggle
+ \ call <SID>CopyLinebreakToggle()
endif