1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/business-features/keyboard-shortcuts
Janne Savolainen a0cfeb18c0
Enable keyboard shortcuts automatically instead of requiring explicit listener to be used in the application
Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
2023-04-03 07:12:21 +03:00
..
src Enable keyboard shortcuts automatically instead of requiring explicit listener to be used in the application 2023-04-03 07:12:21 +03:00
.eslintrc.json Introduce feature for assigning keyboard shortcuts 2023-04-03 07:12:18 +03:00
.prettierrc Introduce feature for assigning keyboard shortcuts 2023-04-03 07:12:18 +03:00
index.ts Enable keyboard shortcuts automatically instead of requiring explicit listener to be used in the application 2023-04-03 07:12:21 +03:00
jest.config.js Introduce feature for assigning keyboard shortcuts 2023-04-03 07:12:18 +03:00
package.json Enable keyboard shortcuts automatically instead of requiring explicit listener to be used in the application 2023-04-03 07:12:21 +03:00
README.md Introduce feature for assigning keyboard shortcuts 2023-04-03 07:12:18 +03:00
tsconfig.json Introduce feature for assigning keyboard shortcuts 2023-04-03 07:12:18 +03:00
webpack.config.js Introduce feature for assigning keyboard shortcuts 2023-04-03 07:12:18 +03:00

@k8slens/keyboard-shortcuts

This Feature enables keyboard shortcuts in Lens

Usage

$ npm install @k8slens/keyboard-shortcuts
import { keyboardShortcutsFeature } from "@k8slens/keyboard-shortcuts";
import { registerFeature } from "@k8slens/feature-core";
import { createContainer } from "@ogre-tools/injectable";

const di = createContainer("some-container");

registerFeature(di, keyboardShortcutsFeature);

Extendability