From b19b36d113bfd32d80a5bca72aac10be0ec97e04 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Tue, 30 Aug 2016 18:08:26 -0400 Subject: [PATCH] Update syntax file readme Fixes #245 --- runtime/syntax/README.md | 2 -- 1 file changed, 2 deletions(-) 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