mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-15 15:50:35 -07:00
feat(cli): truncate shell output in UI history and improve active shell display (#17438)
This commit is contained in:
@@ -166,21 +166,27 @@ describe('keyMatchers', () => {
|
||||
{
|
||||
command: Command.SCROLL_UP,
|
||||
positive: [createKey('up', { shift: true })],
|
||||
negative: [createKey('up'), createKey('up', { ctrl: true })],
|
||||
negative: [createKey('up')],
|
||||
},
|
||||
{
|
||||
command: Command.SCROLL_DOWN,
|
||||
positive: [createKey('down', { shift: true })],
|
||||
negative: [createKey('down'), createKey('down', { ctrl: true })],
|
||||
negative: [createKey('down')],
|
||||
},
|
||||
{
|
||||
command: Command.SCROLL_HOME,
|
||||
positive: [createKey('home', { ctrl: true })],
|
||||
positive: [
|
||||
createKey('home', { ctrl: true }),
|
||||
createKey('home', { shift: true }),
|
||||
],
|
||||
negative: [createKey('end'), createKey('home')],
|
||||
},
|
||||
{
|
||||
command: Command.SCROLL_END,
|
||||
positive: [createKey('end', { ctrl: true })],
|
||||
positive: [
|
||||
createKey('end', { ctrl: true }),
|
||||
createKey('end', { shift: true }),
|
||||
],
|
||||
negative: [createKey('home'), createKey('end')],
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user