diff options
Diffstat (limited to '.config/micro')
| -rw-r--r-- | .config/micro/bindings.json | 2 | ||||
| -rw-r--r-- | .config/micro/syntax/php.yaml | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.config/micro/bindings.json b/.config/micro/bindings.json index 3432690..9b595b1 100644 --- a/.config/micro/bindings.json +++ b/.config/micro/bindings.json @@ -10,7 +10,7 @@ "AltI": "command:decNum", "AltL": "command:upper", "Alt[": "command:square", - "Alt]": "lua:bounce.bounce", + "Alt]": "JumpToMatchingBrace", "Alti": "command:incNum", "Alt{": "command:curly", "Ctrl-Down": "SpawnMultiCursorDown", diff --git a/.config/micro/syntax/php.yaml b/.config/micro/syntax/php.yaml index 8ffbb48..027e859 100644 --- a/.config/micro/syntax/php.yaml +++ b/.config/micro/syntax/php.yaml @@ -55,12 +55,12 @@ rules: - preproc: "<!DOCTYPE.+?>" - default: - start: "<<<SQL" - end: "SQL;" + start: "<<<'?SQL'?" + end: "( |^)SQL" rules: - include: "sql" - default: - start: "<<<XML" + start: "<<<'?XML'?" end: "XML;" rules: - include: "xml" |
