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 0c9a259 commit 3cee776Copy full SHA for 3cee776
lua/orgmode/config/defaults.lua
@@ -65,7 +65,9 @@ return {
65
org_agenda_year_view = 'vy',
66
org_agenda_quit = 'q',
67
org_agenda_switch_to = '<CR>',
68
- org_agenda_goto = { '<TAB>' },
+ org_agenda_goto = {
69
+ n = '<TAB>',
70
+ },
71
org_agenda_goto_date = 'J',
72
org_agenda_redo = 'r',
73
org_agenda_todo = 't',
lua/orgmode/config/init.lua
@@ -243,7 +243,7 @@ function Config:setup_mappings(category)
243
for mode, key in pairs(keys) do
244
local mapping = map[mode] or false
245
if mapping then
246
- action = table.concat(mapping['action'], ', ')
+ local action = table.concat(mapping['action'], ',')
247
utils.buf_keymap(
248
0,
249
mode,
0 commit comments