We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
replace
It is impossible to overwrite the window-scoped options set by these lines when using replace layout, even by configuring according to the document (https://github.com/CopilotC-Nvim/CopilotChat.nvim?tab=readme-ov-file#customizing-buffers).
CopilotChat.nvim/lua/CopilotChat/chat.lua
Lines 197 to 207 in 82923ef
mkdir --parents /tmp/nvim/plugins git clone https://github.com/CopilotC-Nvim/CopilotChat.nvim /tmp/nvim/plugins/CopilotChat.nvim git clone https://github.com/zbirenbaum/copilot.lua /tmp/nvim/plugins/copilot.lua git clone https://github.com/nvim-lua/plenary.nvim /tmp/nvim/plugins/plenary.nvim echo 'vim.opt.rtp:append("/tmp/nvim/plugins/CopilotChat.nvim") vim.opt.rtp:append("/tmp/nvim/plugins/copilot.lua") vim.opt.rtp:append("/tmp/nvim/plugins/plenary.nvim") require("CopilotChat").setup({ window = { layout = "replace" } }) vim.api.nvim_create_autocmd("BufEnter", { pattern = "copilot-*", callback = function() vim.opt_local.cursorline = false end, })' > /tmp/nvim/init.lua nvim -u /tmp/nvim/init.lua
:CopilotChat
Cursorline is shown.
The text was updated successfully, but these errors were encountered:
set cursorline
No branches or pull requests
It is impossible to overwrite the window-scoped options set by these lines when using
replace
layout, even by configuring according to the document (https://github.com/CopilotC-Nvim/CopilotChat.nvim?tab=readme-ov-file#customizing-buffers).CopilotChat.nvim/lua/CopilotChat/chat.lua
Lines 197 to 207 in 82923ef
How to reproduce
Cursorline is shown.
The text was updated successfully, but these errors were encountered: