]> git.lizzy.rs Git - micro.git/blobdiff - runtime/syntax/README.md
Merge pull request #233 from schollz/master
[micro.git] / runtime / syntax / README.md
index ea66251056fe2e0241943dec732c58f50649039e..d4d3c6c91624d722915233e6a6ad4e76cfe7f7dc 100644 (file)
@@ -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