fix: set mode for all keymaps
This commit is contained in:
parent
53fdfbb8ba
commit
ec180d7365
13 changed files with 83 additions and 9 deletions
|
|
@ -2,26 +2,26 @@
|
|||
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_mappings.lua#L121-L124
|
||||
[
|
||||
{
|
||||
mode = "t";
|
||||
key = "<C-H>";
|
||||
mode = [ "t" ];
|
||||
action = "<Cmd>wincmd h<CR>";
|
||||
options.desc = "Terminal left window navigation";
|
||||
}
|
||||
{
|
||||
mode = "t";
|
||||
key = "<C-J>";
|
||||
mode = [ "t" ];
|
||||
action = "<Cmd>wincmd j<CR>";
|
||||
options.desc = "Terminal down window navigation";
|
||||
}
|
||||
{
|
||||
mode = "t";
|
||||
key = "<C-K>";
|
||||
mode = [ "t" ];
|
||||
action = "<Cmd>wincmd k<CR>";
|
||||
options.desc = "Terminal up window navigation";
|
||||
}
|
||||
{
|
||||
mode = "t";
|
||||
key = "<C-L>";
|
||||
mode = [ "t" ];
|
||||
action = "<Cmd>wincmd l<CR>";
|
||||
options.desc = "Terminal right window navigation";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue