mirror of
https://github.com/zyedidia/micro.git
synced 2025-06-18 14:55:38 -04:00
Update docs
This commit is contained in:
parent
24a684cff2
commit
98ddb62af4
@ -92,6 +92,8 @@ can change it!
|
|||||||
| Key | Description of function |
|
| Key | Description of function |
|
||||||
|------------------ |---------------------------------------------------------------------------------------------- |
|
|------------------ |---------------------------------------------------------------------------------------------- |
|
||||||
| Alt+N | Create new multiple cursor from selection (will select current word if no current selection) |
|
| Alt+N | Create new multiple cursor from selection (will select current word if no current selection) |
|
||||||
|
| AltShiftUp | Spawn a new cursor on the line above the current one |
|
||||||
|
| AltShiftDown | Spawn a new cursor on the line below the current one |
|
||||||
| Alt+P | Remove latest multiple cursor |
|
| Alt+P | Remove latest multiple cursor |
|
||||||
| Alt+C | Remove all multiple cursors (cancel) |
|
| Alt+C | Remove all multiple cursors (cancel) |
|
||||||
| Alt+X | Skip multiple cursor selection |
|
| Alt+X | Skip multiple cursor selection |
|
||||||
|
@ -230,6 +230,8 @@ Suspend (Unix only)
|
|||||||
ScrollUp
|
ScrollUp
|
||||||
ScrollDown
|
ScrollDown
|
||||||
SpawnMultiCursor
|
SpawnMultiCursor
|
||||||
|
SpawnMultiCursorUp
|
||||||
|
SpawnMultiCursorDown
|
||||||
SpawnMultiCursorSelect
|
SpawnMultiCursorSelect
|
||||||
RemoveMultiCursor
|
RemoveMultiCursor
|
||||||
RemoveAllMultiCursors
|
RemoveAllMultiCursors
|
||||||
@ -483,11 +485,13 @@ MouseWheelRight
|
|||||||
"MouseMiddle": "PastePrimary",
|
"MouseMiddle": "PastePrimary",
|
||||||
"Ctrl-MouseLeft": "MouseMultiCursor",
|
"Ctrl-MouseLeft": "MouseMultiCursor",
|
||||||
|
|
||||||
"Alt-n": "SpawnMultiCursor",
|
"Alt-n": "SpawnMultiCursor",
|
||||||
"Alt-m": "SpawnMultiCursorSelect",
|
"AltShiftUp": "SpawnMultiCursorUp",
|
||||||
"Alt-p": "RemoveMultiCursor",
|
"AltShiftDown": "SpawnMultiCursorDown",
|
||||||
"Alt-c": "RemoveAllMultiCursors",
|
"Alt-m": "SpawnMultiCursorSelect",
|
||||||
"Alt-x": "SkipMultiCursor"
|
"Alt-p": "RemoveMultiCursor",
|
||||||
|
"Alt-c": "RemoveAllMultiCursors",
|
||||||
|
"Alt-x": "SkipMultiCursor",
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user