From 6f56e4f0b3c79af5046c8cca16e6aa5186f74702 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 7 Jun 2018 22:05:55 +1200 Subject: Add missing parens to func calls --- plugin/copy_linebreak.vim | 6 +++--- 1 file 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 if has('user_commands') command -nargs=0 \ CopyLinebreakEnable - \ call CopyLinebreakEnable + \ call CopyLinebreakEnable() command -nargs=0 \ CopyLinebreakDisable - \ call CopyLinebreakDisable + \ call CopyLinebreakDisable() command -nargs=0 \ CopyLinebreakToggle - \ call CopyLinebreakToggle + \ call CopyLinebreakToggle() endif -- cgit v1.2.3