mhartington/formatter.nvim

Formatter fails on secondary drives (D)

Opened this issue · 0 comments

Which configuration?
Type (custom or builtin):
Filetype: multiple, at least JSON. YAML, python
Formatter: js-beautify, prettier, black

Configuration(s) (post all the variants you tried):
return {
"mhartington/formatter.nvim",
event = { "VeryLazy" },
keys = {
{
-- Customize or remove this keymap to your liking
"cf",
"Format",
mode = { "n", "x" },
desc = "Conform File",
},
},
config = function()
require("formatter").setup({
logging = true,
log_level = vim.log.levels.DEBUG,
filetype = {
lua = { require("formatter.filetypes.lua").stylua },
python = { require("formatter.filetypes.python").black },
cs = { require("formatter.filetypes.cs").csharpier },
json = { require("formatter.filetypes.json").prettier },
yaml = { require("formatter.filetypes.yaml").prettier },
},
})
end,
}

Expected behavior
Formatters should format the buffer

Actual behaviour
Get empty error message. Get INFO message "No change necessary with "

Additional context
I've tried the same file in both my C and D drive, plugin always fails on D drive, works on C. Using Windows 10, default command prompt.