diff --git a/runtime/syntax/README.md b/runtime/syntax/README.md index ea662510..d4d3c6c9 100644 --- a/runtime/syntax/README.md +++ b/runtime/syntax/README.md @@ -8,8 +8,6 @@ Micro syntax files are almost identical to Nano's, except for some key differenc * Micro does not use `icolor`. Instead, for a case insensitive match, use the case insensitive flag (`i`) in the regular expression * For example, `icolor green ".*"` would become `color green (i) ".*"` -* Micro does not support `start="..." end="..."`. Instead use the `s` flag to match newlines and put `.*?` in the middle - * For example `color green start="hello" end="world"` would become `color green (s) "hello.*?world"` # Using with colorschemes