fixed prettier for special file names

This commit is contained in:
MasterGordon 2021-09-06 06:30:02 +02:00
parent 6b9d409af9
commit 95cafcddcd
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
local prettierd = function() local prettierd = function()
return { return {
exe = "prettierd", exe = "prettierd",
args = {vim.api.nvim_buf_get_name(0)}, args = {"'" .. vim.api.nvim_buf_get_name(0) .. "'"},
stdin = true stdin = true
} }
end end