diff options
| author | Jacob Richman <[email protected]> | 2025-08-15 08:31:17 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-15 15:31:17 +0000 |
| commit | 32d1ac3ce2d92bb7a1efc297ec39572b1120a717 (patch) | |
| tree | 53a585d3bd6927951fcd7b91ab2df2d7435b3f7f /packages/cli/src | |
| parent | ddbe65e8c32cef67f7562b7f02aaf6e9fefb6968 (diff) | |
fix(input) ctrl-j support was lost switching to keyBindings.ts (#6305)
Co-authored-by: Bryan Morgan <[email protected]>
Diffstat (limited to 'packages/cli/src')
| -rw-r--r-- | packages/cli/src/config/keyBindings.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/cli/src/config/keyBindings.ts b/packages/cli/src/config/keyBindings.ts index 8060cbba..ed1301ea 100644 --- a/packages/cli/src/config/keyBindings.ts +++ b/packages/cli/src/config/keyBindings.ts @@ -147,6 +147,7 @@ export const defaultKeyBindings: KeyBindingConfig = { { key: 'return', command: true }, { key: 'return', paste: true }, { key: 'return', shift: true }, + { key: 'j', ctrl: true }, ], // External tools |
