mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 04:40:05 +08:00
24 lines
243 B
Plaintext
24 lines
243 B
Plaintext
|
Given vim (Nesting):
|
||
|
|
||
|
if
|
||
|
if
|
||
|
if
|
||
|
|
||
|
endif
|
||
|
endif
|
||
|
endif
|
||
|
|
||
|
Before (Cursor):
|
||
|
normal! 5gg
|
||
|
|
||
|
Do (Move [%):
|
||
|
[%
|
||
|
Then (Verify line):
|
||
|
Assert line('.') == 4
|
||
|
|
||
|
Do (Move [% twice):
|
||
|
[%[%
|
||
|
Then (Verify line):
|
||
|
Assert line('.') == 3
|
||
|
|