gtksourceview3 1.2.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/README +29 -0
- data/Rakefile +29 -0
- data/ext/gtksourceview3/depend +6 -0
- data/ext/gtksourceview3/extconf.rb +76 -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 +64 -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 +43 -0
- data/ext/gtksourceview3/rbgtksourceview3private.h +54 -0
- data/extconf.rb +49 -0
- data/lib/1.8/gtksourceview3.so +0 -0
- data/lib/1.9/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 +33 -0
- data/test/test_source_view.rb +17 -0
- data/vendor/local/bin/libgtksourceview-3.0-0.dll +0 -0
- data/vendor/local/bin/libxml2-2.dll +0 -0
- data/vendor/local/bin/xmlcatalog.exe +0 -0
- data/vendor/local/bin/xmllint.exe +0 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +66 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +46 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +199 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +129 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +94 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +73 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +71 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +76 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +118 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +90 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +222 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +85 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +83 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +87 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +85 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +71 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +99 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +176 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +41 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +93 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +89 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +62 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +77 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +55 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +223 -0
- data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
- data/vendor/local/include/libxml2/libxml/HTMLparser.h +306 -0
- data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
- data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
- data/vendor/local/include/libxml2/libxml/SAX2.h +176 -0
- data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
- data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
- data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
- data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
- data/vendor/local/include/libxml2/libxml/dict.h +80 -0
- data/vendor/local/include/libxml2/libxml/encoding.h +240 -0
- data/vendor/local/include/libxml2/libxml/entities.h +150 -0
- data/vendor/local/include/libxml2/libxml/globals.h +502 -0
- data/vendor/local/include/libxml2/libxml/hash.h +233 -0
- data/vendor/local/include/libxml2/libxml/list.h +137 -0
- data/vendor/local/include/libxml2/libxml/nanoftp.h +163 -0
- data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
- data/vendor/local/include/libxml2/libxml/parser.h +1240 -0
- data/vendor/local/include/libxml2/libxml/parserInternals.h +644 -0
- data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
- data/vendor/local/include/libxml2/libxml/relaxng.h +213 -0
- data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
- data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
- data/vendor/local/include/libxml2/libxml/threads.h +84 -0
- data/vendor/local/include/libxml2/libxml/tree.h +1303 -0
- data/vendor/local/include/libxml2/libxml/uri.h +94 -0
- data/vendor/local/include/libxml2/libxml/valid.h +458 -0
- data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
- data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
- data/vendor/local/include/libxml2/libxml/xmlIO.h +366 -0
- data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
- data/vendor/local/include/libxml2/libxml/xmlerror.h +944 -0
- data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
- data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
- data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
- data/vendor/local/include/libxml2/libxml/xmlreader.h +428 -0
- data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
- data/vendor/local/include/libxml2/libxml/xmlsave.h +88 -0
- data/vendor/local/include/libxml2/libxml/xmlschemas.h +246 -0
- data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
- data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
- data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
- data/vendor/local/include/libxml2/libxml/xmlversion.h +480 -0
- data/vendor/local/include/libxml2/libxml/xmlwriter.h +488 -0
- data/vendor/local/include/libxml2/libxml/xpath.h +550 -0
- data/vendor/local/include/libxml2/libxml/xpathInternals.h +632 -0
- data/vendor/local/include/libxml2/libxml/xpointer.h +114 -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/libxml2.def +1659 -0
- data/vendor/local/lib/libxml2.dll.a +0 -0
- data/vendor/local/lib/libxml2.lib +0 -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/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/lib/pkgconfig/libxml-2.0.pc +13 -0
- data/vendor/local/manifest/libxml2-dev_2.9.0-1_win32.mft +268 -0
- data/vendor/local/manifest/libxml2_2.9.0-1_win32.mft +2 -0
- data/vendor/local/share/aclocal/libxml.m4 +188 -0
- data/vendor/local/share/doc/libxml2-2.9.0/Copyright +27 -0
- data/vendor/local/share/doc/libxml2-2.9.0/examples/testHTML.c +880 -0
- data/vendor/local/share/doc/libxml2-2.9.0/examples/testSAX.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.9.0/examples/testXPath.c +229 -0
- data/vendor/local/share/doc/libxml2-2.9.0/examples/xmllint.c +3770 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/DOM.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/FAQ.html +282 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/Libxml2-Logo-180x168.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/Libxml2-Logo-90x34.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/encoding.html +207 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/examples.xml +751 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/examples.xsl +174 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/book1.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/index.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/left.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-DOCBparser.html +51 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-HTMLparser.html +184 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-HTMLtree.html +73 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-SAX.html +125 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-SAX2.html +128 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-c14n.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-catalog.html +142 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-chvalid.html +72 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-debugXML.html +120 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-dict.html +58 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-encoding.html +124 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-entities.html +79 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-globals.html +152 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-hash.html +116 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-lib.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-list.html +120 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-nanoftp.html +94 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-nanohttp.html +65 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-parser.html +559 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-parserInternals.html +322 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-pattern.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-relaxng.html +162 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-schemasInternals.html +373 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-schematron.html +81 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-threads.html +72 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-tree.html +989 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-uri.html +73 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-valid.html +289 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xinclude.html +59 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xlink.html +82 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlIO.html +212 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlautomata.html +85 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlerror.html +864 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlexports.html +20 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlmemory.html +107 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlmodule.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlreader.html +330 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlregexp.html +143 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlsave.html +60 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlschemas.html +185 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlschemastypes.html +123 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlstring.html +108 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlunicode.html +512 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlversion.html +62 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlwriter.html +261 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpath.html +310 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpathInternals.html +394 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpointer.html +83 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/right.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/html/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/index.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/io1.c +166 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/io1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/io2.c +58 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/io2.res +2 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/libxml.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/parse1.c +56 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/parse2.c +72 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/parse3.c +60 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/parse4.c +143 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/reader1.c +107 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/reader1.res +14 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/reader2.c +122 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/reader3.c +120 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/reader3.res +13 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/reader4.c +122 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/reader4.res +3 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/redhat.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/smallfootonly.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/structure.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/test1.xml +1 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/test2.xml +13 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/test3.xml +39 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/testWriter.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tree1.c +94 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tree1.res +4 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tree2.c +118 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tree2.res +18 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tst.xml +7 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apa.html +8 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apb.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apc.html +82 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apd.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ape.html +78 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apf.html +67 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apg.html +75 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/aph.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/api.html +4 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s02.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s03.html +47 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s04.html +54 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s05.html +55 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s06.html +35 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s07.html +30 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s08.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s09.html +63 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/1.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/10.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/2.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/3.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/4.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/5.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/6.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/7.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/8.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/9.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/caution.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/draft.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/important.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/next.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/note.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/prev.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/tip.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-minus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-plus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/warning.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeaddattribute.c +64 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeaddkeyword.c +75 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeconvert.c +73 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includegetattribute.c +72 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includekeyword.c +79 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includexpath.c +74 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/index.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ix01.html +1 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/xmltutorial.pdf +1336 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/w3c.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/writer.xml +2 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/xml.html +5715 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/xpath1.c +250 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/xpath1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/xpath2.c +190 -0
- data/vendor/local/share/doc/libxml2-2.9.0/html/xpath2.res +30 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +1346 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +756 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +300 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +243 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +282 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +364 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +474 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +288 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +425 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +414 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +250 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +699 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +1822 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +228 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +296 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +357 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +346 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +1462 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +80 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +46 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +31 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +1538 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRenderer.html +956 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html +199 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRendererText.html +137 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +445 -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 +117 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +578 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +771 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +651 -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/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/rn01.html +101 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/rn02.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +252 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
- data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
- data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +373 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +134 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +218 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +187 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +766 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +688 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1596 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +347 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +952 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +565 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +133 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +314 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +287 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +479 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +532 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3569 -0
- data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
- data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/R.lang +130 -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/asp.lang +1097 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/automake.lang +329 -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/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 +92 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +43 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/check-language.sh +32 -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 +456 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cpp.lang +114 -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 +537 -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 +296 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/def.lang +252 -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 +115 -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 +512 -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 +180 -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 +338 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +123 -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 +300 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/libtool.lang +56 -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/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 +1028 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/php.lang +361 -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 +103 -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 +413 -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 +210 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ruby.lang +591 -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/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 +464 -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/styles/check-style.sh +20 -0
- data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +107 -0
- data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +135 -0
- data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +161 -0
- data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +117 -0
- data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +139 -0
- data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +117 -0
- data/vendor/local/share/license/gtksourceview/AUTHORS +12 -0
- data/vendor/local/share/license/gtksourceview/COPYING +340 -0
- data/vendor/local/share/man/man1/xml2-config.1 +30 -0
- data/vendor/local/share/man/man1/xmlcatalog.1 +340 -0
- data/vendor/local/share/man/man1/xmllint.1 +427 -0
- data/vendor/local/share/man/man3/libxml.3 +71 -0
- data/vendor/local/src/dieterv/packaging/libxml2_2.9.0-1_win32.log +867 -0
- data/vendor/local/src/dieterv/packaging/libxml2_2.9.0-1_win32.sh +68 -0
- metadata +642 -0
@@ -0,0 +1,859 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!--
|
3
|
+
|
4
|
+
This file is part of GtkSourceView
|
5
|
+
|
6
|
+
Authors: Søren Hauberg, Muthiah Annamalai, Carnë Draug
|
7
|
+
Copyright (C) 2006 Søren Hauberg <soren@hauberg.org>
|
8
|
+
Copyright (C) 2006 Muthiah Annamalai <gnumuthu@users.sf.net>
|
9
|
+
Copyright (C) 2010 Carnë Draug <carandraug+dev@gmail.com>
|
10
|
+
|
11
|
+
GtkSourceView is free software; you can redistribute it and/or
|
12
|
+
modify it under the terms of the GNU Lesser General Public
|
13
|
+
License as published by the Free Software Foundation; either
|
14
|
+
version 2.1 of the License, or (at your option) any later version.
|
15
|
+
|
16
|
+
GtkSourceView is distributed in the hope that it will be useful,
|
17
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
18
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
19
|
+
Lesser General Public License for more details.
|
20
|
+
|
21
|
+
You should have received a copy of the GNU Lesser General Public
|
22
|
+
License along with this library; if not, write to the Free Software
|
23
|
+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
24
|
+
|
25
|
+
-->
|
26
|
+
<language id="octave" _name="Octave" version="2.0" _section="Scientific">
|
27
|
+
<metadata>
|
28
|
+
<property name="mimetypes">text/x-octave;text/x-matlab</property>
|
29
|
+
<property name="globs">*.m</property>
|
30
|
+
<property name="line-comment-start">#</property>
|
31
|
+
<property name="block-comment-start">#{</property>
|
32
|
+
<property name="block-comment-end">}#</property>
|
33
|
+
</metadata>
|
34
|
+
|
35
|
+
<!--
|
36
|
+
Note: Matlab language is a subset of the Octave language. When making
|
37
|
+
modification to this file check first if they apply to both languages.
|
38
|
+
-->
|
39
|
+
|
40
|
+
<styles>
|
41
|
+
<style id="comment" _name="Comment" map-to="def:comment"/>
|
42
|
+
<style id="string" _name="String" map-to="def:string"/>
|
43
|
+
<style id="operator" _name="Operator" map-to="def:operator"/>
|
44
|
+
<style id="data-type" _name="Data type" map-to="def:type"/>
|
45
|
+
<style id="storage-type" _name="Storage Type" map-to="def:type"/>
|
46
|
+
<style id="boolean" _name="Boolean" map-to="def:boolean"/>
|
47
|
+
<style id="decimal" _name="Decimal" map-to="def:decimal"/>
|
48
|
+
<style id="floating-point" _name="Floating Point" map-to="def:floating-point"/>
|
49
|
+
<style id="base-n-integer" _name="Base-N Integer" map-to="def:base-n-integer"/>
|
50
|
+
<style id="package-manager" _name="Package Manager" map-to="def:preprocessor"/>
|
51
|
+
<style id="keyword" _name="Keyword" map-to="def:keyword"/>
|
52
|
+
<style id="variable" _name="Variable" map-to="def:identifier"/>
|
53
|
+
<style id="reserved-constant" _name="Reserved Constant" map-to="def:special-constant"/>
|
54
|
+
<style id="builtin" _name="Builtin" map-to="def:builtin"/>
|
55
|
+
</styles>
|
56
|
+
|
57
|
+
<definitions>
|
58
|
+
|
59
|
+
<context id="block-comment" style-ref="comment" class="comment" class-disabled="no-spell-check">
|
60
|
+
<start>^\s*[#%]{\s*$</start>
|
61
|
+
<end>^\s*[#%]}\s*$</end>
|
62
|
+
<include>
|
63
|
+
<context ref="block-comment"/>
|
64
|
+
<context ref="def:in-comment"/>
|
65
|
+
</include>
|
66
|
+
</context>
|
67
|
+
|
68
|
+
<context id="line-comment" style-ref="comment" end-at-line-end="true" class="comment" class-disabled="no-spell-check">
|
69
|
+
<start>#|%</start>
|
70
|
+
<include>
|
71
|
+
<context ref="def:in-comment"/>
|
72
|
+
</include>
|
73
|
+
</context>
|
74
|
+
|
75
|
+
<!--
|
76
|
+
Line continue in Octave are different from the one in def.lang. They can
|
77
|
+
either be ... or \ optionally followed by whitespace only.
|
78
|
+
-->
|
79
|
+
<context id="line-continue" style-ref="comment">
|
80
|
+
<start>(\.\.\.|\\)(\s)*?$</start>
|
81
|
+
<end>^</end>
|
82
|
+
<include>
|
83
|
+
<context ref="def:in-comment"/>
|
84
|
+
</include>
|
85
|
+
</context>
|
86
|
+
|
87
|
+
<context id="double-quoted-string" style-ref="string" end-at-line-end="true" class="string" class-disabled="no-spell-check">
|
88
|
+
<start>"</start>
|
89
|
+
<end>"</end>
|
90
|
+
<include>
|
91
|
+
<!-- octave uses the same printf format and escape chars as C -->
|
92
|
+
<context ref="c:printf"/>
|
93
|
+
<context ref="c:escaped-character"/>
|
94
|
+
<context ref="line-continue"/>
|
95
|
+
</include>
|
96
|
+
</context>
|
97
|
+
|
98
|
+
<context id="single-quoted-string" style-ref="string" end-at-line-end="true" class="string" class-disabled="no-spell-check">
|
99
|
+
<!--
|
100
|
+
To do not misdetect the transpose operator ' as the start of a string
|
101
|
+
we assert to not follow a variable name (letters, digits and underscores)
|
102
|
+
or a closing bracket (round, square or curly) or a dot (to form the
|
103
|
+
array transpose operator ".'" ).
|
104
|
+
-->
|
105
|
+
<start>(?<![0-9a-zA-Z_\)\]}\.])'</start>
|
106
|
+
<end>'</end>
|
107
|
+
<include>
|
108
|
+
<context style-ref="def:special-char">
|
109
|
+
<!--
|
110
|
+
Unlike double quoted string, single quote strings in octave do not
|
111
|
+
allow continuation lines or escaped characters. The only escape
|
112
|
+
necessary is the single quote itself which is escaped with two
|
113
|
+
single quotes.
|
114
|
+
-->
|
115
|
+
<match>''</match>
|
116
|
+
</context>
|
117
|
+
</include>
|
118
|
+
</context>
|
119
|
+
|
120
|
+
<!--To see the list of operators, use the function __operators__-->
|
121
|
+
<context id="operator" style-ref="operator">
|
122
|
+
<match extended="true">
|
123
|
+
(\.)?\+{1,2}?(?!\+) | # arithmetic operators
|
124
|
+
(\.)?\-{1,2}?(?!\-) | # already counting
|
125
|
+
(\.)?\*{1,2}?(?!\*) | # with auto increment,
|
126
|
+
(\.)?\/(?!\^) | # element by element,
|
127
|
+
(\.)?\\(?!\^) | # left division
|
128
|
+
(\.)?\^(?!\^) | # and both exp
|
129
|
+
(?<=[0-9a-zA-Z_)\]}])(\.)?' | # transpose operator
|
130
|
+
<=? | >=? | != | ~= | == | <> | # comparison operators
|
131
|
+
&{1,2}?(?!&) | \|{1,2}?(?!\|) | ! | ~ | # boolean operators
|
132
|
+
= | # assignment operator
|
133
|
+
: | # range operator
|
134
|
+
</match>
|
135
|
+
</context>
|
136
|
+
|
137
|
+
<context id="data-type" style-ref="data-type">
|
138
|
+
<keyword>cell</keyword>
|
139
|
+
<keyword>char</keyword>
|
140
|
+
<keyword>double</keyword>
|
141
|
+
<keyword>(u)?int(8|16|32|64)</keyword>
|
142
|
+
<keyword>logical</keyword>
|
143
|
+
<keyword>single</keyword>
|
144
|
+
<keyword>struct</keyword>
|
145
|
+
</context>
|
146
|
+
|
147
|
+
<context id="function-handle" style-ref="data-type">
|
148
|
+
<match case-sensitive="false">@([a-z_][a-z1-9_]*)?</match>
|
149
|
+
</context>
|
150
|
+
|
151
|
+
<context id="storage-type" style-ref="storage-type">
|
152
|
+
<keyword>global</keyword>
|
153
|
+
<keyword>persistent</keyword>
|
154
|
+
</context>
|
155
|
+
|
156
|
+
<context id="boolean" style-ref="boolean">
|
157
|
+
<!--
|
158
|
+
false and true can be used as functions too. Do not highlight as boolean
|
159
|
+
if followed by parentheses.
|
160
|
+
-->
|
161
|
+
<suffix>\b(?!(\s)*\()</suffix>
|
162
|
+
<keyword>false</keyword>
|
163
|
+
<keyword>true</keyword>
|
164
|
+
</context>
|
165
|
+
|
166
|
+
<context id="decimal" style-ref="decimal">
|
167
|
+
<match>\b([1-9][0-9]*|0)([Uu]([Ll]|LL|ll)?|([Ll]|LL|ll)[Uu]?)?\b</match>
|
168
|
+
</context>
|
169
|
+
|
170
|
+
<context id="floating-point-number" style-ref="floating-point">
|
171
|
+
<match>\b([0-9]+[Ee][-]?[0-9]+|([0-9]*\.[0-9]+|[0-9]+\.)([Ee][-]?[0-9]+)?)[fFlL]?</match>
|
172
|
+
</context>
|
173
|
+
|
174
|
+
<context id="octal-number" style-ref="base-n-integer">
|
175
|
+
<match>\b0[0-7]+([Uu]([Ll]|LL|ll)?|([Ll]|LL|ll)[Uu]?)?\b</match>
|
176
|
+
</context>
|
177
|
+
|
178
|
+
<context id="hex-number" style-ref="base-n-integer">
|
179
|
+
<match>\b0[xX][0-9a-fA-F]+([Uu]([Ll]|LL|ll)?|([Ll]|LL|ll)[Uu]?)?\b</match>
|
180
|
+
</context>
|
181
|
+
|
182
|
+
<context id="variables" style-ref="variable">
|
183
|
+
<keyword>ans</keyword>
|
184
|
+
</context>
|
185
|
+
|
186
|
+
<context id="reserved-constant" style-ref="reserved-constant">
|
187
|
+
<!--
|
188
|
+
Most of the constants can be used as functions too. Do not highlight as
|
189
|
+
constants if followed by parentheses.
|
190
|
+
-->
|
191
|
+
<suffix>\b(?!(\s)*\()</suffix>
|
192
|
+
<keyword>e</keyword>
|
193
|
+
<keyword>eps</keyword>
|
194
|
+
<keyword>(J|j|I|i)</keyword>
|
195
|
+
<keyword>(Inf|inf)</keyword>
|
196
|
+
<keyword>(NaN|nan)</keyword>
|
197
|
+
<keyword>NA</keyword>
|
198
|
+
<keyword>ones</keyword>
|
199
|
+
<keyword>pi</keyword>
|
200
|
+
<keyword>rand</keyword>
|
201
|
+
<keyword>zeros</keyword>
|
202
|
+
</context>
|
203
|
+
|
204
|
+
<context id="package-manager" style-ref="package-manager">
|
205
|
+
<!--
|
206
|
+
The list of pkg commands is optional to the match so that at least pkg
|
207
|
+
is highlighted when new commands get implemented.
|
208
|
+
-->
|
209
|
+
<match extended="true">
|
210
|
+
\bpkg(?!(\s)*\()(\s)+
|
211
|
+
((un)?install|update|(un)?load|list|(global|local)_list|describe|prefix|(re)?build)?\b
|
212
|
+
</match>
|
213
|
+
</context>
|
214
|
+
|
215
|
+
<context id="keyword">
|
216
|
+
<include>
|
217
|
+
<context style-ref="keyword">
|
218
|
+
<!--
|
219
|
+
Only Octave specific keywords. To see a complete list of keywords in
|
220
|
+
Octave, use __keywords__ at the Octave prompt.
|
221
|
+
-->
|
222
|
+
<keyword>end(_try_catch|_unwind_protect|for|function|if|parfor|switch|while)</keyword>
|
223
|
+
<keyword>unwind_protect(_cleanup)?</keyword>
|
224
|
+
</context>
|
225
|
+
<context id="octave-matlab-keyword" style-ref="keyword">
|
226
|
+
<!--
|
227
|
+
Octave and Matlab have already implemented most of each others keywords
|
228
|
+
but not all. Both Octave and Matlab are still missing keywords from the
|
229
|
+
other. As such, this block only has the keywords already implemented in
|
230
|
+
both. When adding a new keyword, make sure you place it on the right
|
231
|
+
place.
|
232
|
+
-->
|
233
|
+
<keyword>case</keyword>
|
234
|
+
<keyword>catch</keyword>
|
235
|
+
<keyword>continue</keyword>
|
236
|
+
<keyword>do</keyword>
|
237
|
+
<keyword>else(if)?</keyword>
|
238
|
+
<keyword>end</keyword>
|
239
|
+
<keyword>for</keyword>
|
240
|
+
<keyword>function</keyword>
|
241
|
+
<keyword>if</keyword>
|
242
|
+
<keyword>otherwise</keyword>
|
243
|
+
<keyword>parfor</keyword>
|
244
|
+
<keyword>return</keyword>
|
245
|
+
<keyword>switch</keyword>
|
246
|
+
<keyword>try</keyword>
|
247
|
+
<keyword>until</keyword>
|
248
|
+
<keyword>vararg(in|out)</keyword>
|
249
|
+
<keyword>while</keyword>
|
250
|
+
</context>
|
251
|
+
</include>
|
252
|
+
</context>
|
253
|
+
|
254
|
+
<define-regex id="is-type-functions" extended="true">
|
255
|
+
_absolute_filename | dir |numeric |
|
256
|
+
_dq_string | empty | object |
|
257
|
+
_function_handle | equal | obsv |
|
258
|
+
_leap_year | equalwithequalnans |
|
259
|
+
_real_matrix | field |
|
260
|
+
_real_scalar | figure |
|
261
|
+
_real_square_matrix | finite | pc |
|
262
|
+
_real_vector | float | pref |
|
263
|
+
_rooted_relative_filename | global | prime |
|
264
|
+
_sq_string | graph | print |
|
265
|
+
_valid_file_id | gray | prop |
|
266
|
+
a | handle | punct |
|
267
|
+
alnum | hermitian | real |
|
268
|
+
alpha | hghandle | rgb |
|
269
|
+
appdata | hold | row |
|
270
|
+
argout | ieee | sample |
|
271
|
+
ascii | ind | scalar |
|
272
|
+
bool | index | sorted |
|
273
|
+
bw | inf | space |
|
274
|
+
cell | integer | sparse |
|
275
|
+
cellstr | keyword | square |
|
276
|
+
char | letter | stabilizable |
|
277
|
+
cntrl | logical | strprop |
|
278
|
+
column | lower | struct |
|
279
|
+
complex | mac | symmetric |
|
280
|
+
ctrb | matrix | unix |
|
281
|
+
debugmode | member | upper |
|
282
|
+
definite | method | varname |
|
283
|
+
deployed | na | vector |
|
284
|
+
detectable | nan | xdigit |
|
285
|
+
digit | null
|
286
|
+
</define-regex>
|
287
|
+
|
288
|
+
<!--
|
289
|
+
While there are many more builtin functions in octave, only some are listed
|
290
|
+
here. This is to avoid maintenance problems specially in the case of
|
291
|
+
functions that may later be removed. Extra functions can easily be added
|
292
|
+
manually. Function __list_functions__ lists them all.
|
293
|
+
-->
|
294
|
+
<context id="builtin" style-ref="builtin">
|
295
|
+
<prefix>(?<!\.)\%[</prefix>
|
296
|
+
<suffix>\%](?!\.)</suffix>
|
297
|
+
|
298
|
+
<keyword>(Inf|inf)</keyword>
|
299
|
+
<keyword>(NaN|nan)</keyword>
|
300
|
+
<keyword>abs</keyword>
|
301
|
+
<keyword>accumarray</keyword>
|
302
|
+
<keyword>acos(d|h)?</keyword>
|
303
|
+
<keyword>acot(d|h)?</keyword>
|
304
|
+
<keyword>acsc(d|h)?</keyword>
|
305
|
+
<keyword>addlistener</keyword>
|
306
|
+
<keyword>addpath</keyword>
|
307
|
+
<keyword>addproperty</keyword>
|
308
|
+
<keyword>addtodate</keyword>
|
309
|
+
<keyword>airy</keyword>
|
310
|
+
<keyword>all</keyword>
|
311
|
+
<keyword>allchild</keyword>
|
312
|
+
<keyword>amd</keyword>
|
313
|
+
<keyword>ancestor</keyword>
|
314
|
+
<keyword>and</keyword>
|
315
|
+
<keyword>angle</keyword>
|
316
|
+
<keyword>any</keyword>
|
317
|
+
<keyword>area</keyword>
|
318
|
+
<keyword>arrayfun</keyword>
|
319
|
+
<keyword>asec(d|h)?</keyword>
|
320
|
+
<keyword>asin(d|h)?</keyword>
|
321
|
+
<keyword>assert</keyword>
|
322
|
+
<keyword>assignin</keyword>
|
323
|
+
<keyword>atan(d|h)?</keyword>
|
324
|
+
<keyword>atan2</keyword>
|
325
|
+
<keyword>axes</keyword>
|
326
|
+
<keyword>axis</keyword>
|
327
|
+
<keyword>balance</keyword>
|
328
|
+
<keyword>bar(h)?</keyword>
|
329
|
+
<keyword>base2dec</keyword>
|
330
|
+
<keyword>beep</keyword>
|
331
|
+
<keyword>bessel(h|i|j|k|y)</keyword>
|
332
|
+
<keyword>beta(inc|ln)?</keyword>
|
333
|
+
<keyword>bicgstab</keyword>
|
334
|
+
<keyword>bin2dec</keyword>
|
335
|
+
<keyword>bit(and|cmp|or|xor)</keyword>
|
336
|
+
<keyword>bit(get|max|set|shift)</keyword>
|
337
|
+
<keyword>blanks</keyword>
|
338
|
+
<keyword>blkdiag</keyword>
|
339
|
+
<keyword>box</keyword>
|
340
|
+
<keyword>brighten</keyword>
|
341
|
+
<keyword>bsxfun</keyword>
|
342
|
+
<keyword>builtin</keyword>
|
343
|
+
<keyword>bunzip2</keyword>
|
344
|
+
<keyword>bzip2</keyword>
|
345
|
+
<keyword>calendar</keyword>
|
346
|
+
<keyword>cart2(pol|sph)</keyword>
|
347
|
+
<keyword>cast</keyword>
|
348
|
+
<keyword>cat</keyword>
|
349
|
+
<keyword>caxis</keyword>
|
350
|
+
<keyword>cd</keyword>
|
351
|
+
<keyword>ceil</keyword>
|
352
|
+
<keyword>cell2(mat|struct)</keyword>
|
353
|
+
<keyword>celldisp</keyword>
|
354
|
+
<keyword>cellfun</keyword>
|
355
|
+
<keyword>cellstr</keyword>
|
356
|
+
<keyword>cgs</keyword>
|
357
|
+
<keyword>char</keyword>
|
358
|
+
<keyword>chol</keyword>
|
359
|
+
<keyword>cholupdate</keyword>
|
360
|
+
<keyword>circshift</keyword>
|
361
|
+
<keyword>cla</keyword>
|
362
|
+
<keyword>clabel</keyword>
|
363
|
+
<keyword>class</keyword>
|
364
|
+
<keyword>clc</keyword>
|
365
|
+
<keyword>clear</keyword>
|
366
|
+
<keyword>clf</keyword>
|
367
|
+
<keyword>clock</keyword>
|
368
|
+
<keyword>close(req)?</keyword>
|
369
|
+
<keyword>col(amd|perm)</keyword>
|
370
|
+
<keyword>colorbar</keyword>
|
371
|
+
<keyword>colormap</keyword>
|
372
|
+
<keyword>columns</keyword>
|
373
|
+
<keyword>comet</keyword>
|
374
|
+
<keyword>compan</keyword>
|
375
|
+
<keyword>compass</keyword>
|
376
|
+
<keyword>complex</keyword>
|
377
|
+
<keyword>computer</keyword>
|
378
|
+
<keyword>cond(est)?</keyword>
|
379
|
+
<keyword>conj</keyword>
|
380
|
+
<keyword>contour(3|c|f)?</keyword>
|
381
|
+
<keyword>contrast</keyword>
|
382
|
+
<keyword>conv(2|hull(n)?|n)?</keyword>
|
383
|
+
<keyword>copyfile</keyword>
|
384
|
+
<keyword>corrcoef</keyword>
|
385
|
+
<keyword>cos(d|h)?</keyword>
|
386
|
+
<keyword>cot(d|h)?</keyword>
|
387
|
+
<keyword>cov</keyword>
|
388
|
+
<keyword>cplxpair</keyword>
|
389
|
+
<keyword>cputime</keyword>
|
390
|
+
<keyword>cross</keyword>
|
391
|
+
<keyword>csc(d|h)?</keyword>
|
392
|
+
<keyword>csv(read|write)</keyword>
|
393
|
+
<keyword>ctranspose</keyword>
|
394
|
+
<keyword>cum(max|min|prod|sum|trapz)</keyword>
|
395
|
+
<keyword>curl</keyword>
|
396
|
+
<keyword>cylinder</keyword>
|
397
|
+
<keyword>daspect</keyword>
|
398
|
+
<keyword>date(num|str|tick|vec)?</keyword>
|
399
|
+
<keyword>db(clear|stack|status|stop|type|where)</keyword>
|
400
|
+
<keyword>db(cont|down|next|quit|step|up)</keyword>
|
401
|
+
<keyword>dbquad</keyword>
|
402
|
+
<keyword>deal</keyword>
|
403
|
+
<keyword>deblank</keyword>
|
404
|
+
<keyword>dec2(base|bin|hex)</keyword>
|
405
|
+
<keyword>deconv</keyword>
|
406
|
+
<keyword>del2</keyword>
|
407
|
+
<keyword>delaunay(3|n)?</keyword>
|
408
|
+
<keyword>demo</keyword>
|
409
|
+
<keyword>det</keyword>
|
410
|
+
<keyword>detrend</keyword>
|
411
|
+
<keyword>diag</keyword>
|
412
|
+
<keyword>diary</keyword>
|
413
|
+
<keyword>diff</keyword>
|
414
|
+
<keyword>diffuse</keyword>
|
415
|
+
<keyword>dir</keyword>
|
416
|
+
<keyword>disp</keyword>
|
417
|
+
<keyword>display</keyword>
|
418
|
+
<keyword>divergence</keyword>
|
419
|
+
<keyword>dlm(read|write)</keyword>
|
420
|
+
<keyword>dmperm</keyword>
|
421
|
+
<keyword>doc</keyword>
|
422
|
+
<keyword>dos</keyword>
|
423
|
+
<keyword>dot</keyword>
|
424
|
+
<keyword>double</keyword>
|
425
|
+
<keyword>drawnow</keyword>
|
426
|
+
<keyword>dsearch(n)?</keyword>
|
427
|
+
<keyword>echo</keyword>
|
428
|
+
<keyword>edit</keyword>
|
429
|
+
<keyword>eig(s)?</keyword>
|
430
|
+
<keyword>ellipsoid</keyword>
|
431
|
+
<keyword>eomday</keyword>
|
432
|
+
<keyword>eps</keyword>
|
433
|
+
<keyword>eq</keyword>
|
434
|
+
<keyword>erf(c|cx|cinv|inv)?</keyword>
|
435
|
+
<keyword>erfcx</keyword>
|
436
|
+
<keyword>error</keyword>
|
437
|
+
<keyword>errorbar</keyword>
|
438
|
+
<keyword>etime</keyword>
|
439
|
+
<keyword>etree(plot)?</keyword>
|
440
|
+
<keyword>eval(in)?</keyword>
|
441
|
+
<keyword>exist</keyword>
|
442
|
+
<keyword>exit</keyword>
|
443
|
+
<keyword>exp(int|m|m1)?</keyword>
|
444
|
+
<keyword>eye</keyword>
|
445
|
+
<keyword>ez(contour(f)?|mesh(c)?|plot(3)?|polar|surf(c)?)</keyword>
|
446
|
+
<keyword>f(close|open|read|seek|tell|write)</keyword>
|
447
|
+
<keyword>factor</keyword>
|
448
|
+
<keyword>factorial</keyword>
|
449
|
+
<keyword>false</keyword>
|
450
|
+
<keyword>feather</keyword>
|
451
|
+
<keyword>feof</keyword>
|
452
|
+
<keyword>ferror</keyword>
|
453
|
+
<keyword>feval</keyword>
|
454
|
+
<keyword>fft(2|n|shift)?</keyword>
|
455
|
+
<keyword>fftw</keyword>
|
456
|
+
<keyword>fget(l|s)</keyword>
|
457
|
+
<keyword>fieldnames</keyword>
|
458
|
+
<keyword>figure</keyword>
|
459
|
+
<keyword>file(attrib|marker|parts|sep)</keyword>
|
460
|
+
<keyword>fileread</keyword>
|
461
|
+
<keyword>fill</keyword>
|
462
|
+
<keyword>filter(2)?</keyword>
|
463
|
+
<keyword>find</keyword>
|
464
|
+
<keyword>findall</keyword>
|
465
|
+
<keyword>findobj</keyword>
|
466
|
+
<keyword>findstr</keyword>
|
467
|
+
<keyword>fix</keyword>
|
468
|
+
<keyword>flip(dim|lr|ud)</keyword>
|
469
|
+
<keyword>floor</keyword>
|
470
|
+
<keyword>fminbnd</keyword>
|
471
|
+
<keyword>format</keyword>
|
472
|
+
<keyword>fplot</keyword>
|
473
|
+
<keyword>fprint(f)?</keyword>
|
474
|
+
<keyword>frewind</keyword>
|
475
|
+
<keyword>fscanf</keyword>
|
476
|
+
<keyword>fsolve</keyword>
|
477
|
+
<keyword>full</keyword>
|
478
|
+
<keyword>fullfile</keyword>
|
479
|
+
<keyword>func2str</keyword>
|
480
|
+
<keyword>functions</keyword>
|
481
|
+
<keyword>fzero</keyword>
|
482
|
+
<keyword>gamma(inc|ln)?</keyword>
|
483
|
+
<keyword>gca</keyword>
|
484
|
+
<keyword>gcb(f|o)</keyword>
|
485
|
+
<keyword>gcd</keyword>
|
486
|
+
<keyword>gcf</keyword>
|
487
|
+
<keyword>ge</keyword>
|
488
|
+
<keyword>genpath</keyword>
|
489
|
+
<keyword>genvarname</keyword>
|
490
|
+
<keyword>get</keyword>
|
491
|
+
<keyword>getenv</keyword>
|
492
|
+
<keyword>getfield</keyword>
|
493
|
+
<keyword>ginput</keyword>
|
494
|
+
<keyword>gplot</keyword>
|
495
|
+
<keyword>gradient</keyword>
|
496
|
+
<keyword>grid(data|data3|datan)?</keyword>
|
497
|
+
<keyword>gt</keyword>
|
498
|
+
<keyword>gtext</keyword>
|
499
|
+
<keyword>gunzip</keyword>
|
500
|
+
<keyword>gzip</keyword>
|
501
|
+
<keyword>hadamard</keyword>
|
502
|
+
<keyword>hankel</keyword>
|
503
|
+
<keyword>help</keyword>
|
504
|
+
<keyword>hess</keyword>
|
505
|
+
<keyword>hex2(dec|num)</keyword>
|
506
|
+
<keyword>hggroup</keyword>
|
507
|
+
<keyword>hidden</keyword>
|
508
|
+
<keyword>hilb</keyword>
|
509
|
+
<keyword>hist(c)?</keyword>
|
510
|
+
<keyword>hold</keyword>
|
511
|
+
<keyword>home</keyword>
|
512
|
+
<keyword>horzcat</keyword>
|
513
|
+
<keyword>hsv2rgb</keyword>
|
514
|
+
<keyword>hypot</keyword>
|
515
|
+
<keyword>I</keyword>
|
516
|
+
<keyword>i</keyword>
|
517
|
+
<keyword>idivide</keyword>
|
518
|
+
<keyword>ifft(2|n|shift)?</keyword>
|
519
|
+
<keyword>im(finfo|read|show|write)</keyword>
|
520
|
+
<keyword>image(sc)?</keyword>
|
521
|
+
<keyword>ind2(rgb|sub)</keyword>
|
522
|
+
<keyword>inferiorto</keyword>
|
523
|
+
<keyword>info</keyword>
|
524
|
+
<keyword>inline</keyword>
|
525
|
+
<keyword>inpolygon</keyword>
|
526
|
+
<keyword>input</keyword>
|
527
|
+
<keyword>inputname</keyword>
|
528
|
+
<keyword>int(min|max)</keyword>
|
529
|
+
<keyword>int2str</keyword>
|
530
|
+
<keyword>interp(1|1q|2|3|ft|n)</keyword>
|
531
|
+
<keyword>intersect</keyword>
|
532
|
+
<keyword>intwarning</keyword>
|
533
|
+
<keyword>inv(erse)?</keyword>
|
534
|
+
<keyword>invhilb</keyword>
|
535
|
+
<keyword>ipermute</keyword>
|
536
|
+
<keyword>iqr</keyword>
|
537
|
+
<!--
|
538
|
+
rather than write here all the is(type) functions, a regex was created
|
539
|
+
named 'is-type-functions'. Add the type to that regex rather than adding
|
540
|
+
a new keyword here.
|
541
|
+
-->
|
542
|
+
<keyword>is\%{is-type-functions}</keyword>
|
543
|
+
<keyword>iso(colors|normals|surface)</keyword>
|
544
|
+
<keyword>J</keyword>
|
545
|
+
<keyword>j</keyword>
|
546
|
+
<keyword>jet</keyword>
|
547
|
+
<keyword>keyboard</keyword>
|
548
|
+
<keyword>kron</keyword>
|
549
|
+
<keyword>last(err|error|warn)</keyword>
|
550
|
+
<keyword>lcm</keyword>
|
551
|
+
<keyword>ldivide</keyword>
|
552
|
+
<keyword>le</keyword>
|
553
|
+
<keyword>legend</keyword>
|
554
|
+
<keyword>legendre</keyword>
|
555
|
+
<keyword>length</keyword>
|
556
|
+
<keyword>license</keyword>
|
557
|
+
<keyword>lin2mu</keyword>
|
558
|
+
<keyword>line</keyword>
|
559
|
+
<keyword>linkprop</keyword>
|
560
|
+
<keyword>linspace</keyword>
|
561
|
+
<keyword>list</keyword>
|
562
|
+
<keyword>load(obj)?</keyword>
|
563
|
+
<keyword>log(10|1p|2|space|m)?</keyword>
|
564
|
+
<keyword>loglog</keyword>
|
565
|
+
<keyword>lookfor</keyword>
|
566
|
+
<keyword>lower</keyword>
|
567
|
+
<keyword>ls</keyword>
|
568
|
+
<keyword>lsqnonneg</keyword>
|
569
|
+
<keyword>lt</keyword>
|
570
|
+
<keyword>lu(inc)?</keyword>
|
571
|
+
<keyword>magic</keyword>
|
572
|
+
<keyword>mat2(cell|str)</keyword>
|
573
|
+
<keyword>matlabroot</keyword>
|
574
|
+
<keyword>max</keyword>
|
575
|
+
<keyword>mean</keyword>
|
576
|
+
<keyword>median</keyword>
|
577
|
+
<keyword>menu</keyword>
|
578
|
+
<keyword>merge</keyword>
|
579
|
+
<keyword>mesh(grid|c|z)?</keyword>
|
580
|
+
<keyword>methods</keyword>
|
581
|
+
<keyword>mex</keyword>
|
582
|
+
<keyword>mexext</keyword>
|
583
|
+
<keyword>mfilename</keyword>
|
584
|
+
<keyword>min</keyword>
|
585
|
+
<keyword>minus</keyword>
|
586
|
+
<keyword>mislocked</keyword>
|
587
|
+
<keyword>mkdir</keyword>
|
588
|
+
<keyword>mkoctfile</keyword>
|
589
|
+
<keyword>mkpp</keyword>
|
590
|
+
<keyword>mldivide</keyword>
|
591
|
+
<keyword>mlock</keyword>
|
592
|
+
<keyword>mod</keyword>
|
593
|
+
<keyword>mode</keyword>
|
594
|
+
<keyword>more</keyword>
|
595
|
+
<keyword>movefile</keyword>
|
596
|
+
<keyword>mrdivide</keyword>
|
597
|
+
<keyword>mtimes</keyword>
|
598
|
+
<keyword>mu2lin</keyword>
|
599
|
+
<keyword>munlock</keyword>
|
600
|
+
<keyword>NA</keyword>
|
601
|
+
<keyword>namelengthmax</keyword>
|
602
|
+
<keyword>narg(in|out)</keyword>
|
603
|
+
<keyword>narg(out)?chk</keyword>
|
604
|
+
<keyword>nchoosek</keyword>
|
605
|
+
<keyword>ndgrid</keyword>
|
606
|
+
<keyword>ndims</keyword>
|
607
|
+
<keyword>ne</keyword>
|
608
|
+
<keyword>newplot</keyword>
|
609
|
+
<keyword>nextpow2</keyword>
|
610
|
+
<keyword>nnz</keyword>
|
611
|
+
<keyword>nonzeros</keyword>
|
612
|
+
<keyword>norm</keyword>
|
613
|
+
<keyword>normest</keyword>
|
614
|
+
<keyword>not</keyword>
|
615
|
+
<keyword>now</keyword>
|
616
|
+
<keyword>nthroot</keyword>
|
617
|
+
<keyword>null</keyword>
|
618
|
+
<keyword>num2(cell|hex|str)</keyword>
|
619
|
+
<keyword>numel</keyword>
|
620
|
+
<keyword>nzmax</keyword>
|
621
|
+
<keyword>onCleanup</keyword>
|
622
|
+
<keyword>ones</keyword>
|
623
|
+
<keyword>optim(get|set)</keyword>
|
624
|
+
<keyword>or</keyword>
|
625
|
+
<keyword>orderfields</keyword>
|
626
|
+
<keyword>orient</keyword>
|
627
|
+
<keyword>orth</keyword>
|
628
|
+
<keyword>pack</keyword>
|
629
|
+
<keyword>pareto</keyword>
|
630
|
+
<keyword>pascal</keyword>
|
631
|
+
<keyword>patch</keyword>
|
632
|
+
<keyword>path</keyword>
|
633
|
+
<keyword>pathsep</keyword>
|
634
|
+
<keyword>pause</keyword>
|
635
|
+
<keyword>pbaspect</keyword>
|
636
|
+
<keyword>pcg</keyword>
|
637
|
+
<keyword>pchip</keyword>
|
638
|
+
<keyword>pcolor</keyword>
|
639
|
+
<keyword>peaks</keyword>
|
640
|
+
<keyword>perl</keyword>
|
641
|
+
<keyword>perms</keyword>
|
642
|
+
<keyword>permute</keyword>
|
643
|
+
<keyword>pi</keyword>
|
644
|
+
<keyword>pie</keyword>
|
645
|
+
<keyword>pie3</keyword>
|
646
|
+
<keyword>pinv</keyword>
|
647
|
+
<keyword>pkg</keyword>
|
648
|
+
<keyword>planerot</keyword>
|
649
|
+
<keyword>plot(3|matrix|yy)?</keyword>
|
650
|
+
<keyword>pol2cart</keyword>
|
651
|
+
<keyword>polar</keyword>
|
652
|
+
<keyword>poly(der(inv)?|fit|int|val|valm)?</keyword>
|
653
|
+
<keyword>polyarea</keyword>
|
654
|
+
<keyword>pow2</keyword>
|
655
|
+
<keyword>power</keyword>
|
656
|
+
<keyword>ppval</keyword>
|
657
|
+
<keyword>primes</keyword>
|
658
|
+
<keyword>print(f)?</keyword>
|
659
|
+
<keyword>print_usage</keyword>
|
660
|
+
<keyword>prod</keyword>
|
661
|
+
<keyword>psi</keyword>
|
662
|
+
<keyword>pwd</keyword>
|
663
|
+
<keyword>qr(delete|insert|update)?</keyword>
|
664
|
+
<keyword>quad(gk|l|v)?</keyword>
|
665
|
+
<keyword>quit</keyword>
|
666
|
+
<keyword>quiver(3)?</keyword>
|
667
|
+
<keyword>qz</keyword>
|
668
|
+
<keyword>rand(i|n|perm)?</keyword>
|
669
|
+
<keyword>rank</keyword>
|
670
|
+
<keyword>rat(s)?</keyword>
|
671
|
+
<keyword>rcond</keyword>
|
672
|
+
<keyword>rdivide</keyword>
|
673
|
+
<keyword>real(log|max|min|pow|sqrt)?</keyword>
|
674
|
+
<keyword>record</keyword>
|
675
|
+
<keyword>rectint</keyword>
|
676
|
+
<keyword>refresh</keyword>
|
677
|
+
<keyword>refreshdata</keyword>
|
678
|
+
<keyword>regexp(i|rep|translate)?</keyword>
|
679
|
+
<keyword>rehash</keyword>
|
680
|
+
<keyword>rem</keyword>
|
681
|
+
<keyword>rename</keyword>
|
682
|
+
<keyword>repmat</keyword>
|
683
|
+
<keyword>reset</keyword>
|
684
|
+
<keyword>reshape</keyword>
|
685
|
+
<keyword>residue</keyword>
|
686
|
+
<keyword>restoredefaultpath</keyword>
|
687
|
+
<keyword>rgb2(hsv|ind)</keyword>
|
688
|
+
<keyword>ribbon</keyword>
|
689
|
+
<keyword>rmdir</keyword>
|
690
|
+
<keyword>rmfield</keyword>
|
691
|
+
<keyword>rmpath</keyword>
|
692
|
+
<keyword>roots</keyword>
|
693
|
+
<keyword>rose</keyword>
|
694
|
+
<keyword>rosser</keyword>
|
695
|
+
<keyword>rot90</keyword>
|
696
|
+
<keyword>round</keyword>
|
697
|
+
<keyword>rows</keyword>
|
698
|
+
<keyword>rref</keyword>
|
699
|
+
<keyword>rsf2csf</keyword>
|
700
|
+
<keyword>run</keyword>
|
701
|
+
<keyword>save(as|obj|path)?</keyword>
|
702
|
+
<keyword>scatter(3)?</keyword>
|
703
|
+
<keyword>schur</keyword>
|
704
|
+
<keyword>sec(d|h)?</keyword>
|
705
|
+
<keyword>semilog(x|y)</keyword>
|
706
|
+
<keyword>set</keyword>
|
707
|
+
<keyword>setdiff</keyword>
|
708
|
+
<keyword>setenv</keyword>
|
709
|
+
<keyword>setfield</keyword>
|
710
|
+
<keyword>setxor</keyword>
|
711
|
+
<keyword>shading</keyword>
|
712
|
+
<keyword>shg</keyword>
|
713
|
+
<keyword>shiftdim</keyword>
|
714
|
+
<keyword>sign</keyword>
|
715
|
+
<keyword>sin(d|h)?</keyword>
|
716
|
+
<keyword>size</keyword>
|
717
|
+
<keyword>slice</keyword>
|
718
|
+
<keyword>sort</keyword>
|
719
|
+
<keyword>sortrows</keyword>
|
720
|
+
<keyword>spalloc</keyword>
|
721
|
+
<keyword>sparse</keyword>
|
722
|
+
<keyword>spaugment</keyword>
|
723
|
+
<keyword>spconvert</keyword>
|
724
|
+
<keyword>spdiags</keyword>
|
725
|
+
<keyword>specular</keyword>
|
726
|
+
<keyword>speye</keyword>
|
727
|
+
<keyword>spfun</keyword>
|
728
|
+
<keyword>sph2cart</keyword>
|
729
|
+
<keyword>sphere</keyword>
|
730
|
+
<keyword>spinmap</keyword>
|
731
|
+
<keyword>spline</keyword>
|
732
|
+
<keyword>spones</keyword>
|
733
|
+
<keyword>spparms</keyword>
|
734
|
+
<keyword>sprand(n|sym)?</keyword>
|
735
|
+
<keyword>sprank</keyword>
|
736
|
+
<keyword>sprintf</keyword>
|
737
|
+
<keyword>spy</keyword>
|
738
|
+
<keyword>sqrt(m)?</keyword>
|
739
|
+
<keyword>squeeze</keyword>
|
740
|
+
<keyword>sscanf</keyword>
|
741
|
+
<keyword>stairs</keyword>
|
742
|
+
<keyword>std</keyword>
|
743
|
+
<keyword>stem(3)?</keyword>
|
744
|
+
<keyword>str(cat|(n)?cmp(i)?|find|just|match|rep|tok|trim)</keyword>
|
745
|
+
<keyword>str2(double|func|mat|num)</keyword>
|
746
|
+
<keyword>strread</keyword>
|
747
|
+
<keyword>struct</keyword>
|
748
|
+
<keyword>struct2cell</keyword>
|
749
|
+
<keyword>structfun</keyword>
|
750
|
+
<keyword>strvcat</keyword>
|
751
|
+
<keyword>sub2ind</keyword>
|
752
|
+
<keyword>subplot</keyword>
|
753
|
+
<keyword>subsasgn</keyword>
|
754
|
+
<keyword>subsindex</keyword>
|
755
|
+
<keyword>subspace</keyword>
|
756
|
+
<keyword>subsref</keyword>
|
757
|
+
<keyword>substruct</keyword>
|
758
|
+
<keyword>sum</keyword>
|
759
|
+
<keyword>superiorto</keyword>
|
760
|
+
<keyword>surf(ace|c|l|norm)?</keyword>
|
761
|
+
<keyword>svd</keyword>
|
762
|
+
<keyword>svds</keyword>
|
763
|
+
<keyword>swapbytes</keyword>
|
764
|
+
<keyword>symamd</keyword>
|
765
|
+
<keyword>symbfact</keyword>
|
766
|
+
<keyword>symrcm</keyword>
|
767
|
+
<keyword>symvar</keyword>
|
768
|
+
<keyword>system</keyword>
|
769
|
+
<keyword>tan(d|h)?</keyword>
|
770
|
+
<keyword>tar</keyword>
|
771
|
+
<keyword>temp(dir|name)</keyword>
|
772
|
+
<keyword>text</keyword>
|
773
|
+
<keyword>textread</keyword>
|
774
|
+
<keyword>tic</keyword>
|
775
|
+
<keyword>time</keyword>
|
776
|
+
<keyword>times</keyword>
|
777
|
+
<keyword>title</keyword>
|
778
|
+
<keyword>toc</keyword>
|
779
|
+
<keyword>toeplitz</keyword>
|
780
|
+
<keyword>trace</keyword>
|
781
|
+
<keyword>transpose</keyword>
|
782
|
+
<keyword>trapz</keyword>
|
783
|
+
<keyword>treelayout</keyword>
|
784
|
+
<keyword>treeplot</keyword>
|
785
|
+
<keyword>tri(mesh|plot|surf)</keyword>
|
786
|
+
<keyword>tril</keyword>
|
787
|
+
<keyword>triplequad</keyword>
|
788
|
+
<keyword>triu</keyword>
|
789
|
+
<keyword>true</keyword>
|
790
|
+
<keyword>tsearch(n)?</keyword>
|
791
|
+
<keyword>type</keyword>
|
792
|
+
<keyword>typecast</keyword>
|
793
|
+
<keyword>uigetdir</keyword>
|
794
|
+
<keyword>uigetfile</keyword>
|
795
|
+
<keyword>uimenu</keyword>
|
796
|
+
<keyword>uiputfile</keyword>
|
797
|
+
<keyword>union</keyword>
|
798
|
+
<keyword>unique</keyword>
|
799
|
+
<keyword>unix</keyword>
|
800
|
+
<keyword>unmkpp</keyword>
|
801
|
+
<keyword>untar</keyword>
|
802
|
+
<keyword>unwrap</keyword>
|
803
|
+
<keyword>unzip</keyword>
|
804
|
+
<keyword>upper</keyword>
|
805
|
+
<keyword>url(read|write)</keyword>
|
806
|
+
<keyword>validatestring</keyword>
|
807
|
+
<keyword>values</keyword>
|
808
|
+
<keyword>vander</keyword>
|
809
|
+
<keyword>var</keyword>
|
810
|
+
<keyword>vectorize</keyword>
|
811
|
+
<keyword>ver</keyword>
|
812
|
+
<keyword>version</keyword>
|
813
|
+
<keyword>vertcat</keyword>
|
814
|
+
<keyword>view</keyword>
|
815
|
+
<keyword>voronoi(n)?</keyword>
|
816
|
+
<keyword>waitforbuttonpress</keyword>
|
817
|
+
<keyword>warning</keyword>
|
818
|
+
<keyword>wav(read|write)</keyword>
|
819
|
+
<keyword>weekday</keyword>
|
820
|
+
<keyword>what</keyword>
|
821
|
+
<keyword>whitebg</keyword>
|
822
|
+
<keyword>who(s)?</keyword>
|
823
|
+
<keyword>wilkinson</keyword>
|
824
|
+
<keyword>xlabel</keyword>
|
825
|
+
<keyword>xlim</keyword>
|
826
|
+
<keyword>xor</keyword>
|
827
|
+
<keyword>ylabel</keyword>
|
828
|
+
<keyword>ylim</keyword>
|
829
|
+
<keyword>zeros</keyword>
|
830
|
+
<keyword>zlabel</keyword>
|
831
|
+
<keyword>zlim</keyword>
|
832
|
+
</context>
|
833
|
+
|
834
|
+
<context id="octave" class="no-spell-check">
|
835
|
+
<include>
|
836
|
+
<context ref="def:shebang"/>
|
837
|
+
<context ref="block-comment"/>
|
838
|
+
<context ref="line-comment"/>
|
839
|
+
<context ref="line-continue"/>
|
840
|
+
<context ref="double-quoted-string"/>
|
841
|
+
<context ref="single-quoted-string"/>
|
842
|
+
<context ref="operator"/>
|
843
|
+
<context ref="data-type"/>
|
844
|
+
<context ref="function-handle"/>
|
845
|
+
<context ref="storage-type"/>
|
846
|
+
<context ref="boolean"/>
|
847
|
+
<context ref="decimal"/>
|
848
|
+
<context ref="floating-point-number"/>
|
849
|
+
<context ref="octal-number"/>
|
850
|
+
<context ref="hex-number"/>
|
851
|
+
<context ref="variables"/>
|
852
|
+
<context ref="reserved-constant"/>
|
853
|
+
<context ref="package-manager"/>
|
854
|
+
<context ref="keyword"/>
|
855
|
+
<context ref="builtin"/>
|
856
|
+
</include>
|
857
|
+
</context>
|
858
|
+
</definitions>
|
859
|
+
</language>
|