Fullstack vs Neovim MCP #2505
-
|
First of all, I'm loving codecompanion and I believe this tool helped the entire neovim community not miss out on AI agent that every other nowadays IDEs have. Thank you so much for a wonderful tool! Ever since i configured MCP, i have been using Neovim MCP (the default one that comes with MCPHub.nvim) mainly because
But i have been experiencing a bit of issue with MCP at work because the npm server at work goes through vpn, and #{neovim} is usually not ready to be used until all other mcps are loaded. So I'm trying to get used to the default fullstack tool but I cant seem to find a setting where it allows the tool to show me what commands it ran to do what, and what the outcomes were in the chat buffer. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
|
I believe the |
Beta Was this translation helpful? Give feedback.
-
|
Hello @ckangnz,
I’m interested in what you mean here, could you expand on the diff experience? I tried the Neovim MCP diff myself, but the virtual text and colors made it feel a bit hard to read. I think a comparable experience would be switching the diff layout to “buffer” instead of the default “float.” -- https://codecompanion.olimorris.dev/configuration/chat-buffer#diff
require("codecompanion").setup({
display = {
diff = {
provider_opts = {
inline = {
layout = "buffer", -- float|buffer - Where to display the diff
},
},
},
},
}) |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.




Thank you for all the details! I’ll review them over the weekend and also take a look at the
@neovimedit and diff.I agree, though it’s not an essential feature I think. That said, with the new super_diff (after v18) and if the PR is merged, it should be possible to track which prompt made which diffs with proper checkpoints.