Make <Down> set both left and right margin to zero

(Undocumented) <Up> will clear *UP* left_margin, right_margin, and stick_to_left
This commit is contained in:
Junegunn Choi
2013-10-03 16:06:23 +09:00
parent e4f86274e3
commit 3304f4e95a
3 changed files with 7 additions and 1 deletions

View File

@@ -158,6 +158,7 @@ keys listed below. The meaning of each option will be described in
| `CTRL-O` | `mode_sequence` | Input string of `/[lrc]+\*{0,2}/` |
| `<Left>` | `stick_to_left` | `{ 'stick_to_left': 1, 'left_margin': 0 }` |
| `<Right>` | `stick_to_left` | `{ 'stick_to_left': 0, 'left_margin': 1 }` |
| `<Down>` | `*_margin` | `{ 'left_margin': 0, 'right_margin': 0 }` |
---