Skip to content

Commit d2919c7

Browse files
Do not double escape for <CR> fallback
1 parent 017570f commit d2919c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/orgmode/org/mappings.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ function OrgMappings:org_return()
494494
return vim.api.nvim_feedkeys(utils.esc(rhs), '', true)
495495
end
496496

497-
return vim.api.nvim_feedkeys(utils.esc(rhs), 'n', true)
497+
return vim.api.nvim_feedkeys(rhs, 'n', true)
498498
end
499499

500500
function OrgMappings:handle_return(suffix)

0 commit comments

Comments
 (0)