We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 08873bf commit e66a641Copy full SHA for e66a641
lua/orgmode/org/mappings.lua
@@ -701,7 +701,7 @@ function OrgMappings:_insert_item_below(listitem)
701
if #text_edits > 0 then
702
vim.lsp.util.apply_text_edits(text_edits, vim.api.nvim_get_current_buf(), constants.default_offset_encoding)
703
704
- vim.fn.cursor(end_row + 1 + (add_empty_line and 1 or 0), 1) -- +1 for next line
+ vim.fn.cursor(end_row + 1 + (add_empty_line and 1 or 0), 99999) -- +1 for next line, go to end of line with arbitrary big column number
705
706
-- update all parents when we insert a new checkbox
707
if checkbox then
0 commit comments