gtksourceview3 2.2.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Rakefile +59 -0
- data/ext/gtksourceview3/depend +6 -0
- data/ext/gtksourceview3/extconf.rb +67 -0
- data/ext/gtksourceview3/gtksourceview3.def +2 -0
- data/ext/gtksourceview3/rbgtksource.c +53 -0
- data/ext/gtksourceview3/rbgtksourcebuffer.c +318 -0
- data/ext/gtksourceview3/rbgtksourcegutter.c +82 -0
- data/ext/gtksourceview3/rbgtksourcegutterrenderer.c +143 -0
- data/ext/gtksourceview3/rbgtksourcegutterrendererpixbuf.c +42 -0
- data/ext/gtksourceview3/rbgtksourcegutterrenderertext.c +40 -0
- data/ext/gtksourceview3/rbgtksourcelanguage.c +124 -0
- data/ext/gtksourceview3/rbgtksourcelanguagemanager.c +114 -0
- data/ext/gtksourceview3/rbgtksourcemark.c +85 -0
- data/ext/gtksourceview3/rbgtksourcemarkattributes.c +77 -0
- data/ext/gtksourceview3/rbgtksourceprintcompositor.c +171 -0
- data/ext/gtksourceview3/rbgtksourcestyle.c +42 -0
- data/ext/gtksourceview3/rbgtksourcestylescheme.c +72 -0
- data/ext/gtksourceview3/rbgtksourcestyleschememanager.c +140 -0
- data/ext/gtksourceview3/rbgtksourceundomanager.c +83 -0
- data/ext/gtksourceview3/rbgtksourceview.c +94 -0
- data/ext/gtksourceview3/rbgtksourceview3conversions.h +50 -0
- data/ext/gtksourceview3/rbgtksourceview3private.h +53 -0
- data/extconf.rb +49 -0
- data/lib/2.0/gtksourceview3.so +0 -0
- data/lib/2.1/gtksourceview3.so +0 -0
- data/lib/2.2/gtksourceview3.so +0 -0
- data/lib/gtksourceview3.rb +20 -0
- data/lib/gtksourceview3/deprecated.rb +47 -0
- data/sample/sourcelanguagemanager.rb +21 -0
- data/sample/test.rb +32 -0
- data/test/run-test.rb +44 -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 +57 -0
- data/vendor/local/bin/libgtksourceview-3.0-1.dll +0 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +65 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +54 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +213 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +142 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +95 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +78 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +70 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +97 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +137 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceencoding.h +54 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefile.h +115 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefileloader.h +122 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefilesaver.h +147 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +90 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +229 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +87 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +83 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +85 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +84 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +71 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +100 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +175 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchcontext.h +133 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchsettings.h +85 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +45 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +109 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +86 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +101 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +75 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceutils.h +34 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +88 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +213 -0
- data/vendor/local/lib/girepository-1.0/GtkSource-3.0.typelib +0 -0
- data/vendor/local/lib/libgtksourceview-3.0.dll.a +0 -0
- data/vendor/local/lib/libgtksourceview-3.0.la +41 -0
- data/vendor/local/lib/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/tg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/pkgconfig/gtksourceview-3.0.pc +12 -0
- data/vendor/local/share/gir-1.0/GtkSource-3.0.gir +11360 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +2143 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +1129 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +397 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +348 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +367 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +572 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +750 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionWords.html +345 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceEncoding.html +366 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFile.html +563 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileLoader.html +769 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileSaver.html +962 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +490 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRenderer.html +1700 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html +468 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererText.html +228 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +584 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +476 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +310 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +897 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +2149 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchContext.html +1116 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchSettings.html +606 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +358 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +398 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +463 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +462 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +1990 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +81 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +43 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-10.html +195 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-12.html +39 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-14.html +299 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-4.html +35 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +2187 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch01.html +119 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch02.html +47 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html +154 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +601 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.html +146 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +882 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +873 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +654 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/object-tree.html +71 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +283 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up.png +0 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/R.lang +2199 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/actionscript.lang +268 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ada.lang +221 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ansforth94.lang +729 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/asp.lang +1097 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/automake.lang +330 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/awk.lang +138 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/bennugd.lang +267 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/bibtex.lang +93 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/bluespec.lang +188 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/boo.lang +257 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/c.lang +332 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cg.lang +232 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/changelog.lang +93 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +43 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cmake.lang +408 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cobol.lang +647 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cpp.lang +120 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/csharp.lang +282 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/css.lang +542 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cuda.lang +292 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/d.lang +318 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/def.lang +262 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/desktop.lang +300 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/diff.lang +85 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/docbook.lang +476 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/dosbatch.lang +167 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/dot.lang +140 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/dpatch.lang +48 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/dtd.lang +140 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/eiffel.lang +239 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/erlang.lang +258 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/fcl.lang +113 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/forth.lang +235 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/fortran.lang +591 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/fsharp.lang +325 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/gap.lang +85 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/gdb-log.lang +152 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/glsl.lang +483 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/go.lang +275 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/gtk-doc.lang +91 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/gtkrc.lang +116 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/haddock.lang +162 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/haskell-literate.lang +59 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/haskell.lang +228 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/html.lang +281 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/idl-exelis.lang +620 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/idl.lang +154 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/imagej.lang +784 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ini.lang +95 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/j.lang +240 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/java.lang +190 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/javascript.lang +339 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +123 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/julia.lang +378 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/language.dtd +73 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/language.rng +373 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/language2.rng +482 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/latex.lang +600 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/lex.lang +209 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/libtool.lang +56 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/llvm.lang +315 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/lua.lang +157 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/m4.lang +1375 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/makefile.lang +193 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/mallard.lang +124 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/markdown.lang +402 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/matlab.lang +171 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/mediawiki.lang +327 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/modelica.lang +262 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/mxml.lang +65 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/nemerle.lang +263 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/netrexx.lang +319 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/nsis.lang +88 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/objc.lang +120 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/objj.lang +128 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ocaml.lang +302 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ocl.lang +139 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/octave.lang +859 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ooc.lang +265 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/opal.lang +343 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/opencl.lang +600 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/pascal.lang +268 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/perl.lang +1045 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/php.lang +363 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/pkgconfig.lang +62 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/po.lang +94 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/prolog.lang +249 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/protobuf.lang +101 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/puppet.lang +697 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/python.lang +472 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/python3.lang +192 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/rpmspec.lang +212 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/rst.lang +142 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ruby.lang +750 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/scala.lang +384 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/scheme.lang +302 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/scilab.lang +209 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sh.lang +499 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sml.lang +201 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sparql.lang +448 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sql.lang +618 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sweave.lang +67 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/systemverilog.lang +263 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/t2t.lang +150 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/tcl.lang +146 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/texinfo.lang +448 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/vala.lang +365 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/vbnet.lang +245 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/verilog.lang +476 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/vhdl.lang +248 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/xml.lang +220 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/xslt.lang +108 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/yacc.lang +177 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/yaml.lang +214 -0
- data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +121 -0
- data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +148 -0
- data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +171 -0
- data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +129 -0
- data/vendor/local/share/gtksourceview-3.0/styles/solarized-dark.xml +101 -0
- data/vendor/local/share/gtksourceview-3.0/styles/solarized-light.xml +101 -0
- data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +142 -0
- data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +130 -0
- data/vendor/local/share/license/gtksourceview/AUTHORS +13 -0
- data/vendor/local/share/license/gtksourceview/COPYING +504 -0
- metadata +389 -0
@@ -0,0 +1,281 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!--
|
3
|
+
|
4
|
+
This file is part of GtkSourceView
|
5
|
+
|
6
|
+
Copyright (C) 2005-2007 - Marco Barisione <barisione@gmail.com>
|
7
|
+
Copyright (C) 2005-2007 - Emanuele Aina
|
8
|
+
Copyright (C) 2014 - Sébastien Wilmet <swilmet@gnome.org>
|
9
|
+
|
10
|
+
GtkSourceView is free software; you can redistribute it and/or
|
11
|
+
modify it under the terms of the GNU Lesser General Public
|
12
|
+
License as published by the Free Software Foundation; either
|
13
|
+
version 2.1 of the License, or (at your option) any later version.
|
14
|
+
|
15
|
+
GtkSourceView is distributed in the hope that it will be useful,
|
16
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
17
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
18
|
+
Lesser General Public License for more details.
|
19
|
+
|
20
|
+
You should have received a copy of the GNU Lesser General Public
|
21
|
+
License along with this library; if not, write to the Free Software
|
22
|
+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
23
|
+
|
24
|
+
-->
|
25
|
+
<language id="html" _name="HTML" version="2.0" _section="Markup">
|
26
|
+
<metadata>
|
27
|
+
<property name="mimetypes">text/html</property>
|
28
|
+
<property name="globs">*.html;*.htm</property>
|
29
|
+
<property name="block-comment-start"><!--</property>
|
30
|
+
<property name="block-comment-end">--></property>
|
31
|
+
</metadata>
|
32
|
+
|
33
|
+
<styles>
|
34
|
+
<style id="comment" _name="Comment" map-to="xml:comment"/>
|
35
|
+
<style id="tag" _name="Tag" map-to="xml:element-name"/>
|
36
|
+
<style id="attrib-name" _name="Attribute Name" map-to="xml:attribute-name"/>
|
37
|
+
<style id="attrib-value" _name="Attribute Value" map-to="xml:attribute-value"/>
|
38
|
+
<style id="dtd" _name="DTD" map-to="xml:doctype"/>
|
39
|
+
<style id="error" _name="Error" map-to="xml:error"/>
|
40
|
+
<style id="title" _name="Page title" map-to="def:heading0"/>
|
41
|
+
<style id="h1" _name="Heading level 1" map-to="def:heading1"/>
|
42
|
+
<style id="h2" _name="Heading level 2" map-to="def:heading2"/>
|
43
|
+
<style id="h3" _name="Heading level 3" map-to="def:heading3"/>
|
44
|
+
<style id="h4" _name="Heading level 4" map-to="def:heading4"/>
|
45
|
+
<style id="h5" _name="Heading level 5" map-to="def:heading5"/>
|
46
|
+
</styles>
|
47
|
+
|
48
|
+
<default-regex-options case-sensitive="false"/>
|
49
|
+
|
50
|
+
<definitions>
|
51
|
+
<!-- Html comments are more permissive than xml comments -->
|
52
|
+
<context id="comment" style-ref="comment" class="comment">
|
53
|
+
<start><!--</start>
|
54
|
+
<end>--\s*></end>
|
55
|
+
<include>
|
56
|
+
<context ref="def:in-comment"/>
|
57
|
+
</include>
|
58
|
+
</context>
|
59
|
+
|
60
|
+
<context id="dtd" style-ref="dtd" class="no-spell-check">
|
61
|
+
<start><!</start>
|
62
|
+
<end>></end>
|
63
|
+
</context>
|
64
|
+
|
65
|
+
<!-- This is a placeholder context intended to be <replace>d
|
66
|
+
in languages like php that need to embedd contexts inside
|
67
|
+
html tags and attributes.
|
68
|
+
-->
|
69
|
+
<context id="embedded-lang-hook">
|
70
|
+
<start>\%{def:never-match}</start>
|
71
|
+
<end></end>
|
72
|
+
</context>
|
73
|
+
|
74
|
+
<context id="headings">
|
75
|
+
<include>
|
76
|
+
<context id="title" style-inside="true" style-ref="title" end-at-line-end="true">
|
77
|
+
<start><title></start>
|
78
|
+
<end></title></end>
|
79
|
+
<include>
|
80
|
+
<context sub-pattern="0" where="start" style-ref="tag"/>
|
81
|
+
<context sub-pattern="0" where="end" style-ref="tag"/>
|
82
|
+
</include>
|
83
|
+
</context>
|
84
|
+
<context id="h1" end-at-line-end="true">
|
85
|
+
<start><\s*h1</start>
|
86
|
+
<include>
|
87
|
+
<context sub-pattern="0" where="start" style-ref="tag"/>
|
88
|
+
<context ref="generic-tag"/>
|
89
|
+
<context id="h1-inside" style-inside="true" style-ref="h1" end-at-line-end="true" end-parent="true">
|
90
|
+
<start>></start>
|
91
|
+
<end><\s*/h1\s*></end>
|
92
|
+
<include>
|
93
|
+
<context sub-pattern="0" where="start" style-ref="tag"/>
|
94
|
+
<context sub-pattern="0" where="end" style-ref="tag"/>
|
95
|
+
<!-- We cannot match any further here, because matching to tag will override our end-match -->
|
96
|
+
</include>
|
97
|
+
</context>
|
98
|
+
</include>
|
99
|
+
</context>
|
100
|
+
<context id="h2" end-at-line-end="true">
|
101
|
+
<start><\s*h2</start>
|
102
|
+
<include>
|
103
|
+
<context sub-pattern="0" where="start" style-ref="tag"/>
|
104
|
+
<context ref="generic-tag"/>
|
105
|
+
<context id="h2-inside" style-inside="true" style-ref="h2" end-at-line-end="true" end-parent="true">
|
106
|
+
<start>></start>
|
107
|
+
<end><\s*/h2\s*></end>
|
108
|
+
<include>
|
109
|
+
<context sub-pattern="0" where="start" style-ref="tag"/>
|
110
|
+
<context sub-pattern="0" where="end" style-ref="tag"/>
|
111
|
+
<!-- We cannot match any further here, because matching to tag will override our end-match -->
|
112
|
+
</include>
|
113
|
+
</context>
|
114
|
+
</include>
|
115
|
+
</context>
|
116
|
+
<context id="h3" end-at-line-end="true">
|
117
|
+
<start><\s*h3</start>
|
118
|
+
<include>
|
119
|
+
<context sub-pattern="0" where="start" style-ref="tag"/>
|
120
|
+
<context ref="generic-tag"/>
|
121
|
+
<context id="h3-inside" style-inside="true" style-ref="h3" end-at-line-end="true" end-parent="true">
|
122
|
+
<start>></start>
|
123
|
+
<end><\s*/h3\s*></end>
|
124
|
+
<include>
|
125
|
+
<context sub-pattern="0" where="start" style-ref="tag"/>
|
126
|
+
<context sub-pattern="0" where="end" style-ref="tag"/>
|
127
|
+
<!-- We cannot match any further here, because matching to tag will override our end-match -->
|
128
|
+
</include>
|
129
|
+
</context>
|
130
|
+
</include>
|
131
|
+
</context>
|
132
|
+
<context id="h4" end-at-line-end="true">
|
133
|
+
<start><\s*h4</start>
|
134
|
+
<include>
|
135
|
+
<context sub-pattern="0" where="start" style-ref="tag"/>
|
136
|
+
<context ref="generic-tag"/>
|
137
|
+
<context id="h4-inside" style-inside="true" style-ref="h4" end-at-line-end="true" end-parent="true">
|
138
|
+
<start>></start>
|
139
|
+
<end><\s*/h4\s*></end>
|
140
|
+
<include>
|
141
|
+
<context sub-pattern="0" where="start" style-ref="tag"/>
|
142
|
+
<context sub-pattern="0" where="end" style-ref="tag"/>
|
143
|
+
<!-- We cannot match any further here, because matching to tag will override our end-match -->
|
144
|
+
</include>
|
145
|
+
</context>
|
146
|
+
</include>
|
147
|
+
</context>
|
148
|
+
<context id="h5" end-at-line-end="true">
|
149
|
+
<start><\s*h5</start>
|
150
|
+
<include>
|
151
|
+
<context sub-pattern="0" where="start" style-ref="tag"/>
|
152
|
+
<context ref="generic-tag"/>
|
153
|
+
<context id="h5-inside" style-inside="true" style-ref="h5" end-at-line-end="true" end-parent="true">
|
154
|
+
<start>></start>
|
155
|
+
<end><\s*/h5\s*></end>
|
156
|
+
<include>
|
157
|
+
<context sub-pattern="0" where="start" style-ref="tag"/>
|
158
|
+
<context sub-pattern="0" where="end" style-ref="tag"/>
|
159
|
+
<!-- We cannot match any further here, because matching to tag will override our end-match -->
|
160
|
+
</include>
|
161
|
+
</context>
|
162
|
+
</include>
|
163
|
+
</context>
|
164
|
+
</include>
|
165
|
+
</context>
|
166
|
+
|
167
|
+
<define-regex id="attribute-name">[a-z0-9:_-]+</define-regex>
|
168
|
+
|
169
|
+
<context id="generic-tag">
|
170
|
+
<include>
|
171
|
+
<!-- Attribute in the form: name="value" -->
|
172
|
+
<context id="attrib-quoted" class="no-spell-check">
|
173
|
+
<start>(\%{attribute-name}\s*=\s*)(\")</start>
|
174
|
+
<include>
|
175
|
+
<context sub-pattern="1" where="start" style-ref="attrib-name"/>
|
176
|
+
<context sub-pattern="2" where="start" style-ref="attrib-value"/>
|
177
|
+
<context id="string" end-parent="true" end-at-line-end="true" style-ref="attrib-value" class="string" class-disabled="no-spell-check">
|
178
|
+
<start>\%{def:always-match}</start>
|
179
|
+
<end>\"</end>
|
180
|
+
<include>
|
181
|
+
<context ref="xml:entity"/>
|
182
|
+
<context ref="xml:character-reference"/>
|
183
|
+
<context ref="embedded-lang-hook"/>
|
184
|
+
</include>
|
185
|
+
</context>
|
186
|
+
</include>
|
187
|
+
</context>
|
188
|
+
|
189
|
+
<!-- Attribute in the form: name=value -->
|
190
|
+
<context id="attrib-unquoted" style-ref="attrib-value" class="no-spell-check">
|
191
|
+
<start>\%{attribute-name}\s*=\s*</start>
|
192
|
+
<end>(?=>|\s)</end>
|
193
|
+
<include>
|
194
|
+
<context sub-pattern="0" where="start" style-ref="attrib-name"/>
|
195
|
+
<context ref="xml:entity"/>
|
196
|
+
<context ref="xml:character-reference"/>
|
197
|
+
<context ref="embedded-lang-hook"/>
|
198
|
+
</include>
|
199
|
+
</context>
|
200
|
+
|
201
|
+
<!-- Attribute in the form: name -->
|
202
|
+
<context id="attrib-no-value" style-ref="attrib-name" class="no-spell-check">
|
203
|
+
<match>\%{attribute-name}</match>
|
204
|
+
</context>
|
205
|
+
|
206
|
+
<context ref="embedded-lang-hook"/>
|
207
|
+
</include>
|
208
|
+
</context>
|
209
|
+
|
210
|
+
<context id="style" class="no-spell-check">
|
211
|
+
<start><\s*style\%]</start>
|
212
|
+
<include>
|
213
|
+
<context sub-pattern="0" where="start" style-ref="tag"/>
|
214
|
+
<context ref="generic-tag"/>
|
215
|
+
|
216
|
+
<context end-parent="true" style-ref="tag">
|
217
|
+
<match>/\s*></match>
|
218
|
+
</context>
|
219
|
+
|
220
|
+
<context id="style-code" end-parent="true">
|
221
|
+
<start>></start>
|
222
|
+
<end><\s*/\s*style\s*></end>
|
223
|
+
<include>
|
224
|
+
<context sub-pattern="0" where="start" style-ref="tag"/>
|
225
|
+
<context sub-pattern="0" where="end" style-ref="tag"/>
|
226
|
+
<context ref="embedded-lang-hook"/>
|
227
|
+
<context ref="css:css"/>
|
228
|
+
</include>
|
229
|
+
</context>
|
230
|
+
</include>
|
231
|
+
</context>
|
232
|
+
|
233
|
+
<context id="script" class="no-spell-check">
|
234
|
+
<start><\s*script\%]</start>
|
235
|
+
<include>
|
236
|
+
<context sub-pattern="0" where="start" style-ref="tag"/>
|
237
|
+
<context ref="generic-tag"/>
|
238
|
+
|
239
|
+
<context end-parent="true" style-ref="tag">
|
240
|
+
<match>/\s*></match>
|
241
|
+
</context>
|
242
|
+
|
243
|
+
<context id="js-code" end-parent="true">
|
244
|
+
<start>></start>
|
245
|
+
<end><\s*/\s*script\s*></end>
|
246
|
+
<include>
|
247
|
+
<context sub-pattern="0" where="start" style-ref="tag"/>
|
248
|
+
<context sub-pattern="0" where="end" style-ref="tag"/>
|
249
|
+
<context ref="embedded-lang-hook"/>
|
250
|
+
<context ref="js:js"/>
|
251
|
+
</include>
|
252
|
+
</context>
|
253
|
+
</include>
|
254
|
+
</context>
|
255
|
+
|
256
|
+
<context id="tag" class="no-spell-check">
|
257
|
+
<start><\s*/?\s*[a-z0-9_-]+</start>
|
258
|
+
<end>/?\s*></end>
|
259
|
+
<include>
|
260
|
+
<context sub-pattern="0" where="start" style-ref="tag"/>
|
261
|
+
<context sub-pattern="0" where="end" style-ref="tag"/>
|
262
|
+
<context ref="generic-tag"/>
|
263
|
+
</include>
|
264
|
+
</context>
|
265
|
+
|
266
|
+
<context id="html">
|
267
|
+
<include>
|
268
|
+
<context ref="xml:doctype"/>
|
269
|
+
<context ref="xml:entity"/>
|
270
|
+
<context ref="xml:character-reference"/>
|
271
|
+
<context ref="xml:cdata"/>
|
272
|
+
<context ref="comment"/>
|
273
|
+
<context ref="dtd"/>
|
274
|
+
<context ref="headings"/>
|
275
|
+
<context ref="style"/>
|
276
|
+
<context ref="script"/>
|
277
|
+
<context ref="tag"/>
|
278
|
+
</include>
|
279
|
+
</context>
|
280
|
+
</definitions>
|
281
|
+
</language>
|
@@ -0,0 +1,620 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!--
|
3
|
+
Authors: Antoine Lucas 09-2009 <lucas@ipgp.fr>
|
4
|
+
Timothy Arceri 12-2012
|
5
|
+
|
6
|
+
GtkSourceView is free software; you can redistribute it and/or
|
7
|
+
modify it under the terms of the GNU Lesser General Public
|
8
|
+
License as published by the Free Software Foundation; either
|
9
|
+
version 2.1 of the License, or (at your option) any later version.
|
10
|
+
|
11
|
+
GtkSourceView is distributed in the hope that it will be useful,
|
12
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
+
Lesser General Public License for more details.
|
15
|
+
|
16
|
+
You should have received a copy of the GNU Lesser General Public
|
17
|
+
License along with this library; if not, write to the Free Software
|
18
|
+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
19
|
+
|
20
|
+
-->
|
21
|
+
<language id="idl-exelis" _name="IDL-Exelis" version="2.0" _section="Scientific">
|
22
|
+
<metadata>
|
23
|
+
<property name="globs">*.pro</property>
|
24
|
+
<property name="line-comment-start">;</property>
|
25
|
+
</metadata>
|
26
|
+
|
27
|
+
<styles>
|
28
|
+
<style id="comment" _name="Comment" map-to="def:comment"/>
|
29
|
+
<style id="type" _name="Data Type" map-to="def:type"/>
|
30
|
+
<style id="preprocessor" _name="Preprocessor" map-to="def:preprocessor"/>
|
31
|
+
<style id="keyword" _name="Keyword" map-to="def:keyword"/>
|
32
|
+
<style id="string" _name="String" map-to="def:string"/>
|
33
|
+
<style id="floating-point" _name="Floating point number" map-to="def:floating-point"/>
|
34
|
+
<style id="decimal" _name="Decimal number" map-to="def:decimal"/>
|
35
|
+
<style id="function" _name="Function" map-to="def:function"/>
|
36
|
+
</styles>
|
37
|
+
|
38
|
+
<default-regex-options case-sensitive="false"/>
|
39
|
+
|
40
|
+
<definitions>
|
41
|
+
|
42
|
+
<context id="line-comment" style-ref="comment" end-at-line-end="true">
|
43
|
+
<start>;</start>
|
44
|
+
<include>
|
45
|
+
<context ref="def:escape"/>
|
46
|
+
<context ref="def:line-continue"/>
|
47
|
+
</include>
|
48
|
+
</context>
|
49
|
+
|
50
|
+
<context id="string-doublequote" style-ref="string" end-at-line-end="true">
|
51
|
+
<start>"</start>
|
52
|
+
<end>"</end>
|
53
|
+
<include>
|
54
|
+
<context ref="def:line-continue"/>
|
55
|
+
</include>
|
56
|
+
</context>
|
57
|
+
|
58
|
+
<context id="string-singlequote" style-ref="string" end-at-line-end="true">
|
59
|
+
<start>'</start>
|
60
|
+
<end>'</end>
|
61
|
+
<include>
|
62
|
+
<context ref="def:line-continue"/>
|
63
|
+
</include>
|
64
|
+
</context>
|
65
|
+
|
66
|
+
<context id="sectional" style-ref="preprocessor">
|
67
|
+
<start>%\(</start>
|
68
|
+
<end>%\)</end>
|
69
|
+
<include>
|
70
|
+
<context ref="def:escape"/>
|
71
|
+
<context ref="def:line-continue"/>
|
72
|
+
</include>
|
73
|
+
</context>
|
74
|
+
|
75
|
+
<context id="operators" style-ref="keyword">
|
76
|
+
<keyword>NOT</keyword>
|
77
|
+
<keyword>AND</keyword>
|
78
|
+
<keyword>OR</keyword>
|
79
|
+
<keyword>XOR</keyword>
|
80
|
+
<keyword>EQV</keyword>
|
81
|
+
<keyword>NEQV</keyword>
|
82
|
+
<keyword>EQ</keyword>
|
83
|
+
<keyword>NE</keyword>
|
84
|
+
<keyword>GT</keyword>
|
85
|
+
<keyword>GE</keyword>
|
86
|
+
<keyword>LT</keyword>
|
87
|
+
<keyword>LE</keyword>
|
88
|
+
</context>
|
89
|
+
|
90
|
+
<context id="keyword" style-ref="keyword">
|
91
|
+
<keyword>begin</keyword>
|
92
|
+
<keyword>case</keyword>
|
93
|
+
<keyword>common</keyword>
|
94
|
+
<keyword>compile_opt</keyword>
|
95
|
+
<keyword>cycle</keyword>
|
96
|
+
<keyword>do</keyword>
|
97
|
+
<keyword>elseif</keyword>
|
98
|
+
<keyword>else</keyword>
|
99
|
+
<keyword>elsewhere</keyword>
|
100
|
+
<keyword>enddo</keyword>
|
101
|
+
<keyword>endif</keyword>
|
102
|
+
<keyword>end</keyword>
|
103
|
+
<keyword>endelse</keyword>
|
104
|
+
<keyword>endfor</keyword>
|
105
|
+
<keyword>endforeach</keyword>
|
106
|
+
<keyword>endcase</keyword>
|
107
|
+
<keyword>external</keyword>
|
108
|
+
<keyword>for</keyword>
|
109
|
+
<keyword>foreach</keyword>
|
110
|
+
<keyword>function</keyword>
|
111
|
+
<keyword>if</keyword>
|
112
|
+
<keyword>pro</keyword>
|
113
|
+
<keyword>return</keyword>
|
114
|
+
<keyword>SELECT</keyword>
|
115
|
+
<keyword>stop</keyword>
|
116
|
+
<keyword>then</keyword>
|
117
|
+
<keyword>type</keyword>
|
118
|
+
<keyword>use</keyword>
|
119
|
+
<keyword>while</keyword>
|
120
|
+
</context>
|
121
|
+
|
122
|
+
<context id="functions" style-ref="function">
|
123
|
+
<keyword>a_correlate</keyword>
|
124
|
+
<keyword>adapt_hist_equal</keyword>
|
125
|
+
<keyword>amoeba</keyword>
|
126
|
+
<keyword>annotate</keyword>
|
127
|
+
<keyword>array_indices</keyword>
|
128
|
+
<keyword>arrow</keyword>
|
129
|
+
<keyword>ascii_template</keyword>
|
130
|
+
<keyword>bar_plot</keyword>
|
131
|
+
<keyword>beta</keyword>
|
132
|
+
<keyword>bilinear</keyword>
|
133
|
+
<keyword>binary_template</keyword>
|
134
|
+
<keyword>bin_date</keyword>
|
135
|
+
<keyword>binomial</keyword>
|
136
|
+
<keyword>bisect_pdf</keyword>
|
137
|
+
<keyword>blk_con</keyword>
|
138
|
+
<keyword>box_cursor</keyword>
|
139
|
+
<keyword>butterworth</keyword>
|
140
|
+
<keyword>caldat</keyword>
|
141
|
+
<keyword>calendar</keyword>
|
142
|
+
<keyword>canny</keyword>
|
143
|
+
<keyword>c_correlate</keyword>
|
144
|
+
<keyword>cdf_exists</keyword>
|
145
|
+
<keyword>chebyshev</keyword>
|
146
|
+
<keyword>chisqr_cvf</keyword>
|
147
|
+
<keyword>chisqr_pdf</keyword>
|
148
|
+
<keyword>cir_3pnt</keyword>
|
149
|
+
<keyword>close</keyword>
|
150
|
+
<keyword>cluster</keyword>
|
151
|
+
<keyword>cluster_tree</keyword>
|
152
|
+
<keyword>clust_wts</keyword>
|
153
|
+
<keyword>cmyk_convert</keyword>
|
154
|
+
<keyword>color_exchange</keyword>
|
155
|
+
<keyword>colorize_sample</keyword>
|
156
|
+
<keyword>colormap_applicable</keyword>
|
157
|
+
<keyword>colormap_gradient</keyword>
|
158
|
+
<keyword>colormap_rotation</keyword>
|
159
|
+
<keyword>color_range_map</keyword>
|
160
|
+
<keyword>comfit</keyword>
|
161
|
+
<keyword>complexround</keyword>
|
162
|
+
<keyword>cond</keyword>
|
163
|
+
<keyword>congrid</keyword>
|
164
|
+
<keyword>coord2to3</keyword>
|
165
|
+
<keyword>correlate</keyword>
|
166
|
+
<keyword>cramer</keyword>
|
167
|
+
<keyword>create_view</keyword>
|
168
|
+
<keyword>crossp</keyword>
|
169
|
+
<keyword>crvlength</keyword>
|
170
|
+
<keyword>cti_test</keyword>
|
171
|
+
<keyword>ct_luminance</keyword>
|
172
|
+
<keyword>curvefit</keyword>
|
173
|
+
<keyword>cv_coord</keyword>
|
174
|
+
<keyword>cvttobm</keyword>
|
175
|
+
<keyword>cw_animate</keyword>
|
176
|
+
<keyword>cw_arcball</keyword>
|
177
|
+
<keyword>cw_bgroup</keyword>
|
178
|
+
<keyword>cw_clr_index</keyword>
|
179
|
+
<keyword>cw_colorsel</keyword>
|
180
|
+
<keyword>cw_defroi</keyword>
|
181
|
+
<keyword>cw_dice</keyword>
|
182
|
+
<keyword>cw_field</keyword>
|
183
|
+
<keyword>cw_filesel</keyword>
|
184
|
+
<keyword>cw_form</keyword>
|
185
|
+
<keyword>cw_fslider</keyword>
|
186
|
+
<keyword>cw_light_editor</keyword>
|
187
|
+
<keyword>cw_orient</keyword>
|
188
|
+
<keyword>cw_palette_editor</keyword>
|
189
|
+
<keyword>cw_pdmenu</keyword>
|
190
|
+
<keyword>cw_rgbslider</keyword>
|
191
|
+
<keyword>cw_tmpl</keyword>
|
192
|
+
<keyword>cw_treestructure</keyword>
|
193
|
+
<keyword>cw_zoom</keyword>
|
194
|
+
<keyword>define_msgblk_from_file</keyword>
|
195
|
+
<keyword>defroi</keyword>
|
196
|
+
<keyword>dendrogram</keyword>
|
197
|
+
<keyword>dendro_plot</keyword>
|
198
|
+
<keyword>deriv</keyword>
|
199
|
+
<keyword>derivsig</keyword>
|
200
|
+
<keyword>determ</keyword>
|
201
|
+
<keyword>device</keyword>
|
202
|
+
<keyword>dialog_message</keyword>
|
203
|
+
<keyword>dialog_read_image</keyword>
|
204
|
+
<keyword>dialog_write_image</keyword>
|
205
|
+
<keyword>digital_filter</keyword>
|
206
|
+
<keyword>dissolve</keyword>
|
207
|
+
<keyword>distance_measure</keyword>
|
208
|
+
<keyword>dist</keyword>
|
209
|
+
<keyword>dl_dos</keyword>
|
210
|
+
<keyword>dl_unix</keyword>
|
211
|
+
<keyword>doc_library</keyword>
|
212
|
+
<keyword>edge_dog</keyword>
|
213
|
+
<keyword>efont</keyword>
|
214
|
+
<keyword>eigenql</keyword>
|
215
|
+
<keyword>eigenvec</keyword>
|
216
|
+
<keyword>emboss</keyword>
|
217
|
+
<keyword>eos_exists</keyword>
|
218
|
+
<keyword>eos_gd_query</keyword>
|
219
|
+
<keyword>eos_pt_query</keyword>
|
220
|
+
<keyword>eos_query</keyword>
|
221
|
+
<keyword>eos_sw_query</keyword>
|
222
|
+
<keyword>erase</keyword>
|
223
|
+
<keyword>errplot</keyword>
|
224
|
+
<keyword>expand</keyword>
|
225
|
+
<keyword>extrac</keyword>
|
226
|
+
<keyword>extract_slice</keyword>
|
227
|
+
<keyword>factorial</keyword>
|
228
|
+
<keyword>f_cvf</keyword>
|
229
|
+
<keyword>filepath</keyword>
|
230
|
+
<keyword>file_basename</keyword>
|
231
|
+
<keyword>file_copy</keyword>
|
232
|
+
<keyword>file_lines</keyword>
|
233
|
+
<keyword>file_search</keyword>
|
234
|
+
<keyword>file_test</keyword>
|
235
|
+
<keyword>file_which</keyword>
|
236
|
+
<keyword>flick</keyword>
|
237
|
+
<keyword>flow3</keyword>
|
238
|
+
<keyword>free_lun</keyword>
|
239
|
+
<keyword>f_pdf</keyword>
|
240
|
+
<keyword>funct</keyword>
|
241
|
+
<keyword>fv_test</keyword>
|
242
|
+
<keyword>fx_root</keyword>
|
243
|
+
<keyword>gamma_ct</keyword>
|
244
|
+
<keyword>gamma</keyword>
|
245
|
+
<keyword>gauss2dfit</keyword>
|
246
|
+
<keyword>gauss_cvf</keyword>
|
247
|
+
<keyword>gaussfit</keyword>
|
248
|
+
<keyword>gauss_pdf</keyword>
|
249
|
+
<keyword>get_screen_size</keyword>
|
250
|
+
<keyword>goto</keyword>
|
251
|
+
<keyword>graphics_times2</keyword>
|
252
|
+
<keyword>graphics_times3</keyword>
|
253
|
+
<keyword>graphics_times</keyword>
|
254
|
+
<keyword>gs_iter</keyword>
|
255
|
+
<keyword>h5_browser</keyword>
|
256
|
+
<keyword>h5_create</keyword>
|
257
|
+
<keyword>h5_parse</keyword>
|
258
|
+
<keyword>h5t_enum_get_data</keyword>
|
259
|
+
<keyword>h5t_enum_set_data</keyword>
|
260
|
+
<keyword>h5t_enum_values_to_names</keyword>
|
261
|
+
<keyword>h5t_str_to_vlen</keyword>
|
262
|
+
<keyword>h5t_vlen_to_str</keyword>
|
263
|
+
<keyword>hanning</keyword>
|
264
|
+
<keyword>hdf_exists</keyword>
|
265
|
+
<keyword>h_eq_ct</keyword>
|
266
|
+
<keyword>h_eq_int</keyword>
|
267
|
+
<keyword>hilbert</keyword>
|
268
|
+
<keyword>hist_2d</keyword>
|
269
|
+
<keyword>hist_equal</keyword>
|
270
|
+
<keyword>hls</keyword>
|
271
|
+
<keyword>hsv</keyword>
|
272
|
+
<keyword>ibeta</keyword>
|
273
|
+
<keyword>identity</keyword>
|
274
|
+
<keyword>idl_crank</keyword>
|
275
|
+
<keyword>idlfflangcat__define</keyword>
|
276
|
+
<keyword>idlgrarc__define</keyword>
|
277
|
+
<keyword>idlgrcolorbar__define</keyword>
|
278
|
+
<keyword>idlgrlegend__define</keyword>
|
279
|
+
<keyword>idlgrshaderbytscl__define</keyword>
|
280
|
+
<keyword>idlgrshaderconvol3__define</keyword>
|
281
|
+
<keyword>idlgrtextedit__define</keyword>
|
282
|
+
<keyword>igamma</keyword>
|
283
|
+
<keyword>image_cont</keyword>
|
284
|
+
<keyword>import_ascii</keyword>
|
285
|
+
<keyword>import_binary</keyword>
|
286
|
+
<keyword>import_create_varname</keyword>
|
287
|
+
<keyword>import_hdf</keyword>
|
288
|
+
<keyword>import_image</keyword>
|
289
|
+
<keyword>insget</keyword>
|
290
|
+
<keyword>insput</keyword>
|
291
|
+
<keyword>insvis</keyword>
|
292
|
+
<keyword>int_2d</keyword>
|
293
|
+
<keyword>int_3d</keyword>
|
294
|
+
<keyword>interpol</keyword>
|
295
|
+
<keyword>int_tabulated_2d</keyword>
|
296
|
+
<keyword>int_tabulated</keyword>
|
297
|
+
<keyword>ir_filter</keyword>
|
298
|
+
<keyword>julday</keyword>
|
299
|
+
<keyword>krig2d</keyword>
|
300
|
+
<keyword>kurtosis</keyword>
|
301
|
+
<keyword>kw_test</keyword>
|
302
|
+
<keyword>label_date</keyword>
|
303
|
+
<keyword>la_determ</keyword>
|
304
|
+
<keyword>ladfit</keyword>
|
305
|
+
<keyword>laguerre</keyword>
|
306
|
+
<keyword>la_linear_equation</keyword>
|
307
|
+
<keyword>laplacian</keyword>
|
308
|
+
<keyword>leefilt</keyword>
|
309
|
+
<keyword>linfit</keyword>
|
310
|
+
<keyword>ll_arc_distance</keyword>
|
311
|
+
<keyword>lmfit</keyword>
|
312
|
+
<keyword>lmfunct</keyword>
|
313
|
+
<keyword>loadct</keyword>
|
314
|
+
<keyword>lu_complex</keyword>
|
315
|
+
<keyword>map_2points</keyword>
|
316
|
+
<keyword>map_continents</keyword>
|
317
|
+
<keyword>map_grid</keyword>
|
318
|
+
<keyword>map_horizon</keyword>
|
319
|
+
<keyword>map_image</keyword>
|
320
|
+
<keyword>map_patch</keyword>
|
321
|
+
<keyword>map_point_valid</keyword>
|
322
|
+
<keyword>map_proj_image</keyword>
|
323
|
+
<keyword>map_proj_info</keyword>
|
324
|
+
<keyword>map_proj_init_commonblock</keyword>
|
325
|
+
<keyword>map_proj_init_common</keyword>
|
326
|
+
<keyword>map_proj_init</keyword>
|
327
|
+
<keyword>map_satellite_limit</keyword>
|
328
|
+
<keyword>map_set</keyword>
|
329
|
+
<keyword>map_struct_append</keyword>
|
330
|
+
<keyword>matrix_power</keyword>
|
331
|
+
<keyword>m_correlate</keyword>
|
332
|
+
<keyword>md_test</keyword>
|
333
|
+
<keyword>meanabsdev</keyword>
|
334
|
+
<keyword>mean</keyword>
|
335
|
+
<keyword>mesh_obj</keyword>
|
336
|
+
<keyword>min_curve_surf</keyword>
|
337
|
+
<keyword>mk_html_help</keyword>
|
338
|
+
<keyword>modifyct</keyword>
|
339
|
+
<keyword>moment</keyword>
|
340
|
+
<keyword>morph_close</keyword>
|
341
|
+
<keyword>morph_gradient</keyword>
|
342
|
+
<keyword>morph_hitormiss</keyword>
|
343
|
+
<keyword>morph_open</keyword>
|
344
|
+
<keyword>morph_thin</keyword>
|
345
|
+
<keyword>morph_tophat</keyword>
|
346
|
+
<keyword>mpeg_close</keyword>
|
347
|
+
<keyword>mpeg_open</keyword>
|
348
|
+
<keyword>mpeg_put</keyword>
|
349
|
+
<keyword>mpeg_save</keyword>
|
350
|
+
<keyword>multi</keyword>
|
351
|
+
<keyword>ncdf_exists</keyword>
|
352
|
+
<keyword>noise_hurl</keyword>
|
353
|
+
<keyword>noise_pick</keyword>
|
354
|
+
<keyword>noise_scatter</keyword>
|
355
|
+
<keyword>noise_slur</keyword>
|
356
|
+
<keyword>norm</keyword>
|
357
|
+
<keyword>obj_new</keyword>
|
358
|
+
<keyword>online_help_pdf_index</keyword>
|
359
|
+
<keyword>online_help_pdf_nd2file</keyword>
|
360
|
+
<keyword>openr</keyword>
|
361
|
+
<keyword>openw</keyword>
|
362
|
+
<keyword>oploterr</keyword>
|
363
|
+
<keyword>parse_url</keyword>
|
364
|
+
<keyword>path_sep</keyword>
|
365
|
+
<keyword>pcomp</keyword>
|
366
|
+
<keyword>p_correlate</keyword>
|
367
|
+
<keyword>plot_3dbox</keyword>
|
368
|
+
<keyword>ploterr</keyword>
|
369
|
+
<keyword>plot_field</keyword>
|
370
|
+
<keyword>pm</keyword>
|
371
|
+
<keyword>pnt_line</keyword>
|
372
|
+
<keyword>polar_contour</keyword>
|
373
|
+
<keyword>polar_surface</keyword>
|
374
|
+
<keyword>poly_area</keyword>
|
375
|
+
<keyword>poly_fit</keyword>
|
376
|
+
<keyword>poly</keyword>
|
377
|
+
<keyword>polywarp</keyword>
|
378
|
+
<keyword>popd</keyword>
|
379
|
+
<keyword>pref_migrate</keyword>
|
380
|
+
<keyword>primes</keyword>
|
381
|
+
<keyword>print</keyword>
|
382
|
+
<keyword>printd</keyword>
|
383
|
+
<keyword>printf</keyword>
|
384
|
+
<keyword>profile</keyword>
|
385
|
+
<keyword>profiles</keyword>
|
386
|
+
<keyword>project_vol</keyword>
|
387
|
+
<keyword>psafm</keyword>
|
388
|
+
<keyword>pseudo</keyword>
|
389
|
+
<keyword>ps_show_fonts</keyword>
|
390
|
+
<keyword>ptr_free</keyword>
|
391
|
+
<keyword>ptr_new</keyword>
|
392
|
+
<keyword>ptr_valid</keyword>
|
393
|
+
<keyword>pushd</keyword>
|
394
|
+
<keyword>query_ascii</keyword>
|
395
|
+
<keyword>query_bmp</keyword>
|
396
|
+
<keyword>query_dicom</keyword>
|
397
|
+
<keyword>query_gif</keyword>
|
398
|
+
<keyword>query_image</keyword>
|
399
|
+
<keyword>query_jpeg2000</keyword>
|
400
|
+
<keyword>query_pict</keyword>
|
401
|
+
<keyword>query_ppm</keyword>
|
402
|
+
<keyword>query_srf</keyword>
|
403
|
+
<keyword>query_wav</keyword>
|
404
|
+
<keyword>ranks</keyword>
|
405
|
+
<keyword>rb_routines</keyword>
|
406
|
+
<keyword>r_correlate</keyword>
|
407
|
+
<keyword>rdpix</keyword>
|
408
|
+
<keyword>read_ascii</keyword>
|
409
|
+
<keyword>read_binary</keyword>
|
410
|
+
<keyword>read_bmp</keyword>
|
411
|
+
<keyword>read_dicom</keyword>
|
412
|
+
<keyword>readf</keyword>
|
413
|
+
<keyword>read_gif</keyword>
|
414
|
+
<keyword>read_image</keyword>
|
415
|
+
<keyword>read_interfile</keyword>
|
416
|
+
<keyword>read_jpeg2000</keyword>
|
417
|
+
<keyword>read_pict_item</keyword>
|
418
|
+
<keyword>read_pict</keyword>
|
419
|
+
<keyword>read_ppm_next_line</keyword>
|
420
|
+
<keyword>read_ppm_next_token</keyword>
|
421
|
+
<keyword>read_ppm</keyword>
|
422
|
+
<keyword>read_spr</keyword>
|
423
|
+
<keyword>read_srf</keyword>
|
424
|
+
<keyword>read_sylk</keyword>
|
425
|
+
<keyword>read_wave</keyword>
|
426
|
+
<keyword>read_wav</keyword>
|
427
|
+
<keyword>read_x11_bitmap</keyword>
|
428
|
+
<keyword>read_xwd</keyword>
|
429
|
+
<keyword>real_part</keyword>
|
430
|
+
<keyword>recon3</keyword>
|
431
|
+
<keyword>reduce_colors</keyword>
|
432
|
+
<keyword>region_grow</keyword>
|
433
|
+
<keyword>regress</keyword>
|
434
|
+
<keyword>replicate</keyword>
|
435
|
+
<keyword>resolve_all</keyword>
|
436
|
+
<keyword>restore</keyword>
|
437
|
+
<keyword>reverse</keyword>
|
438
|
+
<keyword>rm</keyword>
|
439
|
+
<keyword>round</keyword>
|
440
|
+
<keyword>rot</keyword>
|
441
|
+
<keyword>rs_test</keyword>
|
442
|
+
<keyword>r_test</keyword>
|
443
|
+
<keyword>save</keyword>
|
444
|
+
<keyword>savgol</keyword>
|
445
|
+
<keyword>scale3d</keyword>
|
446
|
+
<keyword>scale3</keyword>
|
447
|
+
<keyword>search2d</keyword>
|
448
|
+
<keyword>search3d</keyword>
|
449
|
+
<keyword>sfit</keyword>
|
450
|
+
<keyword>shade_surf_irr</keyword>
|
451
|
+
<keyword>shift_diff</keyword>
|
452
|
+
<keyword>show3</keyword>
|
453
|
+
<keyword>showfont</keyword>
|
454
|
+
<keyword>showinfo</keyword>
|
455
|
+
<keyword>skewness</keyword>
|
456
|
+
<keyword>slicer3</keyword>
|
457
|
+
<keyword>slide_image</keyword>
|
458
|
+
<keyword>sort</keyword>
|
459
|
+
<keyword>sph_4pnt</keyword>
|
460
|
+
<keyword>spher_harm</keyword>
|
461
|
+
<keyword>sph_scat</keyword>
|
462
|
+
<keyword>spline_p</keyword>
|
463
|
+
<keyword>spline</keyword>
|
464
|
+
<keyword>standardize</keyword>
|
465
|
+
<keyword>stddev</keyword>
|
466
|
+
<keyword>s_test</keyword>
|
467
|
+
<keyword>strarr</keyword>
|
468
|
+
<keyword>strcompress</keyword>
|
469
|
+
<keyword>streamline</keyword>
|
470
|
+
<keyword>stretch</keyword>
|
471
|
+
<keyword>string</keyword>
|
472
|
+
<keyword>strjoin</keyword>
|
473
|
+
<keyword>strlen</keyword>
|
474
|
+
<keyword>strlowcase</keyword>
|
475
|
+
<keyword>strmatch</keyword>
|
476
|
+
<keyword>strmid</keyword>
|
477
|
+
<keyword>strpos</keyword>
|
478
|
+
<keyword>strsplit</keyword>
|
479
|
+
<keyword>strtrim</keyword>
|
480
|
+
<keyword>strupcase</keyword>
|
481
|
+
<keyword>surfr</keyword>
|
482
|
+
<keyword>svdfit</keyword>
|
483
|
+
<keyword>svdfunct</keyword>
|
484
|
+
<keyword>svdleg</keyword>
|
485
|
+
<keyword>swap_endian_inplace</keyword>
|
486
|
+
<keyword>swap_endian</keyword>
|
487
|
+
<keyword>systime</keyword>
|
488
|
+
<keyword>t3d</keyword>
|
489
|
+
<keyword>t_cvf</keyword>
|
490
|
+
<keyword>tek_color</keyword>
|
491
|
+
<keyword>testdemo</keyword>
|
492
|
+
<keyword>test_hp</keyword>
|
493
|
+
<keyword>test_lj</keyword>
|
494
|
+
<keyword>test_pcl</keyword>
|
495
|
+
<keyword>test_true</keyword>
|
496
|
+
<keyword>threed</keyword>
|
497
|
+
<keyword>timegen</keyword>
|
498
|
+
<keyword>time_test2</keyword>
|
499
|
+
<keyword>time_test3</keyword>
|
500
|
+
<keyword>time_test</keyword>
|
501
|
+
<keyword>time_thread</keyword>
|
502
|
+
<keyword>tm_test</keyword>
|
503
|
+
<keyword>t_pdf</keyword>
|
504
|
+
<keyword>trace</keyword>
|
505
|
+
<keyword>trackball__define</keyword>
|
506
|
+
<keyword>transpose</keyword>
|
507
|
+
<keyword>tri_surf</keyword>
|
508
|
+
<keyword>ts_coef</keyword>
|
509
|
+
<keyword>ts_diff</keyword>
|
510
|
+
<keyword>ts_fcast</keyword>
|
511
|
+
<keyword>ts_smooth</keyword>
|
512
|
+
<keyword>tvlct</keyword>
|
513
|
+
<keyword>tvrd</keyword>
|
514
|
+
<keyword>uniq</keyword>
|
515
|
+
<keyword>unsharp_mask</keyword>
|
516
|
+
<keyword>variance</keyword>
|
517
|
+
<keyword>vector_field</keyword>
|
518
|
+
<keyword>velovect</keyword>
|
519
|
+
<keyword>vel</keyword>
|
520
|
+
<keyword>vert_t3d</keyword>
|
521
|
+
<keyword>voronoi</keyword>
|
522
|
+
<keyword>warp_tri</keyword>
|
523
|
+
<keyword>wdelete</keyword>
|
524
|
+
<keyword>wf_draw</keyword>
|
525
|
+
<keyword>where</keyword>
|
526
|
+
<keyword>widget_base</keyword>
|
527
|
+
<keyword>widget_button</keyword>
|
528
|
+
<keyword>widget_control</keyword>
|
529
|
+
<keyword>widget_info</keyword>
|
530
|
+
<keyword>widget_text</keyword>
|
531
|
+
<keyword>widget_tree_move</keyword>
|
532
|
+
<keyword>window</keyword>
|
533
|
+
<keyword>write_bmp</keyword>
|
534
|
+
<keyword>write_gif</keyword>
|
535
|
+
<keyword>write_image</keyword>
|
536
|
+
<keyword>write_jpeg2000</keyword>
|
537
|
+
<keyword>write_nrif</keyword>
|
538
|
+
<keyword>write_pict</keyword>
|
539
|
+
<keyword>write_ppm</keyword>
|
540
|
+
<keyword>write_spr</keyword>
|
541
|
+
<keyword>write_srf</keyword>
|
542
|
+
<keyword>write_sylk</keyword>
|
543
|
+
<keyword>write_wave</keyword>
|
544
|
+
<keyword>write_wav</keyword>
|
545
|
+
<keyword>xmanager</keyword>
|
546
|
+
<keyword>xmng_tmpl</keyword>
|
547
|
+
<keyword>xregistered</keyword>
|
548
|
+
<keyword>xsq_test</keyword>
|
549
|
+
<keyword>xyouts</keyword>
|
550
|
+
<keyword>zoom_24</keyword>
|
551
|
+
<keyword>zoom</keyword>
|
552
|
+
</context>
|
553
|
+
|
554
|
+
<context id="include-pragma" style-ref="preprocessor" end-at-line-end="true">
|
555
|
+
<start>^#[ \t]*(include|pragma)</start>
|
556
|
+
<include>
|
557
|
+
<context ref="def:escape"/>
|
558
|
+
<context ref="def:line-continue"/>
|
559
|
+
</include>
|
560
|
+
</context>
|
561
|
+
|
562
|
+
<context id="function" style-ref="function">
|
563
|
+
<keyword>add</keyword>
|
564
|
+
<keyword>draw</keyword>
|
565
|
+
<keyword>interpolate</keyword>
|
566
|
+
<keyword>min</keyword>
|
567
|
+
<keyword>max</keyword>
|
568
|
+
<keyword>mean</keyword>
|
569
|
+
<keyword>n_elements</keyword>
|
570
|
+
<keyword>obj_destroy</keyword>
|
571
|
+
<keyword>reform</keyword>
|
572
|
+
<keyword>rotate</keyword>
|
573
|
+
<keyword>size</keyword>
|
574
|
+
<keyword>Xobjview</keyword>
|
575
|
+
</context>
|
576
|
+
|
577
|
+
<context id="types" style-ref="type">
|
578
|
+
<keyword>float</keyword>
|
579
|
+
<keyword>fltarr</keyword>
|
580
|
+
<keyword>UINT</keyword>
|
581
|
+
<keyword>long</keyword>
|
582
|
+
<keyword>fix</keyword>
|
583
|
+
<keyword>lonarr</keyword>
|
584
|
+
</context>
|
585
|
+
|
586
|
+
<context id="float" style-ref="floating-point">
|
587
|
+
<match extended="true">
|
588
|
+
(?<![\w\.])
|
589
|
+
([0-9_]+[Ee][-]?[0-9_]+|([0-9_]*\.[0-9_]+|[0-9_]+\.)([Ee][-]?[0-9_]+)?)[fFLi]?
|
590
|
+
(?![\w\.])
|
591
|
+
</match>
|
592
|
+
</context>
|
593
|
+
|
594
|
+
<context id="decimal" style-ref="decimal">
|
595
|
+
<match extended="true">
|
596
|
+
(?<![\w\.])
|
597
|
+
([1-9][0-9_]*|0)([Uu]([Ll]|LL|ll)?|([Ll]|LL|ll)[Uu]?)?
|
598
|
+
(?![\w\.])
|
599
|
+
</match>
|
600
|
+
</context>
|
601
|
+
|
602
|
+
<context id="idl-exelis">
|
603
|
+
<include>
|
604
|
+
<context ref="operators"/>
|
605
|
+
<context ref="line-comment"/>
|
606
|
+
<context ref="sectional"/>
|
607
|
+
<context ref="string-singlequote"/>
|
608
|
+
<context ref="string-doublequote"/>
|
609
|
+
<context ref="include-pragma"/>
|
610
|
+
<context ref="keyword"/>
|
611
|
+
<context ref="types"/>
|
612
|
+
<context ref="float"/>
|
613
|
+
<context ref="functions"/>
|
614
|
+
<context ref="function"/>
|
615
|
+
<context ref="decimal"/>
|
616
|
+
<context ref="types"/>
|
617
|
+
</include>
|
618
|
+
</context>
|
619
|
+
</definitions>
|
620
|
+
</language>
|