aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-textedit/tests/test.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-09 14:04:11 -0400
committerKen Moore <ken@ixsystems.com>2017-06-09 14:04:11 -0400
commitbbf81abc29e626b654366b7083babe9f355709ea (patch)
treef62602228809158e4e48d465f58f323b453a673c /src-qt5/desktop-utils/lumina-textedit/tests/test.cpp
parentGet the SyntaxFile loading mechanisms all setup. (diff)
downloadlumina-bbf81abc29e626b654366b7083babe9f355709ea.tar.gz
lumina-bbf81abc29e626b654366b7083babe9f355709ea.tar.bz2
lumina-bbf81abc29e626b654366b7083babe9f355709ea.zip
Get the new syntax highlighting support framework functional with the C++ rules files as the example (still need to convert the other existing rulesets over to the new format).
Diffstat (limited to 'src-qt5/desktop-utils/lumina-textedit/tests/test.cpp')
-rw-r--r--src-qt5/desktop-utils/lumina-textedit/tests/test.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-textedit/tests/test.cpp b/src-qt5/desktop-utils/lumina-textedit/tests/test.cpp
index e135227d..31e15eea 100644
--- a/src-qt5/desktop-utils/lumina-textedit/tests/test.cpp
+++ b/src-qt5/desktop-utils/lumina-textedit/tests/test.cpp
@@ -12,7 +12,12 @@ line
comment */
stuff
-some /*single line comment with multi-line tags */
+some /*single line comment with multi-line tags */ and other stuff
"some text"
"some text with url: http://sample.com"
+
+switch(something){
+ case 1:
+
+}
bgstack15