mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-23 11:34:44 -07:00
fix(vim): vim support that feels (more) complete (#18755)
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com>
This commit is contained in:
@@ -1708,6 +1708,7 @@ describe('useVim hook', () => {
|
||||
cursorRow: 0,
|
||||
cursorCol: 6,
|
||||
actionType: 'vim_delete_to_end_of_line' as const,
|
||||
count: 1,
|
||||
expectedLines: ['hello '],
|
||||
expectedCursorRow: 0,
|
||||
expectedCursorCol: 6,
|
||||
@@ -1719,6 +1720,7 @@ describe('useVim hook', () => {
|
||||
cursorRow: 0,
|
||||
cursorCol: 11,
|
||||
actionType: 'vim_delete_to_end_of_line' as const,
|
||||
count: 1,
|
||||
expectedLines: ['hello world'],
|
||||
expectedCursorRow: 0,
|
||||
expectedCursorCol: 11,
|
||||
@@ -1730,6 +1732,7 @@ describe('useVim hook', () => {
|
||||
cursorRow: 0,
|
||||
cursorCol: 6,
|
||||
actionType: 'vim_change_to_end_of_line' as const,
|
||||
count: 1,
|
||||
expectedLines: ['hello '],
|
||||
expectedCursorRow: 0,
|
||||
expectedCursorCol: 6,
|
||||
@@ -1741,6 +1744,7 @@ describe('useVim hook', () => {
|
||||
cursorRow: 0,
|
||||
cursorCol: 0,
|
||||
actionType: 'vim_change_to_end_of_line' as const,
|
||||
count: 1,
|
||||
expectedLines: [''],
|
||||
expectedCursorRow: 0,
|
||||
expectedCursorCol: 0,
|
||||
|
||||
Reference in New Issue
Block a user