You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 19, 2022. It is now read-only.
localopts= { noremap=true, silent=true }
localmap=vim.api.nvim_set_keymapmap('nt', '<C-x>j', [[<cmd> lua print("not broken!")<CR>]], opts)
-- prints either nt or nlocaladd_cmd=vim.api.nvim_create_user_commandadd_cmd('Printmode', function() print(vim.api.nvim_get_mode().mode) end, {})
This fails with E5113: Error while calling lua chunk: $USER/.config/nvim/lua/my_keymaps.lua:534: Shortname is too long: nt,
even though nvim_get_mode() provides us with a mode nt. I would expect that there is somewhere a lua function for the "visual mode in the terminal" such that one can do keybindings there, if there is an api function that tells us we are in a different mode.
see below: "mapping mode is just the first char of nvim_get_mode().mode" info is missing
The text was updated successfully, but these errors were encountered:
matu3ba
changed the title
explain discrepancy of :lua print(vim.api.nvim_get_mode().mode) and vim.api.nvim_set_keymap(nt, ..)
explain discrepancy of :lua print(vim.api.nvim_get_mode().mode) and vim.api.nvim_set_keymap(nt, ..) not working
Sep 7, 2022
state.c tells us that there is a major and minor mode, but there is also no doc about nvim_get_mode.
Since the docs have entries on normal insertion mode, this looks like neovim core forgot about normal terminal mode.
The test in vim_spec.lua also does not cover all major + minor modes.
And finally, it sounds like a good idea to tell users that there is something like a minor mode and they can not use keybindings to the minor mode.
"mapping mode is just the first char of nvim_get_mode().mode"
UPDATE: removed unrelevant things and added last sentence.
well, the docs of nvim_set_keymap() does state that a single-letter mode should be used, like "n", "i", "v", "x", "!" or an empty string. The error message could be made more friendly than "shortname is too long" though.
matu3ba
changed the title
explain discrepancy of :lua print(vim.api.nvim_get_mode().mode) and vim.api.nvim_set_keymap(nt, ..) not working
explain that vim.api.nvim_set_keymap(mode, ..) is first char of :lua print(vim.api.nvim_get_mode().mode) and hint that there is a minor mode
Sep 7, 2022
Assume the following snippet be in the init.lua
This fails with
E5113: Error while calling lua chunk: $USER/.config/nvim/lua/my_keymaps.lua:534: Shortname is too long: nt
,even though
nvim_get_mode()
provides us with a modent
.I would expect that there is somewhere a lua function for the "visual mode in the terminal" such that one can do keybindings there, if there is an api function that tells us we are in a different mode.see below: "mapping mode is just the first char of nvim_get_mode().mode" info is missing
The text was updated successfully, but these errors were encountered: