diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f82182..b68f184 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +### Fixed + +- `string_special`, `punctuation_special` are now colorized with magenta. + ## [2.0.0][v2.0.0] (2024-02-08) ### Changed diff --git a/doc/srcerite.txt b/doc/srcerite.txt index 37c598a..55c186a 100644 --- a/doc/srcerite.txt +++ b/doc/srcerite.txt @@ -1,4 +1,4 @@ -*srcerite.txt* For NVIM v0.8.0 Last change: 2024 February 07 +*srcerite.txt* For NVIM v0.8.0 Last change: 2024 February 08 Maintainer: NACAMURA Mitsuhiro URL: https://github.com/m15a/nvim-srcerite diff --git a/lua/srcerite/inputs.lua b/lua/srcerite/inputs.lua index d3c6ab7..335bb54 100644 --- a/lua/srcerite/inputs.lua +++ b/lua/srcerite/inputs.lua @@ -65,7 +65,7 @@ return { -- punctuation = , --> text_contrast_bg_high -- punctuation_bracket = , --> punctuation -- punctuation_delimiter = , --> punctuation - -- punctuation_special = , --> string_special + punctuation_special = srcery.magenta, --> string_special search = srcery.xgray5, select = srcery.xgray2, --> bg_contrast_low special = srcery.orange, @@ -74,7 +74,7 @@ return { string = srcery.bright_green, -- string_escape = , --> character -- string_regex = , --> string - -- string_special = , --> identifier + string_special = srcery.magenta, --> identifier structure = srcery.cyan, -- syntax_error = , --> error -- tag = , --> structure