Skip to content

Commit b2a675e

Browse files
authored
fix(calendar): remove key waiting (#541)
1 parent aa084b5 commit b2a675e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/orgmode/objects/calendar.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function Calendar.open()
7171
vim.api.nvim_buf_set_var(Calendar.buf, 'indent_blankline_enabled', false)
7272
vim.api.nvim_buf_set_option(Calendar.buf, 'bufhidden', 'wipe')
7373

74-
local map_opts = { buffer = Calendar.buf, silent = true }
74+
local map_opts = { buffer = Calendar.buf, silent = true, nowait = true }
7575

7676
vim.keymap.set('n', 'j', '<cmd>lua require("orgmode.objects.calendar").cursor_down()<cr>', map_opts)
7777
vim.keymap.set('n', 'k', '<cmd>lua require("orgmode.objects.calendar").cursor_up()<cr>', map_opts)

0 commit comments

Comments
 (0)