mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
plugins/barbar: add keymaps.* options for missing actions
Co-authored-by: Ismaïl Senhaji <134528+iSma@users.noreply.github.com>
This commit is contained in:
parent
1c270521ad
commit
34d56c712e
2 changed files with 15 additions and 0 deletions
|
@ -12,6 +12,9 @@ let
|
||||||
next = "Next";
|
next = "Next";
|
||||||
movePrevious = "MovePrevious";
|
movePrevious = "MovePrevious";
|
||||||
moveNext = "MoveNext";
|
moveNext = "MoveNext";
|
||||||
|
moveStart = "MoveStart";
|
||||||
|
scrollLeft = "ScrollLeft";
|
||||||
|
scrollRight = "ScrollRight";
|
||||||
goTo1 = "Goto 1";
|
goTo1 = "Goto 1";
|
||||||
goTo2 = "Goto 2";
|
goTo2 = "Goto 2";
|
||||||
goTo3 = "Goto 3";
|
goTo3 = "Goto 3";
|
||||||
|
@ -21,11 +24,22 @@ let
|
||||||
goTo7 = "Goto 7";
|
goTo7 = "Goto 7";
|
||||||
goTo8 = "Goto 8";
|
goTo8 = "Goto 8";
|
||||||
goTo9 = "Goto 9";
|
goTo9 = "Goto 9";
|
||||||
|
first = "First";
|
||||||
last = "Last";
|
last = "Last";
|
||||||
pin = "Pin";
|
pin = "Pin";
|
||||||
|
restore = "Restore";
|
||||||
close = "Close";
|
close = "Close";
|
||||||
|
closeAllButCurrent = "CloseAllButCurrent";
|
||||||
|
closeAllButVisible = "CloseAllButVisible";
|
||||||
|
closeAllButPinned = "CloseAllButPinned";
|
||||||
|
closeAllButCurrentOrPinned = "CloseAllButCurrentOrPinned";
|
||||||
|
closeBuffersLeft = "CloseBuffersLeft";
|
||||||
|
closeBuffersRight = "CloseBuffersRight";
|
||||||
|
wipeout = "Wipeout";
|
||||||
pick = "Pick";
|
pick = "Pick";
|
||||||
|
pickDelete = "PickDelete";
|
||||||
orderByBufferNumber = "OrderByBufferNumber";
|
orderByBufferNumber = "OrderByBufferNumber";
|
||||||
|
orderByName = "OrderByName";
|
||||||
orderByDirectory = "OrderByDirectory";
|
orderByDirectory = "OrderByDirectory";
|
||||||
orderByLanguage = "OrderByLanguage";
|
orderByLanguage = "OrderByLanguage";
|
||||||
orderByWindowNumber = "OrderByWindowNumber";
|
orderByWindowNumber = "OrderByWindowNumber";
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
key = "<C-w>";
|
key = "<C-w>";
|
||||||
options.desc = "Barbar close tab";
|
options.desc = "Barbar close tab";
|
||||||
};
|
};
|
||||||
|
restore.key = "<C-S-t>";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue