add aerial keymaps
This commit is contained in:
parent
14c5e44ebd
commit
c8b6b023a3
2 changed files with 21 additions and 3 deletions
|
|
@ -35,11 +35,29 @@
|
|||
};
|
||||
|
||||
rootOpts.keymaps = [
|
||||
{
|
||||
mode = "n";
|
||||
key = "<leader>lO";
|
||||
action.__raw = ''function() require("aerial").open({direction = "left"}) end'';
|
||||
options.desc = "Symbols outline (left)";
|
||||
}
|
||||
{
|
||||
mode = "n";
|
||||
key = "<leader>lo";
|
||||
action.__raw = ''function() require("aerial").toggle() end'';
|
||||
options.desc = "Symbols outline";
|
||||
action.__raw = ''function() require("aerial").open({direction = "float"}) end'';
|
||||
options.desc = "Symbols outline (floating)";
|
||||
}
|
||||
{
|
||||
mode = "n";
|
||||
key = "]S";
|
||||
action.__raw = ''function() require("aerial").next() end'';
|
||||
options.desc = "Next symbol";
|
||||
}
|
||||
{
|
||||
mode = "n";
|
||||
key = "[S";
|
||||
action.__raw = ''function() require("aerial").prev() end'';
|
||||
options.desc = "Previous symbol";
|
||||
}
|
||||
{
|
||||
mode = "n";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue