mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 05:51:06 +00:00
Merge branch 'main' into feat/opencode
This commit is contained in:
commit
7640da3a0a
2 changed files with 4 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
*LazyVim.txt* LazyVim docs
|
*LazyVim.txt* LazyVim docs
|
||||||
For Neovim Last change: 2026 April 26
|
For Neovim Last change: 2026 May 18
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
Table of Contents *LazyVim-table-of-contents*
|
Table of Contents *LazyVim-table-of-contents*
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,9 @@ M.plugin = {
|
||||||
group = function(_, _, data)
|
group = function(_, _, data)
|
||||||
---@type string
|
---@type string
|
||||||
local match = data.full_match
|
local match = data.full_match
|
||||||
|
if match == "#add" then
|
||||||
|
return
|
||||||
|
end
|
||||||
local r, g, b = match:sub(2, 2), match:sub(3, 3), match:sub(4, 4)
|
local r, g, b = match:sub(2, 2), match:sub(3, 3), match:sub(4, 4)
|
||||||
local hex_color = "#" .. r .. r .. g .. g .. b .. b
|
local hex_color = "#" .. r .. r .. g .. g .. b .. b
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue