Skip to content

Commit

Permalink
Add missing open paren
Browse files Browse the repository at this point in the history
  • Loading branch information
natebosch committed May 9, 2018
1 parent c0db766 commit c02216a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/lsc/channel.vim
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function! lsc#channel#open(command, Callback, ErrCallback, OnExit) abort
endif
let l:channel_options = {'mode': 'raw',
\ 'callback': {_, message -> a:Callback(message)},
\ 'close_cb': {_ -> a:OnExit)}}
\ 'close_cb': {_ -> a:OnExit()}}
call s:WrapVim(ch_open(a:command, l:channel_options), l:c)
return l:c
endif
Expand Down

0 comments on commit c02216a

Please sign in to comment.