diff --git a/lua/orgmode/objects/calendar.lua b/lua/orgmode/objects/calendar.lua index a8784cda0..841b20806 100644 --- a/lua/orgmode/objects/calendar.lua +++ b/lua/orgmode/objects/calendar.lua @@ -106,6 +106,18 @@ function Calendar:open() vim.keymap.set('n', 'l', function() return self:cursor_right() end, map_opts) + vim.keymap.set('n', '', function() + return self:cursor_down() + end, map_opts) + vim.keymap.set('n', '', function() + return self:cursor_up() + end, map_opts) + vim.keymap.set('n', '', function() + return self:cursor_left() + end, map_opts) + vim.keymap.set('n', '', function() + return self:cursor_right() + end, map_opts) vim.keymap.set('n', '>', function() return self:forward() end, map_opts)