mirror of
https://github.com/norcalli/nvim-colorizer.lua.git
synced 2026-09-14 16:56:15 -04:00
259 lines
8.7 KiB
Lua
259 lines
8.7 KiB
Lua
--- Highlights terminal CSI ANSI color codes.
|
|
-- @module colorizer
|
|
local nvim = require 'nvim'
|
|
local Trie = require 'trie'
|
|
|
|
--- Default namespace used in `highlight_buffer` and `attach_to_buffer`.
|
|
-- The name is "terminal_highlight"
|
|
-- @see highlight_buffer
|
|
-- @see attach_to_buffer
|
|
local DEFAULT_NAMESPACE = nvim.create_namespace 'colorizer'
|
|
|
|
local COLOR_MAP
|
|
local COLOR_TRIE
|
|
|
|
--- Setup the COLOR_MAP and COLOR_TRIE
|
|
local function initialize_trie()
|
|
if not COLOR_TRIE then
|
|
COLOR_MAP = nvim.get_color_map()
|
|
COLOR_TRIE = Trie()
|
|
|
|
for k in pairs(COLOR_MAP) do
|
|
COLOR_TRIE:insert(k)
|
|
end
|
|
end
|
|
end
|
|
|
|
--- Determine whether to use black or white text
|
|
-- Ref: https://stackoverflow.com/a/1855903/837964
|
|
-- https://stackoverflow.com/questions/596216/formula-to-determine-brightness-of-rgb-color
|
|
local function color_is_bright(r, g, b)
|
|
-- Counting the perceptive luminance - human eye favors green color
|
|
local luminance = (0.299*r + 0.587*g + 0.114*b)/255
|
|
if luminance > 0.5 then
|
|
return true -- Bright colors, black font
|
|
else
|
|
return false -- Dark colors, white font
|
|
end
|
|
end
|
|
|
|
local HIGHLIGHT_NAME_PREFIX = "colorizer"
|
|
local MODE_NAMES = {
|
|
background = 'mb';
|
|
foreground = 'mf';
|
|
}
|
|
|
|
--- Make a deterministic name for a highlight given these attributes
|
|
local function make_highlight_name(rgb, mode)
|
|
return table.concat({HIGHLIGHT_NAME_PREFIX, MODE_NAMES[mode], rgb}, '_')
|
|
end
|
|
|
|
local HIGHLIGHT_CACHE = {}
|
|
|
|
local function create_highlight(rgb_hex, options)
|
|
local mode = options.mode or 'background'
|
|
-- TODO validate rgb format?
|
|
rgb_hex = rgb_hex:lower()
|
|
local cache_key = table.concat({MODE_NAMES[mode], rgb_hex}, "_")
|
|
local highlight_name = HIGHLIGHT_CACHE[cache_key]
|
|
-- Look up in our cache.
|
|
if not highlight_name then
|
|
if #rgb_hex == 3 then
|
|
rgb_hex = table.concat {
|
|
rgb_hex:sub(1,1):rep(2);
|
|
rgb_hex:sub(2,2):rep(2);
|
|
rgb_hex:sub(3,3):rep(2);
|
|
}
|
|
end
|
|
-- Create the highlight
|
|
highlight_name = make_highlight_name(rgb_hex, mode)
|
|
if mode == 'foreground' then
|
|
nvim.ex.highlight(highlight_name, "guifg=#"..rgb_hex)
|
|
else
|
|
local r, g, b = rgb_hex:sub(1,2), rgb_hex:sub(3,4), rgb_hex:sub(5,6)
|
|
r, g, b = tonumber(r,16), tonumber(g,16), tonumber(b,16)
|
|
local fg_color
|
|
if color_is_bright(r,g,b) then
|
|
fg_color = "Black"
|
|
else
|
|
fg_color = "White"
|
|
end
|
|
nvim.ex.highlight(highlight_name, "guifg="..fg_color, "guibg=#"..rgb_hex)
|
|
end
|
|
HIGHLIGHT_CACHE[cache_key] = highlight_name
|
|
end
|
|
return highlight_name
|
|
end
|
|
|
|
--[[-- Highlight the buffer region.
|
|
Highlight starting from `line_start` (0-indexed) for each line described by `lines` in the
|
|
buffer `buf` and attach it to the namespace `ns`.
|
|
|
|
@tparam integer buf buffer id.
|
|
@tparam[opt=DEFAULT_NAMESPACE] integer ns the namespace id. Create it with `vim.api.create_namespace`
|
|
@tparam {string,...} lines the lines to highlight from the buffer.
|
|
@tparam integer line_start should be 0-indexed
|
|
@param[opt] options Configuration options as described in `setup`
|
|
@see setup
|
|
]]
|
|
local function highlight_buffer(buf, ns, lines, line_start, options)
|
|
options = options or {}
|
|
-- TODO do I have to put this here?
|
|
initialize_trie()
|
|
ns = ns or DEFAULT_NAMESPACE
|
|
for current_linenum, line in ipairs(lines) do
|
|
-- @todo it's possible to skip processing the new code if the attributes hasn't changed.
|
|
current_linenum = current_linenum - 1 + line_start
|
|
if options.rgb_fn then
|
|
-- TODO this can have improved performance by either reusing my trie or
|
|
-- doing a byte comp.
|
|
line:gsub("()rgb%(%s*(%d+%%?)%s*,%s*(%d+%%?)%s*,%s*(%d+%%?)%s*%)()", function(match_start, r,g,b, match_end)
|
|
if r:sub(-1,-1) == "%" then r = math.floor(r:sub(1,-2)/100*255) end
|
|
if g:sub(-1,-1) == "%" then g = math.floor(g:sub(1,-2)/100*255) end
|
|
if b:sub(-1,-1) == "%" then b = math.floor(b:sub(1,-2)/100*255) end
|
|
local rgb_hex = ("%02x%02x%02x"):format(r,g,b)
|
|
if #rgb_hex ~= 6 then
|
|
return
|
|
end
|
|
local highlight_name = create_highlight(rgb_hex, options)
|
|
nvim.buf_add_highlight(buf, ns, highlight_name, current_linenum, match_start-1, match_end-1)
|
|
end)
|
|
end
|
|
line:gsub("()#([%da-fA-F][%da-fA-F][%da-fA-F])()", function(match_start, rgb_hex, match_end)
|
|
local highlight_name = create_highlight(rgb_hex, options)
|
|
nvim.buf_add_highlight(buf, ns, highlight_name, current_linenum, match_start-1, match_end-1)
|
|
end)
|
|
line:gsub("()#([%da-fA-F][%da-fA-F][%da-fA-F][%da-fA-F][%da-fA-F][%da-fA-F])()", function(match_start, rgb_hex, match_end)
|
|
local highlight_name = create_highlight(rgb_hex, options)
|
|
nvim.buf_add_highlight(buf, ns, highlight_name, current_linenum, match_start-1, match_end-1)
|
|
end)
|
|
if not options.no_names then
|
|
local i = 1
|
|
while i < #line do
|
|
-- TODO skip if the remaining length is less than the shortest length
|
|
-- of an entry in our trie.
|
|
local prefix = COLOR_TRIE:longest_prefix(line:sub(i))
|
|
if prefix then
|
|
local rgb = COLOR_MAP[prefix]
|
|
local rgb_hex = bit.tohex(rgb):sub(-6)
|
|
local highlight_name = create_highlight(rgb_hex, options)
|
|
nvim.buf_add_highlight(buf, ns, highlight_name, current_linenum, i-1, i+#prefix-1)
|
|
i = i + #prefix
|
|
else
|
|
i = i + 1
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
--- Attach to a buffer and continuously highlight changes.
|
|
-- @tparam[opt=0] integer buf A value of 0 implies the current buffer.
|
|
-- @param[opt] options Configuration options as described in `setup`
|
|
-- @see setup
|
|
local function attach_to_buffer(buf, options)
|
|
local ns = DEFAULT_NAMESPACE
|
|
if buf == 0 or buf == nil then
|
|
buf = nvim.get_current_buf()
|
|
end
|
|
-- Already attached.
|
|
if pcall(vim.api.nvim_buf_get_var, buf, "colorizer_attached") then
|
|
return
|
|
end
|
|
nvim.buf_set_var(buf, "colorizer_attached", true)
|
|
do
|
|
nvim.buf_clear_namespace(buf, ns, 0, -1)
|
|
local lines = nvim.buf_get_lines(buf, 0, -1, true)
|
|
highlight_buffer(buf, ns, lines, 0, options)
|
|
end
|
|
-- send_buffer: true doesn't actually do anything in Lua (yet)
|
|
nvim.buf_attach(buf, false, {
|
|
on_lines = function(event_type, buf, changed_tick, firstline, lastline, new_lastline)
|
|
nvim.buf_clear_namespace(buf, ns, firstline, new_lastline)
|
|
local lines = nvim.buf_get_lines(buf, firstline, new_lastline, true)
|
|
highlight_buffer(buf, ns, lines, firstline, options)
|
|
end;
|
|
})
|
|
end
|
|
|
|
local filetype_options = {}
|
|
local function reload_buffer()
|
|
local options = filetype_options[nvim.bo.filetype] or filetype_options.default
|
|
local ns = DEFAULT_NAMESPACE
|
|
nvim.buf_clear_namespace(0, ns, 0, -1)
|
|
local lines = nvim.buf_get_lines(0, 0, -1, true)
|
|
highlight_buffer(0, ns, lines, 0, options)
|
|
end
|
|
|
|
--- Easy to use function if you want the full setup without fine grained control.
|
|
-- Setup an autocmd which enables colorizing for the filetypes and options specified.
|
|
--
|
|
-- By default highlights all FileTypes.
|
|
--
|
|
-- Example config:
|
|
-- ```
|
|
-- { 'scss', 'html', css = { rgb_fn = true; }, javascript = { no_names = true } }
|
|
-- ```
|
|
--
|
|
-- You can combine an array and more specific options.
|
|
-- Possible options:
|
|
-- - `no_names`: Don't highlight names like Blue
|
|
-- - `rgb_fn`: Highlight `rgb(...)` functions.
|
|
-- - `mode`: Highlight mode. Valid options: `foreground`,`background`
|
|
--
|
|
-- @param[opt={'*'}] filetypes A table/array of filetypes to selectively enable and/or customize. By default, enables all filetypes.
|
|
-- @tparam[opt] {[string]=string} default_options Default options to apply for the filetypes enable.
|
|
-- @usage require'colorizer'.setup()
|
|
local function setup(filetypes, default_options)
|
|
if not nvim.o.termguicolors then
|
|
nvim.err_writeln("&termguicolors must be set")
|
|
return
|
|
end
|
|
initialize_trie()
|
|
filetype_options = {}
|
|
if default_options then
|
|
filetype_options.default = default_options
|
|
end
|
|
function COLORIZER_SETUP_HOOK()
|
|
local filetype = nvim.bo.filetype
|
|
local options = filetype_options[filetype] or default_options
|
|
attach_to_buffer(nvim.get_current_buf(), options)
|
|
end
|
|
nvim.ex.augroup("ColorizerSetup")
|
|
nvim.ex.autocmd_()
|
|
if not filetypes then
|
|
nvim.ex.autocmd("FileType * lua COLORIZER_SETUP_HOOK()")
|
|
else
|
|
for k, v in pairs(filetypes) do
|
|
local filetype
|
|
local options = default_options or {}
|
|
if type(k) == 'string' then
|
|
filetype = k
|
|
if type(v) ~= 'table' then
|
|
nvim.err_writeln("colorizer: Invalid option type for filetype "..filetype)
|
|
else
|
|
options = vim.tbl_extend("keep", v, default_options)
|
|
assert(MODE_NAMES[options.mode or 'background'], "colorizer: Invalid mode: "..tostring(options.mode))
|
|
end
|
|
else
|
|
filetype = v
|
|
end
|
|
filetype_options[filetype] = options
|
|
-- TODO What's the right mode for this? BufEnter?
|
|
nvim.ex.autocmd("FileType", filetype, "lua COLORIZER_SETUP_HOOK()")
|
|
end
|
|
end
|
|
nvim.ex.augroup("END")
|
|
end
|
|
|
|
--- @export
|
|
return {
|
|
DEFAULT_NAMESPACE = DEFAULT_NAMESPACE;
|
|
setup = setup;
|
|
attach_to_buffer = attach_to_buffer;
|
|
highlight_buffer = highlight_buffer;
|
|
reload_buffer = reload_buffer;
|
|
-- initialize = initialize_trie;
|
|
}
|
|
|