gtksourceview4 3.2.9-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/COPYING.LIB +502 -0
- data/README.md +24 -0
- data/Rakefile +61 -0
- data/dependency-check/Rakefile +43 -0
- data/gtksourceview4.gemspec +45 -0
- data/lib/gtksourceview4.rb +56 -0
- data/lib/gtksourceview4/deprecated.rb +49 -0
- data/lib/gtksourceview4/loader.rb +49 -0
- data/lib/gtksourceview4/mark-attributes.rb +29 -0
- data/test/run-test.rb +62 -0
- data/test/test-mark-attributes.rb +26 -0
- data/test/test-source-gutter-renderer.rb +33 -0
- data/test/test-source-language-manager.rb +46 -0
- data/test/test-source-view.rb +55 -0
- data/vendor/local/bin/libgtksourceview-4-0.dll +0 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +72 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksource-enumtypes.h +107 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksource.h +67 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceautocleanups.h +63 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcebuffer.h +279 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcecompletion.h +156 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcecompletioncontext.h +102 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcecompletioninfo.h +77 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcecompletionitem.h +92 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcecompletionproposal.h +126 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcecompletionprovider.h +166 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceencoding.h +74 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcefile.h +195 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcefileloader.h +140 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcefilesaver.h +168 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcegutter.h +93 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcegutterrenderer.h +272 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcegutterrendererpixbuf.h +91 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcegutterrenderertext.h +92 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceinit.h +40 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcelanguage.h +98 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcelanguagemanager.h +92 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcemap.h +70 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcemark.h +79 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcemarkattributes.h +112 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceprintcompositor.h +223 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceregion.h +127 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcesearchcontext.h +161 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcesearchsettings.h +100 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcespacedrawer.h +144 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcestyle.h +54 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcestylescheme.h +119 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcestyleschemechooser.h +66 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcestyleschemechooserbutton.h +64 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcestyleschemechooserwidget.h +64 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcestyleschememanager.h +100 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcetag.h +54 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcetypes.h +73 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceundomanager.h +90 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceutils.h +41 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceversion.h +578 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceview.h +266 -0
- data/vendor/local/lib/girepository-1.0/GtkSource-4.typelib +0 -0
- data/vendor/local/lib/libgtksourceview-4.dll.a +0 -0
- data/vendor/local/lib/libgtksourceview-4.la +41 -0
- data/vendor/local/lib/pkgconfig/gtksourceview-4.pc +12 -0
- data/vendor/local/share/gir-1.0/GtkSource-4.gir +12999 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceBuffer.html +2421 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceCompletion.html +1087 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceCompletionContext.html +402 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceCompletionInfo.html +207 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceCompletionItem.html +497 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceCompletionProposal.html +668 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceCompletionProvider.html +837 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceCompletionWords.html +343 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceEncoding.html +391 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceFile.html +769 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceFileLoader.html +780 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceFileSaver.html +965 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceGutter.html +438 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceGutterRenderer.html +1708 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceGutterRendererPixbuf.html +369 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceGutterRendererText.html +299 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceLanguage.html +579 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceLanguageManager.html +473 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceMap.html +254 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceMark.html +307 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceMarkAttributes.html +788 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourcePrintCompositor.html +2121 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceRegion.html +870 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceSearchContext.html +1216 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceSearchSettings.html +603 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceSpaceDrawer.html +671 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceStyle.html +433 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceStyleScheme.html +396 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceStyleSchemeChooser.html +214 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceStyleSchemeChooserButton.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceStyleSchemeChooserWidget.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceStyleSchemeManager.html +460 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceTag.html +179 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceUndoManager.html +460 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceView.html +2369 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/annexes.html +55 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/annotation-glossary.html +74 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-2-0.html +62 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-2-10.html +86 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-2-12.html +34 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-2-2.html +270 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-2-4.html +34 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-2-8.html +46 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-0.html +42 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-10.html +170 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-12.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-14.html +298 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-16.html +106 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-18.html +114 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-20.html +130 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-22.html +106 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-24.html +126 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-4.html +34 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-4-0.html +65 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-deprecated.html +30 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-full.html +2586 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-reference.html +174 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/completion.html +52 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/file-loading-and-saving.html +43 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/general.html +32 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/gtksourceview-4.0-GtkSourceUtils.html +151 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/gtksourceview-4.0-GtkSourceView-Initialization-and-Finalization.html +100 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/gtksourceview-4.0-Version-Information.html +511 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/gtksourceview-4.0.devhelp2 +819 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/gutter.html +49 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/index.html +215 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/intro.html +56 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/lang-reference.html +946 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/lang-tutorial.html +652 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/main-classes.html +37 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/misc.html +52 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/object-tree.html +98 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/porting-guide-3-to-4.html +152 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/porting-guide.html +33 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/printing.html +32 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/search-and-replace.html +37 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/style-reference.html +305 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/style.css +483 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/styling.html +49 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/syntax-highlighting-reference.html +49 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/syntax-highlighting.html +37 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/up.png +0 -0
- data/vendor/local/share/gtksourceview-4/language-specs/R.lang +2198 -0
- data/vendor/local/share/gtksourceview-4/language-specs/abnf.lang +109 -0
- data/vendor/local/share/gtksourceview-4/language-specs/actionscript.lang +267 -0
- data/vendor/local/share/gtksourceview-4/language-specs/ada.lang +220 -0
- data/vendor/local/share/gtksourceview-4/language-specs/ansforth94.lang +728 -0
- data/vendor/local/share/gtksourceview-4/language-specs/asp.lang +1096 -0
- data/vendor/local/share/gtksourceview-4/language-specs/automake.lang +329 -0
- data/vendor/local/share/gtksourceview-4/language-specs/awk.lang +137 -0
- data/vendor/local/share/gtksourceview-4/language-specs/bennugd.lang +266 -0
- data/vendor/local/share/gtksourceview-4/language-specs/bibtex.lang +120 -0
- data/vendor/local/share/gtksourceview-4/language-specs/bluespec.lang +187 -0
- data/vendor/local/share/gtksourceview-4/language-specs/boo.lang +256 -0
- data/vendor/local/share/gtksourceview-4/language-specs/c.lang +343 -0
- data/vendor/local/share/gtksourceview-4/language-specs/cg.lang +231 -0
- data/vendor/local/share/gtksourceview-4/language-specs/changelog.lang +91 -0
- data/vendor/local/share/gtksourceview-4/language-specs/chdr.lang +50 -0
- data/vendor/local/share/gtksourceview-4/language-specs/cmake.lang +817 -0
- data/vendor/local/share/gtksourceview-4/language-specs/cobol.lang +646 -0
- data/vendor/local/share/gtksourceview-4/language-specs/cpp.lang +119 -0
- data/vendor/local/share/gtksourceview-4/language-specs/cpphdr.lang +41 -0
- data/vendor/local/share/gtksourceview-4/language-specs/csharp.lang +285 -0
- data/vendor/local/share/gtksourceview-4/language-specs/css.lang +2411 -0
- data/vendor/local/share/gtksourceview-4/language-specs/csv.lang +73 -0
- data/vendor/local/share/gtksourceview-4/language-specs/cuda.lang +281 -0
- data/vendor/local/share/gtksourceview-4/language-specs/d.lang +317 -0
- data/vendor/local/share/gtksourceview-4/language-specs/def.lang +261 -0
- data/vendor/local/share/gtksourceview-4/language-specs/desktop.lang +297 -0
- data/vendor/local/share/gtksourceview-4/language-specs/diff.lang +84 -0
- data/vendor/local/share/gtksourceview-4/language-specs/docbook.lang +475 -0
- data/vendor/local/share/gtksourceview-4/language-specs/dosbatch.lang +166 -0
- data/vendor/local/share/gtksourceview-4/language-specs/dot.lang +139 -0
- data/vendor/local/share/gtksourceview-4/language-specs/dpatch.lang +47 -0
- data/vendor/local/share/gtksourceview-4/language-specs/dtd.lang +139 -0
- data/vendor/local/share/gtksourceview-4/language-specs/dtl.lang +297 -0
- data/vendor/local/share/gtksourceview-4/language-specs/eiffel.lang +238 -0
- data/vendor/local/share/gtksourceview-4/language-specs/erlang.lang +262 -0
- data/vendor/local/share/gtksourceview-4/language-specs/fcl.lang +113 -0
- data/vendor/local/share/gtksourceview-4/language-specs/forth.lang +234 -0
- data/vendor/local/share/gtksourceview-4/language-specs/fortran.lang +710 -0
- data/vendor/local/share/gtksourceview-4/language-specs/fsharp.lang +324 -0
- data/vendor/local/share/gtksourceview-4/language-specs/gap.lang +84 -0
- data/vendor/local/share/gtksourceview-4/language-specs/gdb-log.lang +151 -0
- data/vendor/local/share/gtksourceview-4/language-specs/genie.lang +237 -0
- data/vendor/local/share/gtksourceview-4/language-specs/glsl.lang +482 -0
- data/vendor/local/share/gtksourceview-4/language-specs/go.lang +274 -0
- data/vendor/local/share/gtksourceview-4/language-specs/groovy.lang +330 -0
- data/vendor/local/share/gtksourceview-4/language-specs/gtk-doc.lang +90 -0
- data/vendor/local/share/gtksourceview-4/language-specs/gtkrc.lang +115 -0
- data/vendor/local/share/gtksourceview-4/language-specs/haddock.lang +161 -0
- data/vendor/local/share/gtksourceview-4/language-specs/haskell-literate.lang +58 -0
- data/vendor/local/share/gtksourceview-4/language-specs/haskell.lang +227 -0
- data/vendor/local/share/gtksourceview-4/language-specs/haxe.lang +237 -0
- data/vendor/local/share/gtksourceview-4/language-specs/html.lang +286 -0
- data/vendor/local/share/gtksourceview-4/language-specs/idl-exelis.lang +619 -0
- data/vendor/local/share/gtksourceview-4/language-specs/idl.lang +153 -0
- data/vendor/local/share/gtksourceview-4/language-specs/imagej.lang +783 -0
- data/vendor/local/share/gtksourceview-4/language-specs/ini.lang +94 -0
- data/vendor/local/share/gtksourceview-4/language-specs/j.lang +239 -0
- data/vendor/local/share/gtksourceview-4/language-specs/jade.lang +248 -0
- data/vendor/local/share/gtksourceview-4/language-specs/java.lang +188 -0
- data/vendor/local/share/gtksourceview-4/language-specs/javascript.lang +354 -0
- data/vendor/local/share/gtksourceview-4/language-specs/json.lang +124 -0
- data/vendor/local/share/gtksourceview-4/language-specs/julia.lang +376 -0
- data/vendor/local/share/gtksourceview-4/language-specs/kotlin.lang +389 -0
- data/vendor/local/share/gtksourceview-4/language-specs/language.dtd +72 -0
- data/vendor/local/share/gtksourceview-4/language-specs/language.rng +372 -0
- data/vendor/local/share/gtksourceview-4/language-specs/language2.rng +481 -0
- data/vendor/local/share/gtksourceview-4/language-specs/latex.lang +636 -0
- data/vendor/local/share/gtksourceview-4/language-specs/less.lang +793 -0
- data/vendor/local/share/gtksourceview-4/language-specs/lex.lang +208 -0
- data/vendor/local/share/gtksourceview-4/language-specs/libtool.lang +55 -0
- data/vendor/local/share/gtksourceview-4/language-specs/llvm.lang +314 -0
- data/vendor/local/share/gtksourceview-4/language-specs/logcat.lang +107 -0
- data/vendor/local/share/gtksourceview-4/language-specs/lua.lang +301 -0
- data/vendor/local/share/gtksourceview-4/language-specs/m4.lang +1374 -0
- data/vendor/local/share/gtksourceview-4/language-specs/makefile.lang +190 -0
- data/vendor/local/share/gtksourceview-4/language-specs/mallard.lang +123 -0
- data/vendor/local/share/gtksourceview-4/language-specs/markdown.lang +401 -0
- data/vendor/local/share/gtksourceview-4/language-specs/matlab.lang +148 -0
- data/vendor/local/share/gtksourceview-4/language-specs/maxima.lang +1864 -0
- data/vendor/local/share/gtksourceview-4/language-specs/mediawiki.lang +326 -0
- data/vendor/local/share/gtksourceview-4/language-specs/meson.lang +132 -0
- data/vendor/local/share/gtksourceview-4/language-specs/modelica.lang +261 -0
- data/vendor/local/share/gtksourceview-4/language-specs/mxml.lang +64 -0
- data/vendor/local/share/gtksourceview-4/language-specs/nemerle.lang +262 -0
- data/vendor/local/share/gtksourceview-4/language-specs/netrexx.lang +318 -0
- data/vendor/local/share/gtksourceview-4/language-specs/nsis.lang +87 -0
- data/vendor/local/share/gtksourceview-4/language-specs/objc.lang +119 -0
- data/vendor/local/share/gtksourceview-4/language-specs/objj.lang +127 -0
- data/vendor/local/share/gtksourceview-4/language-specs/ocaml.lang +301 -0
- data/vendor/local/share/gtksourceview-4/language-specs/ocl.lang +138 -0
- data/vendor/local/share/gtksourceview-4/language-specs/octave.lang +1757 -0
- data/vendor/local/share/gtksourceview-4/language-specs/ooc.lang +264 -0
- data/vendor/local/share/gtksourceview-4/language-specs/opal.lang +342 -0
- data/vendor/local/share/gtksourceview-4/language-specs/opencl.lang +599 -0
- data/vendor/local/share/gtksourceview-4/language-specs/pascal.lang +267 -0
- data/vendor/local/share/gtksourceview-4/language-specs/perl.lang +1044 -0
- data/vendor/local/share/gtksourceview-4/language-specs/php.lang +362 -0
- data/vendor/local/share/gtksourceview-4/language-specs/pig.lang +292 -0
- data/vendor/local/share/gtksourceview-4/language-specs/pkgconfig.lang +61 -0
- data/vendor/local/share/gtksourceview-4/language-specs/po.lang +93 -0
- data/vendor/local/share/gtksourceview-4/language-specs/prolog.lang +248 -0
- data/vendor/local/share/gtksourceview-4/language-specs/protobuf.lang +134 -0
- data/vendor/local/share/gtksourceview-4/language-specs/puppet.lang +696 -0
- data/vendor/local/share/gtksourceview-4/language-specs/python.lang +475 -0
- data/vendor/local/share/gtksourceview-4/language-specs/python3.lang +198 -0
- data/vendor/local/share/gtksourceview-4/language-specs/rpmspec.lang +215 -0
- data/vendor/local/share/gtksourceview-4/language-specs/rst.lang +141 -0
- data/vendor/local/share/gtksourceview-4/language-specs/ruby.lang +748 -0
- data/vendor/local/share/gtksourceview-4/language-specs/rust.lang +334 -0
- data/vendor/local/share/gtksourceview-4/language-specs/scala.lang +383 -0
- data/vendor/local/share/gtksourceview-4/language-specs/scheme.lang +301 -0
- data/vendor/local/share/gtksourceview-4/language-specs/scilab.lang +208 -0
- data/vendor/local/share/gtksourceview-4/language-specs/scss.lang +878 -0
- data/vendor/local/share/gtksourceview-4/language-specs/sh.lang +516 -0
- data/vendor/local/share/gtksourceview-4/language-specs/sml.lang +200 -0
- data/vendor/local/share/gtksourceview-4/language-specs/sparql.lang +451 -0
- data/vendor/local/share/gtksourceview-4/language-specs/sql.lang +617 -0
- data/vendor/local/share/gtksourceview-4/language-specs/sweave.lang +66 -0
- data/vendor/local/share/gtksourceview-4/language-specs/swift.lang +440 -0
- data/vendor/local/share/gtksourceview-4/language-specs/systemverilog.lang +262 -0
- data/vendor/local/share/gtksourceview-4/language-specs/t2t.lang +149 -0
- data/vendor/local/share/gtksourceview-4/language-specs/tcl.lang +145 -0
- data/vendor/local/share/gtksourceview-4/language-specs/tera.lang +142 -0
- data/vendor/local/share/gtksourceview-4/language-specs/texinfo.lang +447 -0
- data/vendor/local/share/gtksourceview-4/language-specs/thrift.lang +266 -0
- data/vendor/local/share/gtksourceview-4/language-specs/toml.lang +282 -0
- data/vendor/local/share/gtksourceview-4/language-specs/vala.lang +411 -0
- data/vendor/local/share/gtksourceview-4/language-specs/vbnet.lang +247 -0
- data/vendor/local/share/gtksourceview-4/language-specs/verilog.lang +475 -0
- data/vendor/local/share/gtksourceview-4/language-specs/vhdl.lang +247 -0
- data/vendor/local/share/gtksourceview-4/language-specs/xml.lang +219 -0
- data/vendor/local/share/gtksourceview-4/language-specs/xslt.lang +120 -0
- data/vendor/local/share/gtksourceview-4/language-specs/yacc.lang +176 -0
- data/vendor/local/share/gtksourceview-4/language-specs/yaml.lang +213 -0
- data/vendor/local/share/gtksourceview-4/styles/classic.xml +122 -0
- data/vendor/local/share/gtksourceview-4/styles/cobalt.xml +150 -0
- data/vendor/local/share/gtksourceview-4/styles/kate.xml +171 -0
- data/vendor/local/share/gtksourceview-4/styles/oblivion.xml +133 -0
- data/vendor/local/share/gtksourceview-4/styles/solarized-dark.xml +103 -0
- data/vendor/local/share/gtksourceview-4/styles/solarized-light.xml +102 -0
- data/vendor/local/share/gtksourceview-4/styles/styles.rng +139 -0
- data/vendor/local/share/gtksourceview-4/styles/tango.xml +130 -0
- data/vendor/local/share/license/gtksourceview/AUTHORS +15 -0
- data/vendor/local/share/license/gtksourceview/COPYING +504 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/en@shaw/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/fur/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/mg/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/tg/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtksourceview-4.mo +0 -0
- metadata +437 -0
@@ -0,0 +1,793 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!--
|
3
|
+
|
4
|
+
This file is part of GtkSourceView
|
5
|
+
|
6
|
+
Author: Jeffery To <jeffery.to@gmail.com>
|
7
|
+
Copyright (C) 2018 Jeffery To <jeffery.to@gmail.com>
|
8
|
+
|
9
|
+
GtkSourceView is free software; you can redistribute it and/or
|
10
|
+
modify it under the terms of the GNU Lesser General Public
|
11
|
+
License as published by the Free Software Foundation; either
|
12
|
+
version 2.1 of the License, or (at your option) any later version.
|
13
|
+
|
14
|
+
GtkSourceView is distributed in the hope that it will be useful,
|
15
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
17
|
+
Lesser General Public License for more details.
|
18
|
+
|
19
|
+
You should have received a copy of the GNU Lesser General Public License
|
20
|
+
along with this library; if not, see <http://www.gnu.org/licenses/>.
|
21
|
+
|
22
|
+
-->
|
23
|
+
<language id="less" name="Less" version="2.0" _section="Other">
|
24
|
+
<metadata>
|
25
|
+
<property name="mimetypes">text/less;text/x-less</property>
|
26
|
+
<property name="globs">*.less</property>
|
27
|
+
<property name="line-comment-start">//</property>
|
28
|
+
<property name="block-comment-start">/*</property>
|
29
|
+
<property name="block-comment-end">*/</property>
|
30
|
+
</metadata>
|
31
|
+
|
32
|
+
<styles>
|
33
|
+
|
34
|
+
<!-- variables -->
|
35
|
+
<style id="variable" name="Variable" map-to="def:identifier"/>
|
36
|
+
<style id="built-in-variable" name="Built-in Variable" map-to="def:builtin"/>
|
37
|
+
|
38
|
+
<!-- operators -->
|
39
|
+
<style id="operator-symbol" name="Operator Symbol" map-to="css:symbol"/>
|
40
|
+
|
41
|
+
<!-- Less data types -->
|
42
|
+
<style id="boolean" name="Boolean Value" map-to="def:boolean"/>
|
43
|
+
<style id="group-delimiter" name="Group Delimiter" map-to="css:delimiter"/>
|
44
|
+
|
45
|
+
<!-- mixins -->
|
46
|
+
<style id="mixin-parameters-delimiter" name="Mixin Parameters Delimiter" map-to="css:delimiter"/>
|
47
|
+
|
48
|
+
<!-- guards -->
|
49
|
+
<style id="guard-operator" name="Guard Operator" map-to="css:at-rule-operator"/>
|
50
|
+
|
51
|
+
<!-- Less selectors -->
|
52
|
+
<style id="selector-fragment" name="Selector Fragment"/>
|
53
|
+
|
54
|
+
</styles>
|
55
|
+
|
56
|
+
<default-regex-options case-sensitive="false"/>
|
57
|
+
|
58
|
+
<keyword-char-class>[a-z0-9_-]</keyword-char-class>
|
59
|
+
|
60
|
+
<definitions>
|
61
|
+
|
62
|
+
<!-- global -->
|
63
|
+
|
64
|
+
<define-regex id="statement-end" extended="true">
|
65
|
+
(?: ; | (?= \} ) )
|
66
|
+
</define-regex>
|
67
|
+
|
68
|
+
<context id="less-comment">
|
69
|
+
<include>
|
70
|
+
<context ref="def:c-like-comment"/>
|
71
|
+
<context ref="css:comment" original="true"/>
|
72
|
+
</include>
|
73
|
+
</context>
|
74
|
+
|
75
|
+
<replace id="css:comment" ref="less-comment"/>
|
76
|
+
|
77
|
+
|
78
|
+
<!-- variables -->
|
79
|
+
|
80
|
+
<define-regex id="variable-regex" extended="true">
|
81
|
+
(?: @ \%{css:identifier-regex} )
|
82
|
+
</define-regex>
|
83
|
+
|
84
|
+
<context id="variable" style-ref="variable">
|
85
|
+
<match>\%{variable-regex}</match>
|
86
|
+
</context>
|
87
|
+
|
88
|
+
<context id="variable-interpolation" style-ref="variable">
|
89
|
+
<start>@\{</start>
|
90
|
+
<end>\}</end>
|
91
|
+
<include>
|
92
|
+
<!-- nested interpolations are not documented but appear to work
|
93
|
+
(functions as variable reference / indirection) -->
|
94
|
+
<context ref="variable-interpolation-value"/>
|
95
|
+
</include>
|
96
|
+
</context>
|
97
|
+
|
98
|
+
<context id="variable-reference" style-ref="variable">
|
99
|
+
<match>@@\%{css:identifier-regex}</match>
|
100
|
+
</context>
|
101
|
+
|
102
|
+
<context id="property-variable" style-ref="variable">
|
103
|
+
<match>\$\%{css:identifier-regex}</match>
|
104
|
+
</context>
|
105
|
+
|
106
|
+
<context id="arguments-variable" style-ref="built-in-variable">
|
107
|
+
<match>@arguments\%]</match>
|
108
|
+
</context>
|
109
|
+
|
110
|
+
<context id="arguments-variable-interpolation" style-ref="built-in-variable">
|
111
|
+
<match>@\{arguments\}</match>
|
112
|
+
</context>
|
113
|
+
|
114
|
+
<context id="variable-value">
|
115
|
+
<include>
|
116
|
+
<context ref="arguments-variable"/>
|
117
|
+
<context ref="variable"/>
|
118
|
+
<context ref="variable-reference"/>
|
119
|
+
<context ref="property-variable"/>
|
120
|
+
</include>
|
121
|
+
</context>
|
122
|
+
|
123
|
+
<context id="variable-interpolation-value">
|
124
|
+
<include>
|
125
|
+
<context ref="arguments-variable-interpolation"/>
|
126
|
+
<context ref="variable-interpolation"/>
|
127
|
+
</include>
|
128
|
+
</context>
|
129
|
+
|
130
|
+
|
131
|
+
<!-- operators -->
|
132
|
+
|
133
|
+
<!-- it appears the slash is treated as division everywhere except
|
134
|
+
in a font property declaration and in an aspect ratio media query test,
|
135
|
+
not sure how to detect these cases
|
136
|
+
also not sure what are Less' rules regarding hyphen vs subtraction -->
|
137
|
+
<context id="arithmetic-operator" style-ref="operator-symbol">
|
138
|
+
<match extended="true">
|
139
|
+
(
|
140
|
+
[+*/] |
|
141
|
+
(?<! \%{css:single-identifier-char-regex} )
|
142
|
+
-
|
143
|
+
(?! \%{css:single-identifier-char-regex} )
|
144
|
+
)
|
145
|
+
</match>
|
146
|
+
</context>
|
147
|
+
|
148
|
+
|
149
|
+
<!-- Less data types -->
|
150
|
+
|
151
|
+
<context id="boolean" style-ref="boolean">
|
152
|
+
<keyword>true</keyword>
|
153
|
+
</context>
|
154
|
+
|
155
|
+
<context id="double-quoted-escape-string" style-ref="css:string" end-at-line-end="true" class="string" class-disabled="no-spell-check">
|
156
|
+
<start>~"</start>
|
157
|
+
<end>"</end>
|
158
|
+
<include>
|
159
|
+
<context ref="css:string-content"/>
|
160
|
+
</include>
|
161
|
+
</context>
|
162
|
+
|
163
|
+
<context id="single-quoted-escape-string" style-ref="css:string" end-at-line-end="true" class="string" class-disabled="no-spell-check">
|
164
|
+
<start>~'</start>
|
165
|
+
<end>'</end>
|
166
|
+
<include>
|
167
|
+
<context ref="css:string-content"/>
|
168
|
+
</include>
|
169
|
+
</context>
|
170
|
+
|
171
|
+
<context id="escape-string">
|
172
|
+
<include>
|
173
|
+
<context ref="double-quoted-escape-string"/>
|
174
|
+
<context ref="single-quoted-escape-string"/>
|
175
|
+
</include>
|
176
|
+
</context>
|
177
|
+
|
178
|
+
<context id="detached-ruleset">
|
179
|
+
<start>\{</start>
|
180
|
+
<end>\}</end>
|
181
|
+
<include>
|
182
|
+
<context sub-pattern="0" where="start" style-ref="css:block-delimiter"/>
|
183
|
+
<context sub-pattern="0" where="end" style-ref="css:block-delimiter"/>
|
184
|
+
<context ref="css:comment"/>
|
185
|
+
<context ref="css:style-block-content"/>
|
186
|
+
</include>
|
187
|
+
</context>
|
188
|
+
|
189
|
+
<context id="detached-ruleset-call-close-paren" style-ref="variable">
|
190
|
+
<match>\)</match>
|
191
|
+
</context>
|
192
|
+
|
193
|
+
<context id="detached-ruleset-call">
|
194
|
+
<start>\%{variable-regex}\(</start>
|
195
|
+
<end>\%{statement-end}</end>
|
196
|
+
<include>
|
197
|
+
<context sub-pattern="0" where="start" style-ref="variable"/>
|
198
|
+
<context sub-pattern="0" where="end" style-ref="css:delimiter"/>
|
199
|
+
<!-- no comments allowed -->
|
200
|
+
<context ref="detached-ruleset-call-close-paren"/>
|
201
|
+
</include>
|
202
|
+
</context>
|
203
|
+
|
204
|
+
<context id="data-group">
|
205
|
+
<start>\(</start>
|
206
|
+
<end>\)</end>
|
207
|
+
<include>
|
208
|
+
<context sub-pattern="0" where="start" style-ref="group-delimiter"/>
|
209
|
+
<context sub-pattern="0" where="end" style-ref="group-delimiter"/>
|
210
|
+
<context ref="css:comment"/>
|
211
|
+
<context ref="css:data-value"/>
|
212
|
+
</include>
|
213
|
+
</context>
|
214
|
+
|
215
|
+
<context id="any-group">
|
216
|
+
<start>\(</start>
|
217
|
+
<end>\)</end>
|
218
|
+
<include>
|
219
|
+
<context sub-pattern="0" where="start" style-ref="group-delimiter"/>
|
220
|
+
<context sub-pattern="0" where="end" style-ref="group-delimiter"/>
|
221
|
+
<context ref="css:comment"/>
|
222
|
+
<context ref="css:any-value"/>
|
223
|
+
</include>
|
224
|
+
</context>
|
225
|
+
|
226
|
+
|
227
|
+
<!-- data types -->
|
228
|
+
|
229
|
+
<context id="less-string-content">
|
230
|
+
<include>
|
231
|
+
<context ref="variable-interpolation-value"/>
|
232
|
+
<context ref="css:string-content" original="true"/>
|
233
|
+
</include>
|
234
|
+
</context>
|
235
|
+
|
236
|
+
<replace id="css:string-content" ref="less-string-content"/>
|
237
|
+
|
238
|
+
|
239
|
+
<!-- Less functions -->
|
240
|
+
|
241
|
+
<!-- since % isn't a valid identifier -->
|
242
|
+
<context id="format">
|
243
|
+
<start>%\(</start>
|
244
|
+
<end>\)</end>
|
245
|
+
<include>
|
246
|
+
<context sub-pattern="0" where="start" style-ref="css:function"/>
|
247
|
+
<context sub-pattern="0" where="end" style-ref="css:function"/>
|
248
|
+
<context ref="css:comment"/>
|
249
|
+
<context ref="css:function-content"/>
|
250
|
+
</include>
|
251
|
+
</context>
|
252
|
+
|
253
|
+
|
254
|
+
<!-- functions -->
|
255
|
+
|
256
|
+
<context id="less-url">
|
257
|
+
<start>url\(</start>
|
258
|
+
<end>\)</end>
|
259
|
+
<include>
|
260
|
+
<context sub-pattern="0" where="start" style-ref="css:function"/>
|
261
|
+
<context sub-pattern="0" where="end" style-ref="css:function"/>
|
262
|
+
<!-- only accept multi-line comments because // is part of urls -->
|
263
|
+
<context ref="css:comment" original="true"/>
|
264
|
+
<context ref="css:string-value"/>
|
265
|
+
</include>
|
266
|
+
</context>
|
267
|
+
|
268
|
+
<context id="less-function-content">
|
269
|
+
<include>
|
270
|
+
<context ref="css:function-content" original="true"/>
|
271
|
+
<context ref="css:semicolon"/> <!-- allowed as argument separator -->
|
272
|
+
</include>
|
273
|
+
</context>
|
274
|
+
|
275
|
+
<context id="less-function-call">
|
276
|
+
<include>
|
277
|
+
<context ref="format"/>
|
278
|
+
<context ref="css:function-call" original="true"/>
|
279
|
+
</include>
|
280
|
+
</context>
|
281
|
+
|
282
|
+
<replace id="css:url" ref="less-url"/>
|
283
|
+
<replace id="css:function-content" ref="less-function-content"/>
|
284
|
+
<replace id="css:function-call" ref="less-function-call"/>
|
285
|
+
|
286
|
+
|
287
|
+
<!-- data values -->
|
288
|
+
|
289
|
+
<context id="less-name-value">
|
290
|
+
<include>
|
291
|
+
<context ref="css:function-call"/>
|
292
|
+
<context ref="variable-value"/>
|
293
|
+
<context ref="escape-string"/> <!-- outputs unquoted strings -->
|
294
|
+
<context ref="css:name-value" original="true"/>
|
295
|
+
</include>
|
296
|
+
</context>
|
297
|
+
|
298
|
+
<context id="less-string-value">
|
299
|
+
<include>
|
300
|
+
<context ref="css:function-call"/>
|
301
|
+
<context ref="variable-value"/>
|
302
|
+
<context ref="css:string-value" original="true"/>
|
303
|
+
</include>
|
304
|
+
</context>
|
305
|
+
|
306
|
+
<context id="less-data-value">
|
307
|
+
<include>
|
308
|
+
<context ref="css:function-call"/>
|
309
|
+
<context ref="data-group"/>
|
310
|
+
<context ref="variable-value"/>
|
311
|
+
<context ref="escape-string"/>
|
312
|
+
<context ref="css:string-value" original="true"/>
|
313
|
+
<context ref="css:color-value"/>
|
314
|
+
<context ref="css:number-value"/>
|
315
|
+
<context ref="css:unicode-range"/>
|
316
|
+
<context ref="arithmetic-operator"/>
|
317
|
+
</include>
|
318
|
+
</context>
|
319
|
+
|
320
|
+
<replace id="css:name-value" ref="less-name-value"/>
|
321
|
+
<replace id="css:string-value" ref="less-string-value"/>
|
322
|
+
<replace id="css:data-value" ref="less-data-value"/>
|
323
|
+
|
324
|
+
|
325
|
+
<!-- any assignable value -->
|
326
|
+
|
327
|
+
<context id="less-any-value">
|
328
|
+
<include>
|
329
|
+
<context ref="css:function-call"/>
|
330
|
+
<context ref="any-group"/>
|
331
|
+
<context ref="variable-value"/>
|
332
|
+
<context ref="escape-string"/>
|
333
|
+
<context ref="boolean"/>
|
334
|
+
<context ref="detached-ruleset"/>
|
335
|
+
<context ref="css:property-value-keyword"/>
|
336
|
+
<context ref="css:string-value" original="true"/>
|
337
|
+
<context ref="css:color-value"/>
|
338
|
+
<context ref="css:number-value"/>
|
339
|
+
<context ref="css:unicode-range"/>
|
340
|
+
<context ref="arithmetic-operator"/>
|
341
|
+
<context ref="css:slash"/>
|
342
|
+
<context ref="css:comma"/>
|
343
|
+
</include>
|
344
|
+
</context>
|
345
|
+
|
346
|
+
<replace id="css:any-value" ref="less-any-value"/>
|
347
|
+
|
348
|
+
|
349
|
+
<!-- style properties -->
|
350
|
+
|
351
|
+
<context id="less-property-name">
|
352
|
+
<include>
|
353
|
+
<context ref="variable-interpolation-value"/>
|
354
|
+
<context ref="css:property-name" original="true"/>
|
355
|
+
</include>
|
356
|
+
</context>
|
357
|
+
|
358
|
+
<replace id="css:property-name" ref="less-property-name"/>
|
359
|
+
|
360
|
+
|
361
|
+
<!-- style block -->
|
362
|
+
|
363
|
+
<context id="less-declaration-property">
|
364
|
+
<include>
|
365
|
+
<context ref="variable"/> <!-- variable assignment -->
|
366
|
+
<context ref="css:declaration-property" original="true"/>
|
367
|
+
</include>
|
368
|
+
</context>
|
369
|
+
|
370
|
+
<context id="less-declaration-value">
|
371
|
+
<start extended="true">
|
372
|
+
(?(DEFINE)
|
373
|
+
(?<interpolation> # recursive subpattern to find matching brackets
|
374
|
+
@\{
|
375
|
+
(?:
|
376
|
+
(?>
|
377
|
+
(?:
|
378
|
+
[^@{}]+ |
|
379
|
+
(?! @\{ | \} ) .
|
380
|
+
)+
|
381
|
+
) |
|
382
|
+
(?&interpolation)
|
383
|
+
)*
|
384
|
+
\}
|
385
|
+
)
|
386
|
+
)
|
387
|
+
(
|
388
|
+
\+_?: | # property merge
|
389
|
+
:
|
390
|
+
(?:
|
391
|
+
(?! # not the start of a
|
392
|
+
\%{css:single-identifier-char-regex} | # pseudo-class
|
393
|
+
[:\\] | # pseudo-element, escape
|
394
|
+
@\{ # variable interpolation
|
395
|
+
) | # or
|
396
|
+
(?= # ends like a normal declaration
|
397
|
+
(?>
|
398
|
+
(?:
|
399
|
+
[^;}{@]+ |
|
400
|
+
(?&interpolation)+ |
|
401
|
+
\@+
|
402
|
+
)*
|
403
|
+
)
|
404
|
+
\%{css:declaration-value-end} # with a semicolon or at the end of a block
|
405
|
+
)
|
406
|
+
)
|
407
|
+
)
|
408
|
+
</start>
|
409
|
+
<end>\%{css:declaration-value-end}</end>
|
410
|
+
<include>
|
411
|
+
<context sub-pattern="0" where="start" style-ref="css:delimiter"/>
|
412
|
+
<context ref="css:comment"/>
|
413
|
+
<context ref="css:declaration-value-content"/>
|
414
|
+
</include>
|
415
|
+
</context>
|
416
|
+
|
417
|
+
<context id="less-style-block-content">
|
418
|
+
<include>
|
419
|
+
<context ref="css:at-rule"/> <!-- because Less variables look like at-rules -->
|
420
|
+
<context ref="detached-ruleset-call"/>
|
421
|
+
<context ref="standalone-plugin-function-call"/>
|
422
|
+
<context ref="inside-ruleset-extend"/>
|
423
|
+
<context ref="css:style-block-content" original="true"/>
|
424
|
+
<context ref="css:selector"/>
|
425
|
+
<context ref="css:style-block"/>
|
426
|
+
</include>
|
427
|
+
</context>
|
428
|
+
|
429
|
+
<replace id="css:declaration-property" ref="less-declaration-property"/>
|
430
|
+
<replace id="css:declaration-value" ref="less-declaration-value"/>
|
431
|
+
<replace id="css:style-block-content" ref="less-style-block-content"/>
|
432
|
+
|
433
|
+
|
434
|
+
<!-- media queries -->
|
435
|
+
|
436
|
+
<!-- include variable-value at this level because a variable can
|
437
|
+
contain the whole media feature test,
|
438
|
+
e.g. ~'(orientation: landscape)'
|
439
|
+
allowing variable-value here means variables are also allowed
|
440
|
+
for media type and media feature test name/value -->
|
441
|
+
<context id="less-media-queries">
|
442
|
+
<include>
|
443
|
+
<context ref="variable-value"/>
|
444
|
+
<context ref="css:media-queries" original="true"/>
|
445
|
+
</include>
|
446
|
+
</context>
|
447
|
+
|
448
|
+
<replace id="css:media-queries" ref="less-media-queries"/>
|
449
|
+
|
450
|
+
|
451
|
+
<!-- Less at-rules -->
|
452
|
+
|
453
|
+
<!--
|
454
|
+
@plugin <options>? <url(...)|"url">;
|
455
|
+
-->
|
456
|
+
|
457
|
+
<context id="at-plugin-options">
|
458
|
+
<start>(?<=@plugin)\s*(\()</start>
|
459
|
+
<end>\)</end>
|
460
|
+
<include>
|
461
|
+
<context sub-pattern="1" where="start" style-ref="group-delimiter"/>
|
462
|
+
<context sub-pattern="0" where="end" style-ref="group-delimiter"/>
|
463
|
+
<context ref="css:comment"/>
|
464
|
+
<!-- options are passed to the plugin directly, not parsed by Less -->
|
465
|
+
</include>
|
466
|
+
</context>
|
467
|
+
|
468
|
+
<context id="at-plugin">
|
469
|
+
<start>@plugin\%]</start>
|
470
|
+
<include>
|
471
|
+
<context sub-pattern="0" where="start" style-ref="css:at-rule"/>
|
472
|
+
<context ref="css:comment"/>
|
473
|
+
<context ref="at-plugin-options"/>
|
474
|
+
<context ref="css:url"/>
|
475
|
+
<!-- appears to follow the same rules as @import regarding variables -->
|
476
|
+
<context ref="escape-string"/>
|
477
|
+
<context ref="css:string-value" original="true"/>
|
478
|
+
<context ref="css:at-rule-delimiter"/>
|
479
|
+
</include>
|
480
|
+
</context>
|
481
|
+
|
482
|
+
<context id="standalone-plugin-function-call">
|
483
|
+
<start>(?=\%{css:identifier-regex}\()</start>
|
484
|
+
<end>\%{statement-end}</end>
|
485
|
+
<include>
|
486
|
+
<context sub-pattern="0" where="end" style-ref="css:delimiter"/>
|
487
|
+
<context ref="css:comment"/>
|
488
|
+
<context ref="css:function-call"/>
|
489
|
+
</include>
|
490
|
+
</context>
|
491
|
+
|
492
|
+
|
493
|
+
<!-- at-rules -->
|
494
|
+
|
495
|
+
<context id="less-font-feature-type-value">
|
496
|
+
<include>
|
497
|
+
<context ref="variable-interpolation-value"/>
|
498
|
+
<context ref="css:font-feature-type-value" original="true"/>
|
499
|
+
</include>
|
500
|
+
</context>
|
501
|
+
|
502
|
+
<context id="less-font-feature-value-declaration-name">
|
503
|
+
<include>
|
504
|
+
<context ref="variable-interpolation-value"/>
|
505
|
+
<context ref="css:font-feature-value-declaration-name" original="true"/>
|
506
|
+
</include>
|
507
|
+
</context>
|
508
|
+
|
509
|
+
<context id="less-font-feature-value-declaration-value-content">
|
510
|
+
<include>
|
511
|
+
<context ref="variable-value"/>
|
512
|
+
<context ref="css:font-feature-value-declaration-value-content" original="true"/>
|
513
|
+
</include>
|
514
|
+
</context>
|
515
|
+
|
516
|
+
<!--
|
517
|
+
@import <option (, option)*>? <url(...)|"url"> <media-queries>?;
|
518
|
+
-->
|
519
|
+
|
520
|
+
<context id="less-at-import-options-keyword" style-ref="css:keyword">
|
521
|
+
<keyword>css</keyword>
|
522
|
+
<keyword>inline</keyword>
|
523
|
+
<keyword>less</keyword>
|
524
|
+
<keyword>multiple</keyword>
|
525
|
+
<keyword>once</keyword>
|
526
|
+
<keyword>optional</keyword>
|
527
|
+
<keyword>reference</keyword>
|
528
|
+
</context>
|
529
|
+
|
530
|
+
<context id="less-at-import-options">
|
531
|
+
<start>(?<=@import)\s*(\()</start>
|
532
|
+
<end>\)</end>
|
533
|
+
<include>
|
534
|
+
<context sub-pattern="1" where="start" style-ref="group-delimiter"/>
|
535
|
+
<context sub-pattern="0" where="end" style-ref="group-delimiter"/>
|
536
|
+
<context ref="css:comment"/>
|
537
|
+
<context ref="less-at-import-options-keyword"/>
|
538
|
+
<context ref="css:comma"/>
|
539
|
+
</include>
|
540
|
+
</context>
|
541
|
+
|
542
|
+
<context id="less-at-import">
|
543
|
+
<start>@import\%]</start>
|
544
|
+
<include>
|
545
|
+
<context sub-pattern="0" where="start" style-ref="css:at-rule"/>
|
546
|
+
<context ref="css:comment"/>
|
547
|
+
<context ref="less-at-import-options"/>
|
548
|
+
<context ref="css:url"/>
|
549
|
+
<context ref="css:media-queries"/>
|
550
|
+
<!--
|
551
|
+
it appears only variable interpolation (in strings) is allowed
|
552
|
+
https://github.com/SomMeri/less4j/wiki/Less-Language-Import#syntax
|
553
|
+
but variables are allowed in media queries :-P
|
554
|
+
-->
|
555
|
+
<context ref="css:string-value" original="true"/>
|
556
|
+
<context ref="css:at-rule-delimiter"/>
|
557
|
+
</include>
|
558
|
+
</context>
|
559
|
+
|
560
|
+
<context id="less-keyframe-selector-value">
|
561
|
+
<include>
|
562
|
+
<context ref="variable-interpolation-value"/>
|
563
|
+
<context ref="css:keyframe-selector-value" original="true"/>
|
564
|
+
</include>
|
565
|
+
</context>
|
566
|
+
|
567
|
+
<context id="less-at-rule">
|
568
|
+
<include>
|
569
|
+
<context ref="at-plugin"/>
|
570
|
+
<context ref="css:at-rule" original="true"/>
|
571
|
+
</include>
|
572
|
+
</context>
|
573
|
+
|
574
|
+
<replace id="css:at-rule-style-block-content" ref="less-style-block-content"/>
|
575
|
+
<replace id="css:at-rule-css-block-content" ref="less-style-block-content"/>
|
576
|
+
<replace id="css:font-feature-type-value" ref="less-font-feature-type-value"/>
|
577
|
+
<replace id="css:font-feature-value-declaration-name" ref="less-font-feature-value-declaration-name"/>
|
578
|
+
<replace id="css:font-feature-value-declaration-value-content" ref="less-font-feature-value-declaration-value-content"/>
|
579
|
+
<replace id="css:at-import" ref="less-at-import"/>
|
580
|
+
<replace id="css:keyframe-selector-value" ref="less-keyframe-selector-value"/>
|
581
|
+
<replace id="css:at-rule" ref="less-at-rule"/>
|
582
|
+
|
583
|
+
|
584
|
+
<!-- mixins -->
|
585
|
+
|
586
|
+
<context id="variable-arguments" style-ref="operator-symbol">
|
587
|
+
<match>\.\.\.</match>
|
588
|
+
</context>
|
589
|
+
|
590
|
+
<context id="mixin-parameters">
|
591
|
+
<start>\(</start>
|
592
|
+
<end>\)</end>
|
593
|
+
<include>
|
594
|
+
<context sub-pattern="0" where="start" style-ref="mixin-parameters-delimiter"/>
|
595
|
+
<context sub-pattern="0" where="end" style-ref="mixin-parameters-delimiter"/>
|
596
|
+
<context ref="css:comment"/>
|
597
|
+
<context ref="css:any-value"/>
|
598
|
+
<context ref="variable-arguments"/>
|
599
|
+
<context ref="css:colon"/> <!-- named parameters / default values -->
|
600
|
+
<context ref="css:semicolon"/>
|
601
|
+
</include>
|
602
|
+
</context>
|
603
|
+
|
604
|
+
|
605
|
+
<!-- guards -->
|
606
|
+
|
607
|
+
<context id="guard-logical-operator" style-ref="guard-operator">
|
608
|
+
<keyword>and</keyword>
|
609
|
+
<keyword>not</keyword>
|
610
|
+
<keyword>or</keyword>
|
611
|
+
</context>
|
612
|
+
|
613
|
+
<context id="guard-comparison-operator" style-ref="operator-symbol">
|
614
|
+
<match>(>=?|=<?|<)</match>
|
615
|
+
</context>
|
616
|
+
|
617
|
+
<context id="guard-test">
|
618
|
+
<start>\(</start>
|
619
|
+
<end>\)</end>
|
620
|
+
<include>
|
621
|
+
<context sub-pattern="0" where="start" style-ref="css:test-delimiter"/>
|
622
|
+
<context sub-pattern="0" where="end" style-ref="css:test-delimiter"/>
|
623
|
+
<context ref="css:comment"/>
|
624
|
+
<context ref="css:any-value"/>
|
625
|
+
<context ref="guard-comparison-operator"/>
|
626
|
+
</include>
|
627
|
+
</context>
|
628
|
+
|
629
|
+
<context id="guard">
|
630
|
+
<start>\%[when\%]</start>
|
631
|
+
<end>(?=\{)</end>
|
632
|
+
<include>
|
633
|
+
<context sub-pattern="0" where="start" style-ref="guard-operator"/>
|
634
|
+
<context ref="css:comment"/>
|
635
|
+
<context ref="guard-test"/>
|
636
|
+
<context ref="guard-logical-operator"/>
|
637
|
+
<context ref="css:comma"/>
|
638
|
+
</include>
|
639
|
+
</context>
|
640
|
+
|
641
|
+
|
642
|
+
<!-- Less selectors -->
|
643
|
+
|
644
|
+
<context id="parent-combinator">
|
645
|
+
<match>(&)(\%{css:identifier-chars-regex}?)</match>
|
646
|
+
<include>
|
647
|
+
<context sub-pattern="1" style-ref="css:combinator"/>
|
648
|
+
<context sub-pattern="2" style-ref="selector-fragment"/>
|
649
|
+
</include>
|
650
|
+
</context>
|
651
|
+
|
652
|
+
<context id="variable-interpolation-fragment" style-ref="selector-fragment">
|
653
|
+
<match>(?<=\})\%{css:identifier-chars-regex}</match>
|
654
|
+
</context>
|
655
|
+
|
656
|
+
<context id="less-pseudo-classes" style-ref="css:pseudo-class">
|
657
|
+
<prefix>:</prefix>
|
658
|
+
<keyword>extend</keyword>
|
659
|
+
</context>
|
660
|
+
|
661
|
+
<context id="extend-pseudo-class-argument-keyword" style-ref="css:keyword">
|
662
|
+
<keyword>all</keyword>
|
663
|
+
</context>
|
664
|
+
|
665
|
+
<context id="extend-pseudo-class-argument">
|
666
|
+
<start>(?<=:extend)\(</start>
|
667
|
+
<end>\)</end>
|
668
|
+
<include>
|
669
|
+
<context sub-pattern="0" where="start" style-ref="css:pseudo-class"/>
|
670
|
+
<context sub-pattern="0" where="end" style-ref="css:pseudo-class"/>
|
671
|
+
<context ref="css:comment"/>
|
672
|
+
<context ref="extend-pseudo-class-argument-keyword"/>
|
673
|
+
<context ref="css:selector"/>
|
674
|
+
</include>
|
675
|
+
</context>
|
676
|
+
|
677
|
+
<context id="inside-ruleset-extend">
|
678
|
+
<start>(?=&:extend\()</start>
|
679
|
+
<end>\%{statement-end}</end>
|
680
|
+
<include>
|
681
|
+
<context sub-pattern="0" where="end" style-ref="css:delimiter"/>
|
682
|
+
<context ref="css:comment"/>
|
683
|
+
<context ref="css:selector"/>
|
684
|
+
</include>
|
685
|
+
</context>
|
686
|
+
|
687
|
+
|
688
|
+
<!-- selectors -->
|
689
|
+
|
690
|
+
<context id="less-attribute-selector-content">
|
691
|
+
<include>
|
692
|
+
<context ref="variable-interpolation-value"/>
|
693
|
+
<context ref="css:attribute-selector-content" original="true"/>
|
694
|
+
</include>
|
695
|
+
</context>
|
696
|
+
|
697
|
+
<context id="less-simple-selector">
|
698
|
+
<include>
|
699
|
+
<context ref="variable-interpolation-value"/> <!-- include in simple selector to be included in :not() -->
|
700
|
+
<context ref="variable-interpolation-fragment"/>
|
701
|
+
<context ref="css:simple-selector" original="true"/>
|
702
|
+
</include>
|
703
|
+
</context>
|
704
|
+
|
705
|
+
<context id="less-combinator">
|
706
|
+
<include>
|
707
|
+
<context ref="parent-combinator"/>
|
708
|
+
<context ref="css:combinator" original="true"/>
|
709
|
+
</include>
|
710
|
+
</context>
|
711
|
+
|
712
|
+
<context id="less-pseudo-class">
|
713
|
+
<include>
|
714
|
+
<context ref="less-pseudo-classes"/>
|
715
|
+
<context ref="css:pseudo-class" original="true"/>
|
716
|
+
</include>
|
717
|
+
</context>
|
718
|
+
|
719
|
+
<context id="less-lang-pseudo-class-argument-content">
|
720
|
+
<include>
|
721
|
+
<context ref="variable-interpolation-value"/>
|
722
|
+
<context ref="css:lang-pseudo-class-argument-content" original="true"/>
|
723
|
+
</include>
|
724
|
+
</context>
|
725
|
+
|
726
|
+
<context id="less-nth-pseudo-class-argument-content">
|
727
|
+
<include>
|
728
|
+
<context ref="variable-interpolation-value"/>
|
729
|
+
<context ref="css:nth-pseudo-class-argument-content" original="true"/>
|
730
|
+
</include>
|
731
|
+
</context>
|
732
|
+
|
733
|
+
<context id="less-pseudo-class-argument">
|
734
|
+
<include>
|
735
|
+
<context ref="extend-pseudo-class-argument"/>
|
736
|
+
<context ref="css:pseudo-class-argument" original="true"/>
|
737
|
+
</include>
|
738
|
+
</context>
|
739
|
+
|
740
|
+
<context id="less-selector">
|
741
|
+
<include>
|
742
|
+
<context ref="guard"/>
|
743
|
+
<context ref="css:modifier"/>
|
744
|
+
<context ref="css:selector" original="true"/>
|
745
|
+
<context ref="mixin-parameters"/> <!-- can interfere with pseudo-class arguments -->
|
746
|
+
<context ref="css:semicolon"/> <!-- after mixin calls -->
|
747
|
+
</include>
|
748
|
+
</context>
|
749
|
+
|
750
|
+
<replace id="css:attribute-selector-content" ref="less-attribute-selector-content"/>
|
751
|
+
<replace id="css:simple-selector" ref="less-simple-selector"/>
|
752
|
+
<replace id="css:combinator" ref="less-combinator"/>
|
753
|
+
<replace id="css:pseudo-class" ref="less-pseudo-class"/>
|
754
|
+
<replace id="css:lang-pseudo-class-argument-content" ref="less-lang-pseudo-class-argument-content"/>
|
755
|
+
<replace id="css:nth-pseudo-class-argument-content" ref="less-nth-pseudo-class-argument-content"/>
|
756
|
+
<replace id="css:pseudo-class-argument" ref="less-pseudo-class-argument"/>
|
757
|
+
<replace id="css:selector" ref="less-selector"/>
|
758
|
+
|
759
|
+
|
760
|
+
<!-- top level declarations -->
|
761
|
+
|
762
|
+
<context id="top-level-declaration-property">
|
763
|
+
<include>
|
764
|
+
<context ref="variable"/>
|
765
|
+
</include>
|
766
|
+
</context>
|
767
|
+
|
768
|
+
<context id="top-level-declaration">
|
769
|
+
<include>
|
770
|
+
<context ref="top-level-declaration-property"/>
|
771
|
+
<context ref="css:declaration-value"/>
|
772
|
+
<context ref="css:modifier"/>
|
773
|
+
<context ref="css:semicolon"/>
|
774
|
+
</include>
|
775
|
+
</context>
|
776
|
+
|
777
|
+
|
778
|
+
<!-- main context -->
|
779
|
+
|
780
|
+
<context id="less" class="no-spell-check">
|
781
|
+
<include>
|
782
|
+
<context ref="css:comment"/>
|
783
|
+
<context ref="css:at-rule"/> <!-- because Less variables look like at-rules -->
|
784
|
+
<context ref="detached-ruleset-call"/>
|
785
|
+
<context ref="standalone-plugin-function-call"/>
|
786
|
+
<context ref="top-level-declaration"/>
|
787
|
+
<context ref="css:selector"/>
|
788
|
+
<context ref="css:style-block"/>
|
789
|
+
</include>
|
790
|
+
</context>
|
791
|
+
|
792
|
+
</definitions>
|
793
|
+
</language>
|