aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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