mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-16 00:51:25 -07:00
remove unnecessary \x7f key bindings (#16646)
This commit is contained in:
committed by
GitHub
parent
a3234fb534
commit
09a7301d80
@@ -102,11 +102,7 @@ describe('keyMatchers', () => {
|
||||
},
|
||||
{
|
||||
command: Command.DELETE_CHAR_LEFT,
|
||||
positive: [
|
||||
createKey('backspace'),
|
||||
{ ...createKey('\x7f'), sequence: '\x7f' },
|
||||
createKey('h', { ctrl: true }),
|
||||
],
|
||||
positive: [createKey('backspace'), createKey('h', { ctrl: true })],
|
||||
negative: [createKey('h'), createKey('x', { ctrl: true })],
|
||||
},
|
||||
{
|
||||
@@ -119,8 +115,6 @@ describe('keyMatchers', () => {
|
||||
positive: [
|
||||
createKey('backspace', { ctrl: true }),
|
||||
createKey('backspace', { meta: true }),
|
||||
{ ...createKey('\x7f', { ctrl: true }), sequence: '\x7f' },
|
||||
{ ...createKey('\x7f', { meta: true }), sequence: '\x7f' },
|
||||
createKey('w', { ctrl: true }),
|
||||
],
|
||||
negative: [createKey('backspace'), createKey('delete', { ctrl: true })],
|
||||
|
||||
Reference in New Issue
Block a user