aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-09-06 15:38:46 -0400
committerKen Moore <ken@ixsystems.com>2018-09-06 15:38:46 -0400
commit11d6df32d25b6573525179d197d4aeb0ed6acf18 (patch)
tree4a108439a2dcb8af3536fab49fcde3586f6a0d73
parentFix the refreshing of directories. (diff)
downloadlumina-11d6df32d25b6573525179d197d4aeb0ed6acf18.tar.gz
lumina-11d6df32d25b6573525179d197d4aeb0ed6acf18.tar.bz2
lumina-11d6df32d25b6573525179d197d4aeb0ed6acf18.zip
iFix a syntax issue with the cpp.json syntax ruleset
-rw-r--r--src-qt5/desktop-utils/lumina-textedit/syntax_rules/cpp.syntax2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-textedit/syntax_rules/cpp.syntax b/src-qt5/desktop-utils/lumina-textedit/syntax_rules/cpp.syntax
index acbc3d6f..8f4b9afd 100644
--- a/src-qt5/desktop-utils/lumina-textedit/syntax_rules/cpp.syntax
+++ b/src-qt5/desktop-utils/lumina-textedit/syntax_rules/cpp.syntax
@@ -12,7 +12,7 @@
},
"format": {
"line_wrap": false,
- "highlight_whitespace_eol": true
+ "highlight_whitespace_eol": true,
"check_spelling": false
},
"rules": [{
bgstack15