Skip to content

Commit

Permalink
fix(formatter/taplo): fix string format parameters (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
aemr3 authored Feb 11, 2024
1 parent 475c44c commit aba9a11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/efmls-configs/formatters/taplo.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ local fs = require('efmls-configs.fs')

local formatter = 'taplo'
local args = 'format -'
local command = string.format(fs.executable(formatter), args)
local command = string.format('%s %s', fs.executable(formatter), args)

return {
formatCanRange = true,
Expand Down

0 comments on commit aba9a11

Please sign in to comment.