diff options
| author | Zach DeCook <zach.decook@bettercarpeople.com> | 2023-07-10 11:16:58 -0400 |
|---|---|---|
| committer | Zach DeCook <zach.decook@bettercarpeople.com> | 2023-07-10 11:16:58 -0400 |
| commit | 73660cce390ca7038c2ab01f5f90281ea98b895e (patch) | |
| tree | 182d190c2d3ec362feb7083ff6167e46b42f0421 | |
| parent | 9f6f29edf5d43826ef283dcba89f5aefe93430ef (diff) | |
| download | dotfiles-73660cce390ca7038c2ab01f5f90281ea98b895e.tar.gz | |
micro: improve
| -rw-r--r-- | .config/micro/bindings.json | 10 | ||||
| -rw-r--r-- | .config/micro/syntax/php.yaml | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/.config/micro/bindings.json b/.config/micro/bindings.json index ee8c54a..a699146 100644 --- a/.config/micro/bindings.json +++ b/.config/micro/bindings.json @@ -1,7 +1,17 @@ { + "Alt\"": "command:dquote", + "Alt'": "command:squote", + "Alt(": "command:brace", "Alt-/": "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", + "Alti": "command:incNum", + "Alt{": "command:curly", "Ctrl-Down": "SpawnMultiCursorDown", "Ctrl-MouseWheelDown": "CursorDown", "Ctrl-MouseWheelUp": "CursorUp", diff --git a/.config/micro/syntax/php.yaml b/.config/micro/syntax/php.yaml index 1d4bb9e..31e792b 100644 --- a/.config/micro/syntax/php.yaml +++ b/.config/micro/syntax/php.yaml @@ -1,7 +1,7 @@ filetype: php detect: - filename: "\\.(php|module|install|theme|inc)$" + filename: "(/psysh-edit-command|\\.(php|module|install|theme|inc)$)" rules: - symbol.operator: "<|>" |
