Skip to content

Commit 3b7d34c

Browse files
committed
fix: Don't use vim.fs.rm(), it's not in stable yet
1 parent efa336e commit 3b7d34c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/debugprint/counter.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ end
3333
---@return nil
3434
M.reset_debug_prints_counter = function()
3535
if vim.fn.filewritable(COUNTER_FILE) == 1 then
36-
vim.fs.rm(COUNTER_FILE)
36+
vim.fn.delete(COUNTER_FILE)
3737
end
3838

3939
default_counter = nil

0 commit comments

Comments
 (0)