aboutsummaryrefslogtreecommitdiff
path: root/plugin/copy_linebreak.vim
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/copy_linebreak.vim')
-rw-r--r--plugin/copy_linebreak.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/copy_linebreak.vim b/plugin/copy_linebreak.vim
index 89fba9e..2bb19ef 100644
--- a/plugin/copy_linebreak.vim
+++ b/plugin/copy_linebreak.vim
@@ -40,9 +40,9 @@ endfunction
" 'linebreak' option as the pivot
function! s:CopyLinebreakToggle()
if &linebreak
- call <SID>CopyLinebreakEnable()
+ call s:CopyLinebreakEnable()
else
- call <SID>CopyLinebreakDisable()
+ call s:CopyLinebreakDisable()
endif
endfunction