Skip to content

Commit 8040906

Browse files
authored
fix: repair refile to headline in the same file (#633) (#637)
* fix: repair refile to headline in the same file - use correct line position from target headline - reset cursor back * chore: apply requested change (#637) Use vim.fn.winsaveview/winrestview instead of manually caching the cursor position when refiling within the same file. --------- Co-authored-by: Sebastian Flügge <[email protected]>
1 parent 92bfc3f commit 8040906

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lua/orgmode/capture/init.lua

+4-1
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,10 @@ function Capture:_refile_to(opts)
349349

350350
local item = opts.item
351351
if is_same_file and item then
352-
vim.cmd(string.format('silent! %d,%d move %s', item.range.start_line, item.range.end_line, tostring(opts.file)))
352+
local target = opts.range.end_line
353+
local view = vim.fn.winsaveview()
354+
vim.cmd(string.format('silent! %d,%d move %s', item.range.start_line, item.range.end_line, target))
355+
vim.fn.winrestview(view)
353356
return true
354357
end
355358

0 commit comments

Comments
 (0)