From 0118156197a3c63b7ce706835ea582eac1a8a574 Mon Sep 17 00:00:00 2001 From: lunarxlark Date: Sat, 20 Nov 2021 14:05:08 +0900 Subject: [PATCH] missing comma in README.md (#440) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ede0dce..54799df 100644 --- a/README.md +++ b/README.md @@ -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 }