From 6aa103def8dbb6d86c89513505a4ffcaffe2032d Mon Sep 17 00:00:00 2001 From: shadmansaleh <13149513+shadmansaleh@users.noreply.github.com> Date: Sat, 9 Oct 2021 16:06:01 +0600 Subject: [PATCH] doc: fix color docs for diff & diagnostics component fixes #39 closes #78 --- README.md | 14 +++++++------- doc/lualine.txt | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index a9a9781..880bd3e 100644 --- a/README.md +++ b/README.md @@ -453,10 +453,10 @@ sections = { sections = {'error', 'warn', 'info', 'hint'}, -- all colors are in format #rrggbb diagnostics_color = { - error = nil, -- changes diagnostic's error foreground color - warn = nil, -- changes diagnostic's warn foreground color - info = nil, -- Changes diagnostic's info foreground color - hint = nil, -- Changes diagnostic's hint foreground color + error = nil, -- changes diagnostic's error color + warn = nil, -- changes diagnostic's warn color + info = nil, -- Changes diagnostic's info color + hint = nil, -- Changes diagnostic's hint color } symbols = {error = 'E', warn = 'W', info = 'I', hint = 'H'} update_in_insert = false, -- Update diagnostics in insert mode @@ -505,9 +505,9 @@ sections = { colored = true, -- displays diff status in color if set to true -- all colors are in format #rrggbb diff_color = { - added = nil, -- changes diff's added foreground color - modified = nil, -- changes diff's modified foreground color - removed = nil, -- changes diff's removed foreground color + added = nil, -- changes diff's added color + modified = nil, -- changes diff's modified color + removed = nil, -- changes diff's removed color } symbols = {added = '+', modified = '~', removed = '-'} -- changes diff symbols source = nil, -- A function that works as a data source for diff. diff --git a/doc/lualine.txt b/doc/lualine.txt index dc99b7f..63cd840 100644 --- a/doc/lualine.txt +++ b/doc/lualine.txt @@ -433,10 +433,10 @@ will be. sections = {'error', 'warn', 'info', 'hint'}, -- all colors are in format #rrggbb diagnostics_color = { - error = nil, -- changes diagnostic's error foreground color - warn = nil, -- changes diagnostic's warn foreground color - info = nil, -- Changes diagnostic's info foreground color - hint = nil, -- Changes diagnostic's hint foreground color + error = nil, -- changes diagnostic's error color + warn = nil, -- changes diagnostic's warn color + info = nil, -- Changes diagnostic's info color + hint = nil, -- Changes diagnostic's hint color } symbols = {error = 'E', warn = 'W', info = 'I', hint = 'H'} update_in_insert = false, -- Update diagnostics in insert mode @@ -488,9 +488,9 @@ will be. colored = true, -- displays diff status in color if set to true -- all colors are in format #rrggbb diff_color = { - added = nil, -- changes diff's added foreground color - modified = nil, -- changes diff's modified foreground color - removed = nil, -- changes diff's removed foreground color + added = nil, -- changes diff's added color + modified = nil, -- changes diff's modified color + removed = nil, -- changes diff's removed color } symbols = {added = '+', modified = '~', removed = '-'} -- changes diff symbols source = nil, -- A function that works as a data source for diff.