# Vim more - 1

New line & go into insert mode

```python
o # new line after the current line
O # ... before ...
```

Movement

```
b # to previous word head
w # to next word head
e # to next word tail
```

Delete

```python
x # delete character on cursor

dd
D # delete to eof


d-j # delete this line and next line
d-k # delete this line and upper line

d-l # delete right
d-h # delete left
```

Joint

```python
J # join next line to current line
```

Undo / Redo

```python
u # undo
ctrl-r # redo
```

<http://tnerual.eriogerg.free.fr/vimqrc.html>
