aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-textedit
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-07-05 12:16:36 -0400
committerKen Moore <ken@ixsystems.com>2017-07-05 12:16:36 -0400
commit0c5959471008a91c00e64cdff16abb91d8569afe (patch)
treeedb0c5d169788fe0e00585813d0679003ada1084 /src-qt5/desktop-utils/lumina-textedit
parentAdd a README.md to lumina-fileinfo (diff)
downloadlumina-0c5959471008a91c00e64cdff16abb91d8569afe.tar.gz
lumina-0c5959471008a91c00e64cdff16abb91d8569afe.tar.bz2
lumina-0c5959471008a91c00e64cdff16abb91d8569afe.zip
Add a bunch more README.md files for the rest of the lumina desktop-utilities.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-textedit')
-rw-r--r--src-qt5/desktop-utils/lumina-textedit/README.md38
1 files changed, 38 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-textedit/README.md b/src-qt5/desktop-utils/lumina-textedit/README.md
new file mode 100644
index 00000000..6597d0fe
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-textedit/README.md
@@ -0,0 +1,38 @@
+## Plaintext Editor for the Lumina Desktop
+
+This is a plaintext editor with a number of advanced features:
+
+Key Features:
+ * Multiple file support (one file per tab)
+ * Find/Replace support
+ * Flexible Interface
+ * Tabs can be moved to any edge of the window
+ * Line numbering support
+ * Line-wrap support
+ * Change text font/size independently from the file itself
+ * Colors used for highlighting support can be easily customized
+ * Syntax Highlighting Support
+ * Simple JSON file manifest for support rules
+ * Automatic document settings
+ * Monospaced fonts on/off
+ * Character limit per line
+ * Highlight excess whitespace on the end of lines
+ * Enable line-wrap by default on/off
+
+Syntax files:
+ * File format can be found in the [syntax_support/README.md](https://github.com/trueos/lumina/blob/master/src-qt5/desktop-utils/lumina-textedit/syntax_rules/README.md) file.
+ * Syntax files are installed in PREFIX/share/lumina-desktop/syntax_rules with a ".syntax" suffix.
+ * Additional files can be provided/installed by the user within the "~/.config/lumina-desktop/syntax_rules" directory.
+
+### Library Dependencies
+
+1. Qt 5.2+ (specific modules listed below)
+ * concurrent
+ * core
+ * gui
+ * network
+ * multimedia
+ * svg
+ * widgets
+2. Other Libraries
+ * libc
bgstack15