We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b7d34c commit 8a54467Copy full SHA for 8a54467
tests/debugprint.lua
@@ -77,8 +77,9 @@ vim.notify = function(msg, _)
77
notify_message = msg
78
end
79
80
-local DATA_PATH = vim.fs.joinpath(vim.fn.stdpath("data"), "debugprint")
81
-local COUNTER_FILE = vim.fs.joinpath(DATA_PATH, "counter")
+-- FIXME: Switch to joinpath for more elegance once we stop supporting <0.10
+local DATA_PATH = vim.fn.stdpath("data") .. "/debugprint"
82
+local COUNTER_FILE = DATA_PATH .. "/counter"
83
84
local teardown = function(opts)
85
opts = vim.tbl_extend("keep", opts or {}, { reset_counter = true })
0 commit comments