-
-
Notifications
You must be signed in to change notification settings - Fork 354
Closed as not planned
Labels
bugSomething isn't workingSomething isn't workingreviewed-by-AIThe CodeCompanion agent reviewed this PRThe CodeCompanion agent reviewed this PR
Description
Pre-submission checklist
- I have read the documentation
- I have updated the plugin and all dependencies to the latest versions
- I have searched for existing issues and discussions
- My issue is not a minor or cosmetic quirk (e.g., formatting, spacing, or other non-functional details)
Neovim version (nvim -v)
0.11.4
Operating system/version
Windows 11
Adapter and model
Copilot and GPT-4.1
Describe the bug
I have no file in $PATH:
FAIL in tests\utils\test_files.lua | Files utils | get_mimetype | can invoke `file`:
Failed expectation for equality.
Left: { "file", "--mime-type", "some_file.txt" }
Right: nil
Traceback:
tests\utils\test_files.lua:179
FAIL in tests\utils\test_files.lua | Files utils | get_mimetype | works without `file`:
Failed expectation for equality.
Left: { "file", "--mime-type", "some_file.png" }
Right: nil
Traceback:
tests\utils\test_files.lua:201
files.get_mimetype skips calling vim.system if there's no file in PATH.
I'll put together a PR
Steps to reproduce
- Have no
filein$PATH - run tests
Expected behavior
As described in the tests themselves.
Screenshots or recordings (optional)
No response
minimal.lua file
---@diagnostic disable: missing-fields
--[[
NOTE: Set the config path to enable the copilot adapter to work.
It will search the following paths for a token:
- "$CODECOMPANION_TOKEN_PATH/github-copilot/hosts.json"
- "$CODECOMPANION_TOKEN_PATH/github-copilot/apps.json"
--]]
vim.env["CODECOMPANION_TOKEN_PATH"] = vim.fn.expand("~/.config")
vim.env.LAZY_STDPATH = ".repro"
load(vim.fn.system("curl -s https://raw.githubusercontent.com/folke/lazy.nvim/main/bootstrap.lua"))()
-- Your CodeCompanion setup
local plugins = {
{
"olimorris/codecompanion.nvim",
dependencies = {
-- needed to install additional parsers
{ "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" },
{ "nvim-lua/plenary.nvim" },
-- Test with blink.cmp (delete if not required)
{
"saghen/blink.cmp",
lazy = false,
version = "*",
opts = {
keymap = {
preset = "enter",
["<S-Tab>"] = { "select_prev", "fallback" },
["<Tab>"] = { "select_next", "fallback" },
},
cmdline = { sources = { "cmdline" } },
sources = {
default = { "lsp", "path", "buffer", "codecompanion" },
},
},
},
-- Test with nvim-cmp
-- { "hrsh7th/nvim-cmp" },
},
opts = {
--Refer to: https://github.com/olimorris/codecompanion.nvim/blob/main/lua/codecompanion/config.lua
strategies = {
--NOTE: Change the adapter as required
chat = { adapter = "copilot" },
inline = { adapter = "copilot" },
},
opts = {
log_level = "DEBUG",
},
},
},
}
require("lazy.minit").repro({ spec = plugins })
-- Setup Tree-sitter
local ts_status, treesitter = pcall(require, "nvim-treesitter.configs")
if ts_status then
treesitter.setup({
ensure_installed = { "lua", "markdown", "markdown_inline", "yaml", "diff" },
highlight = { enable = true },
})
end
-- Setup nvim-cmp
-- local cmp_status, cmp = pcall(require, "cmp")
-- if cmp_status then
-- cmp.setup({
-- mapping = cmp.mapping.preset.insert({
-- ["<C-b>"] = cmp.mapping.scroll_docs(-4),
-- ["<C-f>"] = cmp.mapping.scroll_docs(4),
-- ["<C-Space>"] = cmp.mapping.complete(),
-- ["<C-e>"] = cmp.mapping.abort(),
-- ["<CR>"] = cmp.mapping.confirm({ select = true }),
-- -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items.
-- }),
-- })
-- endLog output (optional)
No response
Minimal reproduction confirmation
- Yes, I have tested and provided a
minimal.luafile that reproduces the issue
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingreviewed-by-AIThe CodeCompanion agent reviewed this PRThe CodeCompanion agent reviewed this PR