2022-03-26 13:31:40 +00:00
|
|
|
local Window = require('lualine.components.windows.window')
|
|
|
|
local M = require('lualine.components.buffers'):extend()
|
|
|
|
|
|
|
|
local default_options = {
|
|
|
|
disabled_filetypes = {},
|
|
|
|
disabled_buftypes = { 'quickfix', 'prompt' },
|
|
|
|
}
|
|
|
|
|
|
|
|
function M:init(options)
|
2022-05-30 14:25:05 +00:00
|
|
|
options.buffers_color = nil -- buffers_color isn't windows option.
|
2022-03-26 13:31:40 +00:00
|
|
|
M.super.init(self, options)
|
|
|
|
|
|
|
|
self.options = vim.tbl_deep_extend('keep', self.options or {}, default_options)
|
|
|
|
self.options.windows_color = vim.tbl_deep_extend('keep', self.options.windows_color or {}, self.options.buffers_color)
|
2022-05-30 14:25:05 +00:00
|
|
|
self.options.buffers_color = nil -- this is the default value of colors generated by parent buffers component.
|
2022-03-26 13:31:40 +00:00
|
|
|
|
|
|
|
self.highlights = {
|
2022-04-14 18:30:47 +00:00
|
|
|
active = self:create_hl(self.options.windows_color.active, 'active'),
|
|
|
|
inactive = self:create_hl(self.options.windows_color.inactive, 'inactive'),
|
2022-03-26 13:31:40 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
function M:new_buffer(winnr)
|
|
|
|
winnr = winnr or vim.api.nvim_get_current_win()
|
|
|
|
|
|
|
|
return Window:new {
|
|
|
|
winnr = winnr,
|
|
|
|
options = self.options,
|
|
|
|
highlights = self.highlights,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Override to only return buffers shown in the windows of the current tab
|
|
|
|
function M:buffers()
|
|
|
|
local tabnr = vim.api.nvim_get_current_tabpage()
|
|
|
|
local buffers = {}
|
|
|
|
|
|
|
|
for _, winnr in ipairs(vim.api.nvim_tabpage_list_wins(tabnr)) do
|
|
|
|
if not self:should_hide(winnr) then
|
|
|
|
buffers[#buffers + 1] = self:new_buffer(winnr)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return buffers
|
|
|
|
end
|
|
|
|
|
|
|
|
function M:should_hide(winnr)
|
|
|
|
local bufnr = vim.api.nvim_win_get_buf(winnr)
|
|
|
|
local filetype = vim.api.nvim_buf_get_option(bufnr, 'filetype')
|
|
|
|
local buftype = vim.api.nvim_buf_get_option(bufnr, 'buftype')
|
|
|
|
local is_filetype_disabled = vim.tbl_contains(self.options.disabled_filetypes, filetype)
|
|
|
|
local is_buftype_disabled = vim.tbl_contains(self.options.disabled_buftypes, buftype)
|
|
|
|
local is_floating = '' ~= vim.api.nvim_win_get_config(winnr).relative
|
|
|
|
|
|
|
|
return is_floating or is_buftype_disabled or is_filetype_disabled
|
|
|
|
end
|
|
|
|
|
|
|
|
vim.cmd([[
|
|
|
|
function! LualineSwitchWindow(win_number, mouseclicks, mousebutton, modifiers)
|
|
|
|
execute a:win_number . 'wincmd w'
|
|
|
|
endfunction
|
|
|
|
]])
|
|
|
|
|
|
|
|
return M
|