mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
24 lines
495 B
TypeScript
24 lines
495 B
TypeScript
import { getInjectable } from "@ogre-tools/injectable";
|
|
import { keyboardShortcutInjectionToken } from "@k8slens/keyboard-shortcuts";
|
|
|
|
const switchToNextTabShortcutInjectable = getInjectable({
|
|
id: "switch-to-next-tab-shortcut",
|
|
|
|
instantiate: () => ({
|
|
scope: "dock",
|
|
|
|
binding: {
|
|
ctrl: true,
|
|
code: "Period",
|
|
},
|
|
|
|
invoke: () => {
|
|
// Next tab
|
|
},
|
|
}),
|
|
|
|
injectionToken: keyboardShortcutInjectionToken,
|
|
});
|
|
|
|
export default switchToNextTabShortcutInjectable;
|