We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8085edc commit b50988eCopy full SHA for b50988e
lua/orgmode/objects/calendar.lua
@@ -106,6 +106,18 @@ function Calendar:open()
106
vim.keymap.set('n', 'l', function()
107
return self:cursor_right()
108
end, map_opts)
109
+ vim.keymap.set('n', '<Down>', function()
110
+ return self:cursor_down()
111
+ end, map_opts)
112
+ vim.keymap.set('n', '<Up>', function()
113
+ return self:cursor_up()
114
115
+ vim.keymap.set('n', '<Left>', function()
116
+ return self:cursor_left()
117
118
+ vim.keymap.set('n', '<Right>', function()
119
+ return self:cursor_right()
120
121
vim.keymap.set('n', '>', function()
122
return self:forward()
123
0 commit comments