Prevent to mess up chat windows

This commit is contained in:
Jonas Widen 2025-03-16 14:51:09 +01:00
parent 5497e10394
commit 1c55832ea4

View File

@ -26,8 +26,24 @@ local function update_chat_window(new_content)
if not chat_bufnr or not vim.api.nvim_buf_is_valid(chat_bufnr) then
-- Create a new buffer for chat
chat_bufnr = vim.api.nvim_create_buf(false, true)
-- Set buffer options to prevent file operations
vim.api.nvim_buf_set_option(chat_bufnr, 'buftype', 'nofile')
vim.api.nvim_buf_set_option(chat_bufnr, 'filetype', 'markdown')
vim.api.nvim_buf_set_option(chat_bufnr, 'buflisted', false)
vim.api.nvim_buf_set_option(chat_bufnr, 'swapfile', false)
vim.api.nvim_buf_set_option(chat_bufnr, 'bufhidden', 'wipe')
-- Create buffer-local autocmds to prevent file operations
local augroup = vim.api.nvim_create_augroup('GeminiChatBuffer', { clear = true })
vim.api.nvim_create_autocmd({'BufReadCmd', 'FileReadCmd', 'BufWriteCmd'}, {
group = augroup,
buffer = chat_bufnr,
callback = function()
vim.notify('File operations are not allowed in the chat window', vim.log.levels.WARN)
return true -- Prevent the default behavior
end
})
end
-- Calculate dimensions
@ -62,6 +78,18 @@ local function update_chat_window(new_content)
chat_winnr = nil
end, { buffer = chat_bufnr, nowait = true })
-- Disable common file operation commands in the chat buffer
local disabled_commands = {
'edit', 'enew', 'new', 'vnew', 'split', 'vsplit',
'read', 'write', 'update', 'saveas'
}
for _, cmd in ipairs(disabled_commands) do
vim.api.nvim_buf_create_user_command(chat_bufnr, cmd, function()
vim.notify('Command not allowed in chat window', vim.log.levels.WARN)
end, {})
end
-- Add input mapping
vim.keymap.set('n', 'i', function()
vim.ui.input({ prompt = "Gemini: " }, function(input)