From 878a75be962b1ee90f47804b92c59bc6804364e9 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Thu, 22 Jun 2017 04:53:53 -0400 Subject: Add a couple more files to lumina-textedit: 1) A basic "text" syntax rule set (no highlighting, word wrap) 2) A test file for the XML rules. --- .../lumina-textedit/syntax_rules/txt.syntax | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src-qt5/desktop-utils/lumina-textedit/syntax_rules/txt.syntax (limited to 'src-qt5/desktop-utils/lumina-textedit/syntax_rules/txt.syntax') diff --git a/src-qt5/desktop-utils/lumina-textedit/syntax_rules/txt.syntax b/src-qt5/desktop-utils/lumina-textedit/syntax_rules/txt.syntax new file mode 100644 index 00000000..0dec37b9 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-textedit/syntax_rules/txt.syntax @@ -0,0 +1,18 @@ +# Syntax support file for the Lumina Text Editor +# =================================== +# Basic text file support rules +# Written by Ken Moore +# Released under the 2-clause BSD license +# =================================== + +{ + "meta": { + "name": "Simple Text", + "file_suffix": ["txt", "note"] + }, + "format": { + "line_wrap": true, + "highlight_whitespace_eol": false + }, + "rules": [ ] +} -- cgit