fix: highlights

This commit is contained in:
Folke Lemaitre 2022-11-20 23:34:35 +01:00
parent 57d024ef19
commit 35b1f98ac7
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
4 changed files with 10 additions and 17 deletions

View file

@ -1,8 +1,9 @@
---@alias TextString {str: string, hl?:string, extmark?:table}
---@alias TextLine TextString[]
local Config = require("lazy.config")
---@alias TextSegment {str: string, hl?:string, extmark?:table}
---@class Text
---@field _lines TextLine[]
---@field _lines TextSegment[][]
local Text = {}
function Text.new()