From 3b0dc93b229dc13e3e9fae13111765892112843e Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Sun, 7 Dec 2014 12:32:31 +0900 Subject: [PATCH] Fixing default argument --- autoload/argwrap.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/argwrap.vim b/autoload/argwrap.vim index beb59bb..8040026 100644 --- a/autoload/argwrap.vim +++ b/autoload/argwrap.vim @@ -188,7 +188,7 @@ function! argwrap#unwrapContainer(range, container, arguments) endfunction function! argwrap#toggle(...) - let l:style = a:0 == 0 ? 'default' : 'bx' + let l:style = a:0 == 0 ? 'default' : a:1 let l:cursor = getpos('.') let l:range = argwrap#findClosestRange()