Core Movements
Intro
Core Movements is one of the main concepts in Ki, because it is standardized for every selection modes.
There are 9 movements in total:
Keymap
◀
▶
Left/Right
Left/Right means move to the previous/next selection of the current selection mode.
For example:
Selection Mode | Meaning |
---|---|
Syntax Node | Next/Previous named sibling |
Full Line | Next/Previous empty line |
▲
▼
Up/Down
Up/Down means move to the nearest selection above/below the current line, except for the following selection modes:
Selection Mode | Meaning |
---|---|
Syntax Node | Parent or First-Sibling |
Quickfix | To first item of next/previous file |
◀◀
▶▶
First/Last
Selection Mode | Meaning |
---|---|
Syntax Node | First/Last named sibling |
Quickfix | First/Last item |
Char | First/Last char in the current word |
Word | First/Last word in the current token |
Token | First/Last token in the current sentence |
Line & Full Line | First/Last line of the current file |
Jump
This is my favorite movement, which is inspired by Vim Easymotion and friends 1.
It allows you to jump to your desired position (as long as it is within the screen), with just 4 keypresses most of the time.
It works like this:
- Choose your selection mode
- Press
f
- Press the first letter of the selection that you want to jump to.
- Press the letter that appears on top of the selection.
- Done.
Recommended selection modes:
- Syntax Node
- Word
- Token
This movement can also work with the Swap mode to swap two syntax expressions that are far apart.
Note: All letters after the first will be selected based on key accessibility in the chosen keyboard layout.
Index
Jump to Index
When this is activated, you will be prompted to key in a 1-based index, which after Enter will take you to the nth selection of the current selection mode.
Recommended selection modes:
- Line (For going to a specific line number)
- Char (For going to a specific column number)
Current
This is not really a movement, since its not "moving" the selections per se.
There's no specific keybinding for Current because it is triggered whenever a selection mode is chosen.
For example, choosing the Line selection mode causes the current line to be selected, choosing the Word selection mode causes the current word to be selected.
In cases where there's no matching selection under the cursor, the Current movement chooses the nearest selection based on the following criteria (in order):
- Same line as cursor (if possible)
- Nearest to cursor (in terms of horizontal movements)
Footnotes
-
hop.nvim, leap.nvim, lightspeed.nvim etc. ↩