Skip to content

Commit 1bd3dfb

Browse files
committed
Fix log indentation
1 parent dc3fc78 commit 1bd3dfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/OmniSharp/log.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function! OmniSharp#log#LogServer(job, raw, msg) abort
2929
let message = substitute(a:msg.Body.Message, '\%uD\ze\%u0', '', 'g')
3030
let lines = split(message, '\%u0', 1)
3131
if a:msg.Body.Name ==# 'OmniSharp.Roslyn.BufferManager'
32-
let line0 = lines[0]
32+
let line0 = ' ' . lines[0]
3333
if lines[0] =~# '^\s*Updating file .\+ with new text:$'
3434
" Strip the trailing ':'
3535
let line0 = line0[:-2]

0 commit comments

Comments
 (0)