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