mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-22 04:21:08 +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
|
||||
For Neovim Last change: 2026 April 26
|
||||
For Neovim Last change: 2026 May 18
|
||||
|
||||
==============================================================================
|
||||
Table of Contents *LazyVim-table-of-contents*
|
||||
|
|
|
|||
|
|
@ -39,6 +39,9 @@ M.plugin = {
|
|||
group = function(_, _, data)
|
||||
---@type string
|
||||
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 hex_color = "#" .. r .. r .. g .. g .. b .. b
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue