(key: string)
| 70 | * Check if a motion is inclusive (includes character at destination). |
| 71 | */ |
| 72 | export function isInclusiveMotion(key: string): boolean { |
| 73 | return 'eE$'.includes(key) |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Check if a motion is linewise (operates on full lines when used with operators). |