From 123f0cb39e9670e9e89a2f62e2d5657c3e74aaa7 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Sun, 11 Jun 2017 05:17:35 -0400 Subject: Add support for a new "file_regex" flag in the JSON syntax manifests that can be used when looking for matching file type support. --- src-qt5/desktop-utils/lumina-textedit/syntax_rules/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils/lumina-textedit/syntax_rules/README.md') diff --git a/src-qt5/desktop-utils/lumina-textedit/syntax_rules/README.md b/src-qt5/desktop-utils/lumina-textedit/syntax_rules/README.md index c2629e7c..fa00b557 100644 --- a/src-qt5/desktop-utils/lumina-textedit/syntax_rules/README.md +++ b/src-qt5/desktop-utils/lumina-textedit/syntax_rules/README.md @@ -9,7 +9,9 @@ A small comment section may be placed at the top of the file where every line st # Requirements 1. A "meta" object containing the following variables (meta information about the rules): 1. "name" : The name that will be shown to the user for this set of syntax rules. - 2. "file_suffix" : An array of suffixes for identifying which files this rule set supports. + 2. If this syntax file is to be automatically applied to particular file type, then one of the following options must be set: + 1. "file_suffix" : An array of file extensions which are supported by this syntax rule set (Example: temp.foo will be matched by "file_suffix"=["foo"] ) + 2. "file_regex" : A regular expression which should be used to find if the filename matches this rule set. 2. A "format" object containing the following variables (file-wide formatting): 1. "columns_per_line" : (integer, optional) For file formats with line-length restrictions, this will automatically highlight/flag any "overage" of the designated limit. 2. "highlight_whitespace_eol" : (boolian, optional) Highlight any excess whitespace at the end of a line. -- cgit