Debugging

master
Bryan 2024-10-21 22:53:20 -06:00
parent 5a8e259cec
commit 983c2166b5
1 changed files with 2 additions and 1 deletions

View File

@ -76,7 +76,8 @@ function M.in_and_out_cmd()
end
if target_pos then
vim.print("target pos " .. target_pos)
vim.fn.setcmdpos(target_pos + 1)
local worked = vim.fn.setcmdpos(target_pos + 1)
vim.print("worked = " .. worked)
end
-- vim.fn.setcmdpos(1)
end