`right` not working after selecting to the left with selectionBehaviour "character"
With selectionBehaviour set to "character", if you selects to the left, and then press right or `l`, the cursor does not move.
For example, starting here:
```
foo
^ 0
```
press `b`
```
foo
|^^ 0
```
then `l`. Expected behaviour: the cursor moves to the right like this:
```
foo
| 0
```
Actual behaviour: the cursor does not move:
```
foo
| 0
```
If you now press `l`, the cursor will move properly again.
关闭于 2025-12-14 0 条评论