mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
24 lines
478 B
TypeScript
24 lines
478 B
TypeScript
import { getInjectable } from "@ogre-tools/injectable";
|
|
import { keyboardShortcutInjectionToken } from "@k8slens/keyboard-shortcuts";
|
|
|
|
const closeDockShortcutInjectable = getInjectable({
|
|
id: "close-dock-shortcut",
|
|
|
|
instantiate: () => ({
|
|
scope: "dock",
|
|
|
|
binding: {
|
|
shift: true,
|
|
code: "Escape",
|
|
},
|
|
|
|
invoke: () => {
|
|
// Close Dock
|
|
},
|
|
}),
|
|
|
|
injectionToken: keyboardShortcutInjectionToken,
|
|
});
|
|
|
|
export default closeDockShortcutInjectable;
|