added buffer select menu

This commit is contained in:
Ian Griffin 2025-09-25 15:00:39 +08:00
parent dbb9af29d5
commit 23662ac758
1 changed files with 21 additions and 20 deletions

View File

@ -2,7 +2,7 @@
-- Configuration Tools
--
local ct = require('conftool')
local defs = require('defs')
-- local defs = require('defs')
--
-- Maps
@ -54,26 +54,27 @@ for func_name, _ in pairs(lsp_buf) do
end
end
function toggle_background()
local bg = vim.o.background
-- function toggle_background()
-- local bg = vim.o.background
--
-- if bg == "dark" then
-- vim.cmd("set background=light")
-- else
-- vim.cmd("set background=dark")
-- end
--
-- -- Query the current colorscheme
-- --[[ local colorscheme = vim.fn.executable('colorscheme') or ""
-- -- colorscheme = colorscheme:match("^%s*(.-)%s*$")
--
-- -- Reload the colorscheme if it was set
-- if colorscheme ~= "" then
-- vim.cmd("colorscheme " .. colorscheme)
-- end ]]--
-- end
-- ct.map('n', '<Leader>c', '<cmd>lua toggle_background()<CR>')
if bg == "dark" then
vim.cmd("set background=light")
else
vim.cmd("set background=dark")
end
-- Query the current colorscheme
--[[ local colorscheme = vim.fn.executable('colorscheme') or ""
-- colorscheme = colorscheme:match("^%s*(.-)%s*$")
-- Reload the colorscheme if it was set
if colorscheme ~= "" then
vim.cmd("colorscheme " .. colorscheme)
end ]]--
end
ct.map('n', '<Leader>b', '<cmd>lua toggle_background()<CR>')
ct.map('n', '<Leader>b', ':buffer<Space><C-z>')
--
-- Commands
--