mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-17 00:31:44 -07:00
feat(cli): disable ctrl-s shortcut outside of alternate buffer mode (#18887)
This commit is contained in:
@@ -344,11 +344,12 @@ describe('keyMatchers', () => {
|
||||
},
|
||||
{
|
||||
command: Command.SHOW_MORE_LINES,
|
||||
positive: [
|
||||
positive: [createKey('o', { ctrl: true })],
|
||||
negative: [
|
||||
createKey('s', { ctrl: true }),
|
||||
createKey('o', { ctrl: true }),
|
||||
createKey('s'),
|
||||
createKey('l', { ctrl: true }),
|
||||
],
|
||||
negative: [createKey('s'), createKey('l', { ctrl: true })],
|
||||
},
|
||||
|
||||
// Shell commands
|
||||
|
||||
Reference in New Issue
Block a user