2021-02-15 18:09:12 +00:00
|
|
|
-- Copyright (c) 2020-2021 shadmansaleh
|
|
|
|
-- MIT license, see LICENSE for more details.
|
|
|
|
local M = {}
|
|
|
|
|
2021-04-13 12:36:51 +00:00
|
|
|
-- Note for now only works for termguicolors scope can be bg or fg or any other
|
|
|
|
-- attr parameter like bold/italic/reverse
|
2021-02-17 18:29:50 +00:00
|
|
|
function M.extract_highlight_colors(color_group, scope)
|
2021-09-03 18:28:20 +00:00
|
|
|
if vim.fn.hlexists(color_group) == 0 then
|
|
|
|
return nil
|
|
|
|
end
|
2021-04-13 12:36:51 +00:00
|
|
|
local color = vim.api.nvim_get_hl_by_name(color_group, true)
|
|
|
|
if color.background ~= nil then
|
|
|
|
color.bg = string.format('#%06x', color.background)
|
|
|
|
color.background = nil
|
2021-02-20 03:21:05 +00:00
|
|
|
end
|
2021-04-13 12:36:51 +00:00
|
|
|
if color.foreground ~= nil then
|
|
|
|
color.fg = string.format('#%06x', color.foreground)
|
|
|
|
color.foreground = nil
|
2021-02-20 03:21:05 +00:00
|
|
|
end
|
2021-09-03 18:28:20 +00:00
|
|
|
if scope then
|
|
|
|
return color[scope]
|
|
|
|
end
|
2021-02-20 03:21:05 +00:00
|
|
|
return color
|
|
|
|
end
|
|
|
|
|
2021-09-17 09:16:38 +00:00
|
|
|
-- retrives color value from highlight group name in syntax_list
|
|
|
|
-- first present highlight is returned
|
|
|
|
function M.extract_color_from_hllist(scope, syntaxlist, default)
|
|
|
|
for _, highlight_name in ipairs(syntaxlist) do
|
|
|
|
if vim.fn.hlexists(highlight_name) ~= 0 then
|
|
|
|
local color = M.extract_highlight_colors(highlight_name)
|
|
|
|
if color.reverse then
|
|
|
|
if scope == 'bg' then
|
|
|
|
scope = 'fg'
|
|
|
|
else
|
|
|
|
scope = 'bg'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if color[scope] then
|
|
|
|
return color[scope]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return default
|
|
|
|
end
|
|
|
|
|
2021-04-11 08:20:41 +00:00
|
|
|
-- remove empty strings from list
|
|
|
|
function M.list_shrink(list)
|
|
|
|
local new_list = {}
|
|
|
|
for i = 1, #list do
|
2021-09-03 18:28:20 +00:00
|
|
|
if list[i] and #list[i] > 0 then
|
|
|
|
table.insert(new_list, list[i])
|
|
|
|
end
|
2021-04-11 08:20:41 +00:00
|
|
|
end
|
|
|
|
return new_list
|
|
|
|
end
|
|
|
|
|
2021-08-08 16:03:58 +00:00
|
|
|
-- Check if a auto command is already defined
|
|
|
|
local function autocmd_is_defined(event, patern, command_str)
|
2021-09-03 18:28:20 +00:00
|
|
|
return vim.api.nvim_exec(string.format('au lualine %s %s', event, patern), true):find(command_str) ~= nil
|
2021-08-08 16:03:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
-- Define a auto command if it's not already defined
|
|
|
|
function M.define_autocmd(event, patern, cmd)
|
2021-09-03 18:28:20 +00:00
|
|
|
if not cmd then
|
|
|
|
cmd = patern
|
|
|
|
patern = '*'
|
|
|
|
end
|
2021-08-08 16:03:58 +00:00
|
|
|
if not autocmd_is_defined(event, patern, cmd) then
|
2021-09-03 18:28:20 +00:00
|
|
|
vim.cmd(string.format('autocmd lualine %s %s %s', event, patern, cmd))
|
2021-05-04 04:56:58 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-08-08 16:03:58 +00:00
|
|
|
-- Check if statusline is on focused window or not
|
|
|
|
function M.is_focused()
|
|
|
|
return tonumber(vim.g.actual_curwin) == vim.fn.win_getid()
|
|
|
|
end
|
|
|
|
|
2021-08-25 11:43:12 +00:00
|
|
|
function M.charAt(str, pos)
|
|
|
|
return string.char(str:byte(pos))
|
|
|
|
end
|
|
|
|
|
2021-02-15 18:09:12 +00:00
|
|
|
return M
|