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
Hi,
I have a problem with multiline insertions for the GO code. It works fine for LUA (e.g. nvim config) but it doesn't for GO.
Here are the examples:
Here's my config
return { { "olimorris/codecompanion.nvim", dependencies = { "nvim-lua/plenary.nvim", "nvim-treesitter/nvim-treesitter", }, config = function() require("codecompanion").setup({}) vim.cmd([[ let g:codecompanion_disable_inline_edit = 1 ]]) vim.keymap.set("n", "<leader>ac", "<cmd>CodeCompanionChat Toggle<cr>", { noremap = true, silent = true }) end, }, { "MeanderingProgrammer/render-markdown.nvim", ft = { "markdown", "codecompanion" } }, { "zbirenbaum/copilot.lua", event = "InsertEnter", config = function() local copilot = require("copilot") local Snacks = require("snacks") copilot.setup({ panel = { enabled = false, }, suggestion = { enabled = false, }, }) end, }, { "zbirenbaum/copilot-cmp", config = function() require("copilot_cmp").setup() end, }, }
I'm not sure what's not working here, it seems that the problem is somehow related to the the languege.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I have a problem with multiline insertions for the GO code. It works fine for LUA (e.g. nvim config) but it doesn't for GO.
Here are the examples:
Here's my config
I'm not sure what's not working here, it seems that the problem is somehow related to the the languege.
The text was updated successfully, but these errors were encountered: