We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32c6111 commit c4517ccCopy full SHA for c4517cc
lua/rest-nvim/health.lua
@@ -64,9 +64,9 @@ local function formatter_health()
64
vim.health.warn("Options 'formatexpr' or 'formatprg' are not set for " .. ft .. " filetype")
65
else
66
if formatexpr ~= "" then
67
- vim.health.ok(("Option 'formatexpr' is set to \"%s\" for %s filetype"):format(formatexpr, ft))
+ vim.health.ok(("Option 'formatexpr' is set to `%s` for %s filetype"):format(formatexpr, ft))
68
69
- vim.health.ok(("Option 'formatprg' is set to \"%s\" for %s filetype"):format(formatexpr, ft))
+ vim.health.ok(("Option 'formatprg' is set to `%s` for %s filetype"):format(formatexpr, ft))
70
end
71
72
0 commit comments