Add x and o mode tables to the is_single_keymap_table function
This commit is contained in:
parent
cf1fa53b59
commit
284dca7daf
1 changed files with 1 additions and 1 deletions
|
|
@ -2,7 +2,7 @@ local M = {}
|
||||||
|
|
||||||
local function is_single_keymap_table(map_table)
|
local function is_single_keymap_table(map_table)
|
||||||
assert(map_table)
|
assert(map_table)
|
||||||
return map_table.n or map_table.t or map_table.i or map_table.v
|
return map_table.n or map_table.t or map_table.i or map_table.v or map_table.x or map_table.o
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.create_user_event_cb(event_name, function_callback, augroup)
|
function M.create_user_event_cb(event_name, function_callback, augroup)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue