missing comma in README.md (#440)

This commit is contained in:
lunarxlark 2021-11-20 14:05:08 +09:00 committed by GitHub
parent 44e09a0a99
commit 0118156197
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -447,8 +447,8 @@ sections = {
warn = 'DiagnosticWarn', -- changes diagnostic's warn color
info = 'DiagnosticInfo', -- Changes diagnostic's info color
hint = 'DiagnosticHint', -- Changes diagnostic's hint color
}
symbols = {error = 'E', warn = 'W', info = 'I', hint = 'H'}
},
symbols = {error = 'E', warn = 'W', info = 'I', hint = 'H'},
colored = true, -- displays diagnostics status in color if set to true
update_in_insert = false, -- Update diagnostics in insert mode
always_visible = false, -- Show diagnostics even if count is 0, boolean or function returning boolean
@ -471,8 +471,8 @@ sections = {
added = 'DiffAdd', -- changes diff's added color
modified = 'DiffChange', -- changes diff's modified color
removed = 'DiffDelete', -- changes diff's removed color you
}
symbols = {added = '+', modified = '~', removed = '-'} -- changes diff symbols
},
symbols = {added = '+', modified = '~', removed = '-'}, -- changes diff symbols
source = nil, -- A function that works as a data source for diff.
-- it must return a table like
-- {added = add_count, modified = modified_count, removed = removed_count }