personal dotfiles: my Hyprland config
Diffstat (limited to '.config/micro/bindings.json')
| -rw-r--r-- | .config/micro/bindings.json | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/.config/micro/bindings.json b/.config/micro/bindings.json index afff43b..9b595b1 100644 --- a/.config/micro/bindings.json +++ b/.config/micro/bindings.json @@ -1,8 +1,24 @@ { + "Alt\"": "command:dquote", + "Alt'": "command:squote", + "Alt(": "command:brace", "Alt-/": "lua:comment.comment", - "CtrlUnderscore": "lua:comment.comment", + "Alt-l": "command:lower", + "Alt-u": "command:upper", + "Alt\u003c": "command:angle", + "AltC": "command:capital", + "AltI": "command:decNum", + "AltL": "command:upper", + "Alt[": "command:square", + "Alt]": "JumpToMatchingBrace", + "Alti": "command:incNum", + "Alt{": "command:curly", "Ctrl-Down": "SpawnMultiCursorDown", + "Ctrl-MouseWheelDown": "CursorDown", + "Ctrl-MouseWheelUp": "CursorUp", "Ctrl-Up": "SpawnMultiCursorUp", - "Shift-PageDown": "SelectPageDown", - "Shift-PageUp": "SelectPageUp" + "CtrlUnderscore": "lua:comment.comment", + "F4": "command:jumptag", + "ShiftPageDown": "SelectPageDown", + "ShiftPageUp": "SelectPageUp" } |