mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-09 08:50:06 +08:00
fix(gitter): skip space when debug
This commit is contained in:
parent
dd165bd78d
commit
9484ac6fb9
@ -50,7 +50,9 @@ endfunction
|
|||||||
|
|
||||||
function! s:gitter_stdout(id, data, event) abort
|
function! s:gitter_stdout(id, data, event) abort
|
||||||
for line in a:data
|
for line in a:data
|
||||||
call s:LOG.debug(line)
|
if line !~# '^\s*$'
|
||||||
|
call s:LOG.debug(line)
|
||||||
|
endif
|
||||||
endfor
|
endfor
|
||||||
for room in keys(s:room_jobs)
|
for room in keys(s:room_jobs)
|
||||||
if s:room_jobs[room] ==# a:id
|
if s:room_jobs[room] ==# a:id
|
||||||
|
Loading…
Reference in New Issue
Block a user