personal dotfiles: my Hyprland config
micro: add jump
| -rw-r--r-- | .config/micro/bindings.json | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.config/micro/bindings.json b/.config/micro/bindings.json index 5a7992e..ee8c54a 100644 --- a/.config/micro/bindings.json +++ b/.config/micro/bindings.json @@ -1,13 +1,13 @@ { "Alt-/": "lua:comment.comment", - "Alt-u": "command:upper", "Alt-l": "command:lower", + "Alt-u": "command:upper", "Ctrl-Down": "SpawnMultiCursorDown", "Ctrl-MouseWheelDown": "CursorDown", "Ctrl-MouseWheelUp": "CursorUp", "Ctrl-Up": "SpawnMultiCursorUp", - //"CtrlA": "StartOfTextToggle", - "ShiftPageUp": "SelectPageUp", + "CtrlUnderscore": "lua:comment.comment", + "F4": "command:jumptag", "ShiftPageDown": "SelectPageDown", - "CtrlUnderscore": "lua:comment.comment" + "ShiftPageUp": "SelectPageUp" } |