gtksourceview3 1.2.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (562) hide show
  1. data/README +29 -0
  2. data/Rakefile +29 -0
  3. data/ext/gtksourceview3/depend +6 -0
  4. data/ext/gtksourceview3/extconf.rb +76 -0
  5. data/ext/gtksourceview3/gtksourceview3.def +2 -0
  6. data/ext/gtksourceview3/rbgtksource.c +53 -0
  7. data/ext/gtksourceview3/rbgtksourcebuffer.c +318 -0
  8. data/ext/gtksourceview3/rbgtksourcegutter.c +82 -0
  9. data/ext/gtksourceview3/rbgtksourcegutterrenderer.c +143 -0
  10. data/ext/gtksourceview3/rbgtksourcegutterrendererpixbuf.c +42 -0
  11. data/ext/gtksourceview3/rbgtksourcegutterrenderertext.c +64 -0
  12. data/ext/gtksourceview3/rbgtksourcelanguage.c +124 -0
  13. data/ext/gtksourceview3/rbgtksourcelanguagemanager.c +114 -0
  14. data/ext/gtksourceview3/rbgtksourcemark.c +85 -0
  15. data/ext/gtksourceview3/rbgtksourcemarkattributes.c +77 -0
  16. data/ext/gtksourceview3/rbgtksourceprintcompositor.c +171 -0
  17. data/ext/gtksourceview3/rbgtksourcestyle.c +42 -0
  18. data/ext/gtksourceview3/rbgtksourcestylescheme.c +72 -0
  19. data/ext/gtksourceview3/rbgtksourcestyleschememanager.c +140 -0
  20. data/ext/gtksourceview3/rbgtksourceundomanager.c +83 -0
  21. data/ext/gtksourceview3/rbgtksourceview.c +94 -0
  22. data/ext/gtksourceview3/rbgtksourceview3conversions.h +43 -0
  23. data/ext/gtksourceview3/rbgtksourceview3private.h +54 -0
  24. data/extconf.rb +49 -0
  25. data/lib/1.8/gtksourceview3.so +0 -0
  26. data/lib/1.9/gtksourceview3.so +0 -0
  27. data/lib/gtksourceview3.rb +20 -0
  28. data/lib/gtksourceview3/deprecated.rb +47 -0
  29. data/sample/sourcelanguagemanager.rb +21 -0
  30. data/sample/test.rb +32 -0
  31. data/test/run-test.rb +33 -0
  32. data/test/test_source_view.rb +17 -0
  33. data/vendor/local/bin/libgtksourceview-3.0-0.dll +0 -0
  34. data/vendor/local/bin/libxml2-2.dll +0 -0
  35. data/vendor/local/bin/xmlcatalog.exe +0 -0
  36. data/vendor/local/bin/xmllint.exe +0 -0
  37. data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +66 -0
  38. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +46 -0
  39. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +199 -0
  40. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +129 -0
  41. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +94 -0
  42. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +73 -0
  43. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +71 -0
  44. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +76 -0
  45. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +118 -0
  46. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +90 -0
  47. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +222 -0
  48. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +85 -0
  49. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +83 -0
  50. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +87 -0
  51. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +85 -0
  52. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +71 -0
  53. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +99 -0
  54. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +176 -0
  55. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +41 -0
  56. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +93 -0
  57. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +89 -0
  58. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +62 -0
  59. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +77 -0
  60. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +55 -0
  61. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +223 -0
  62. data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
  63. data/vendor/local/include/libxml2/libxml/HTMLparser.h +306 -0
  64. data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
  65. data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
  66. data/vendor/local/include/libxml2/libxml/SAX2.h +176 -0
  67. data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
  68. data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
  69. data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
  70. data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
  71. data/vendor/local/include/libxml2/libxml/dict.h +80 -0
  72. data/vendor/local/include/libxml2/libxml/encoding.h +240 -0
  73. data/vendor/local/include/libxml2/libxml/entities.h +150 -0
  74. data/vendor/local/include/libxml2/libxml/globals.h +502 -0
  75. data/vendor/local/include/libxml2/libxml/hash.h +233 -0
  76. data/vendor/local/include/libxml2/libxml/list.h +137 -0
  77. data/vendor/local/include/libxml2/libxml/nanoftp.h +163 -0
  78. data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
  79. data/vendor/local/include/libxml2/libxml/parser.h +1240 -0
  80. data/vendor/local/include/libxml2/libxml/parserInternals.h +644 -0
  81. data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
  82. data/vendor/local/include/libxml2/libxml/relaxng.h +213 -0
  83. data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
  84. data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
  85. data/vendor/local/include/libxml2/libxml/threads.h +84 -0
  86. data/vendor/local/include/libxml2/libxml/tree.h +1303 -0
  87. data/vendor/local/include/libxml2/libxml/uri.h +94 -0
  88. data/vendor/local/include/libxml2/libxml/valid.h +458 -0
  89. data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
  90. data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
  91. data/vendor/local/include/libxml2/libxml/xmlIO.h +366 -0
  92. data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
  93. data/vendor/local/include/libxml2/libxml/xmlerror.h +944 -0
  94. data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
  95. data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
  96. data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
  97. data/vendor/local/include/libxml2/libxml/xmlreader.h +428 -0
  98. data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
  99. data/vendor/local/include/libxml2/libxml/xmlsave.h +88 -0
  100. data/vendor/local/include/libxml2/libxml/xmlschemas.h +246 -0
  101. data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
  102. data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
  103. data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
  104. data/vendor/local/include/libxml2/libxml/xmlversion.h +480 -0
  105. data/vendor/local/include/libxml2/libxml/xmlwriter.h +488 -0
  106. data/vendor/local/include/libxml2/libxml/xpath.h +550 -0
  107. data/vendor/local/include/libxml2/libxml/xpathInternals.h +632 -0
  108. data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
  109. data/vendor/local/lib/libgtksourceview-3.0.dll.a +0 -0
  110. data/vendor/local/lib/libgtksourceview-3.0.la +41 -0
  111. data/vendor/local/lib/libxml2.def +1659 -0
  112. data/vendor/local/lib/libxml2.dll.a +0 -0
  113. data/vendor/local/lib/libxml2.lib +0 -0
  114. data/vendor/local/lib/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  115. data/vendor/local/lib/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  116. data/vendor/local/lib/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  117. data/vendor/local/lib/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  118. data/vendor/local/lib/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  119. data/vendor/local/lib/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  120. data/vendor/local/lib/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  121. data/vendor/local/lib/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  122. data/vendor/local/lib/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  123. data/vendor/local/lib/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  124. data/vendor/local/lib/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  125. data/vendor/local/lib/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  126. data/vendor/local/lib/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  127. data/vendor/local/lib/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  128. data/vendor/local/lib/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  129. data/vendor/local/lib/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  130. data/vendor/local/lib/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  131. data/vendor/local/lib/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  132. data/vendor/local/lib/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  133. data/vendor/local/lib/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  134. data/vendor/local/lib/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  135. data/vendor/local/lib/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  136. data/vendor/local/lib/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  137. data/vendor/local/lib/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  138. data/vendor/local/lib/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  139. data/vendor/local/lib/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  140. data/vendor/local/lib/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  141. data/vendor/local/lib/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  142. data/vendor/local/lib/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  143. data/vendor/local/lib/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  144. data/vendor/local/lib/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  145. data/vendor/local/lib/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  146. data/vendor/local/lib/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  147. data/vendor/local/lib/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  148. data/vendor/local/lib/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  149. data/vendor/local/lib/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  150. data/vendor/local/lib/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  151. data/vendor/local/lib/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  152. data/vendor/local/lib/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  153. data/vendor/local/lib/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  154. data/vendor/local/lib/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  155. data/vendor/local/lib/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  156. data/vendor/local/lib/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  157. data/vendor/local/lib/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  158. data/vendor/local/lib/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  159. data/vendor/local/lib/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  160. data/vendor/local/lib/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  161. data/vendor/local/lib/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  162. data/vendor/local/lib/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  163. data/vendor/local/lib/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  164. data/vendor/local/lib/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  165. data/vendor/local/lib/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  166. data/vendor/local/lib/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  167. data/vendor/local/lib/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  168. data/vendor/local/lib/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  169. data/vendor/local/lib/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  170. data/vendor/local/lib/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  171. data/vendor/local/lib/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  172. data/vendor/local/lib/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  173. data/vendor/local/lib/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  174. data/vendor/local/lib/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  175. data/vendor/local/lib/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  176. data/vendor/local/lib/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  177. data/vendor/local/lib/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  178. data/vendor/local/lib/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  179. data/vendor/local/lib/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  180. data/vendor/local/lib/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  181. data/vendor/local/lib/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  182. data/vendor/local/lib/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  183. data/vendor/local/lib/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  184. data/vendor/local/lib/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  185. data/vendor/local/lib/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  186. data/vendor/local/lib/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  187. data/vendor/local/lib/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  188. data/vendor/local/lib/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  189. data/vendor/local/lib/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  190. data/vendor/local/lib/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  191. data/vendor/local/lib/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  192. data/vendor/local/lib/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  193. data/vendor/local/lib/pkgconfig/gtksourceview-3.0.pc +12 -0
  194. data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
  195. data/vendor/local/manifest/libxml2-dev_2.9.0-1_win32.mft +268 -0
  196. data/vendor/local/manifest/libxml2_2.9.0-1_win32.mft +2 -0
  197. data/vendor/local/share/aclocal/libxml.m4 +188 -0
  198. data/vendor/local/share/doc/libxml2-2.9.0/Copyright +27 -0
  199. data/vendor/local/share/doc/libxml2-2.9.0/examples/testHTML.c +880 -0
  200. data/vendor/local/share/doc/libxml2-2.9.0/examples/testSAX.c +1198 -0
  201. data/vendor/local/share/doc/libxml2-2.9.0/examples/testXPath.c +229 -0
  202. data/vendor/local/share/doc/libxml2-2.9.0/examples/xmllint.c +3770 -0
  203. data/vendor/local/share/doc/libxml2-2.9.0/html/DOM.gif +0 -0
  204. data/vendor/local/share/doc/libxml2-2.9.0/html/FAQ.html +282 -0
  205. data/vendor/local/share/doc/libxml2-2.9.0/html/Libxml2-Logo-180x168.gif +0 -0
  206. data/vendor/local/share/doc/libxml2-2.9.0/html/Libxml2-Logo-90x34.gif +0 -0
  207. data/vendor/local/share/doc/libxml2-2.9.0/html/encoding.html +207 -0
  208. data/vendor/local/share/doc/libxml2-2.9.0/html/examples.xml +751 -0
  209. data/vendor/local/share/doc/libxml2-2.9.0/html/examples.xsl +174 -0
  210. data/vendor/local/share/doc/libxml2-2.9.0/html/html/book1.html +13 -0
  211. data/vendor/local/share/doc/libxml2-2.9.0/html/html/home.png +0 -0
  212. data/vendor/local/share/doc/libxml2-2.9.0/html/html/index.html +13 -0
  213. data/vendor/local/share/doc/libxml2-2.9.0/html/html/left.png +0 -0
  214. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-DOCBparser.html +51 -0
  215. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-HTMLparser.html +184 -0
  216. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-HTMLtree.html +73 -0
  217. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-SAX.html +125 -0
  218. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-SAX2.html +128 -0
  219. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-c14n.html +38 -0
  220. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-catalog.html +142 -0
  221. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-chvalid.html +72 -0
  222. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-debugXML.html +120 -0
  223. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-dict.html +58 -0
  224. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-encoding.html +124 -0
  225. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-entities.html +79 -0
  226. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-globals.html +152 -0
  227. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-hash.html +116 -0
  228. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-lib.html +13 -0
  229. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-list.html +120 -0
  230. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-nanoftp.html +94 -0
  231. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-nanohttp.html +65 -0
  232. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-parser.html +559 -0
  233. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-parserInternals.html +322 -0
  234. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-pattern.html +76 -0
  235. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-relaxng.html +162 -0
  236. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-schemasInternals.html +373 -0
  237. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-schematron.html +81 -0
  238. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-threads.html +72 -0
  239. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-tree.html +989 -0
  240. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-uri.html +73 -0
  241. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-valid.html +289 -0
  242. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xinclude.html +59 -0
  243. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xlink.html +82 -0
  244. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlIO.html +212 -0
  245. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlautomata.html +85 -0
  246. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlerror.html +864 -0
  247. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlexports.html +20 -0
  248. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlmemory.html +107 -0
  249. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlmodule.html +38 -0
  250. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlreader.html +330 -0
  251. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlregexp.html +143 -0
  252. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlsave.html +60 -0
  253. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlschemas.html +185 -0
  254. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlschemastypes.html +123 -0
  255. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlstring.html +108 -0
  256. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlunicode.html +512 -0
  257. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlversion.html +62 -0
  258. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlwriter.html +261 -0
  259. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpath.html +310 -0
  260. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpathInternals.html +394 -0
  261. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpointer.html +83 -0
  262. data/vendor/local/share/doc/libxml2-2.9.0/html/html/right.png +0 -0
  263. data/vendor/local/share/doc/libxml2-2.9.0/html/html/up.png +0 -0
  264. data/vendor/local/share/doc/libxml2-2.9.0/html/index.html +14 -0
  265. data/vendor/local/share/doc/libxml2-2.9.0/html/io1.c +166 -0
  266. data/vendor/local/share/doc/libxml2-2.9.0/html/io1.res +5 -0
  267. data/vendor/local/share/doc/libxml2-2.9.0/html/io2.c +58 -0
  268. data/vendor/local/share/doc/libxml2-2.9.0/html/io2.res +2 -0
  269. data/vendor/local/share/doc/libxml2-2.9.0/html/libxml.gif +0 -0
  270. data/vendor/local/share/doc/libxml2-2.9.0/html/parse1.c +56 -0
  271. data/vendor/local/share/doc/libxml2-2.9.0/html/parse2.c +72 -0
  272. data/vendor/local/share/doc/libxml2-2.9.0/html/parse3.c +60 -0
  273. data/vendor/local/share/doc/libxml2-2.9.0/html/parse4.c +143 -0
  274. data/vendor/local/share/doc/libxml2-2.9.0/html/reader1.c +107 -0
  275. data/vendor/local/share/doc/libxml2-2.9.0/html/reader1.res +14 -0
  276. data/vendor/local/share/doc/libxml2-2.9.0/html/reader2.c +122 -0
  277. data/vendor/local/share/doc/libxml2-2.9.0/html/reader3.c +120 -0
  278. data/vendor/local/share/doc/libxml2-2.9.0/html/reader3.res +13 -0
  279. data/vendor/local/share/doc/libxml2-2.9.0/html/reader4.c +122 -0
  280. data/vendor/local/share/doc/libxml2-2.9.0/html/reader4.res +3 -0
  281. data/vendor/local/share/doc/libxml2-2.9.0/html/redhat.gif +0 -0
  282. data/vendor/local/share/doc/libxml2-2.9.0/html/smallfootonly.gif +0 -0
  283. data/vendor/local/share/doc/libxml2-2.9.0/html/structure.gif +0 -0
  284. data/vendor/local/share/doc/libxml2-2.9.0/html/test1.xml +1 -0
  285. data/vendor/local/share/doc/libxml2-2.9.0/html/test2.xml +13 -0
  286. data/vendor/local/share/doc/libxml2-2.9.0/html/test3.xml +39 -0
  287. data/vendor/local/share/doc/libxml2-2.9.0/html/testWriter.c +1198 -0
  288. data/vendor/local/share/doc/libxml2-2.9.0/html/tree1.c +94 -0
  289. data/vendor/local/share/doc/libxml2-2.9.0/html/tree1.res +4 -0
  290. data/vendor/local/share/doc/libxml2-2.9.0/html/tree2.c +118 -0
  291. data/vendor/local/share/doc/libxml2-2.9.0/html/tree2.res +18 -0
  292. data/vendor/local/share/doc/libxml2-2.9.0/html/tst.xml +7 -0
  293. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apa.html +8 -0
  294. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apb.html +14 -0
  295. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apc.html +82 -0
  296. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apd.html +76 -0
  297. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ape.html +78 -0
  298. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apf.html +67 -0
  299. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apg.html +75 -0
  300. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/aph.html +76 -0
  301. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/api.html +4 -0
  302. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s02.html +14 -0
  303. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s03.html +47 -0
  304. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s04.html +54 -0
  305. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s05.html +55 -0
  306. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s06.html +35 -0
  307. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s07.html +30 -0
  308. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s08.html +38 -0
  309. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s09.html +63 -0
  310. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/blank.png +0 -0
  311. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/1.png +0 -0
  312. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/10.png +0 -0
  313. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/2.png +0 -0
  314. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/3.png +0 -0
  315. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/4.png +0 -0
  316. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/5.png +0 -0
  317. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/6.png +0 -0
  318. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/7.png +0 -0
  319. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/8.png +0 -0
  320. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/9.png +0 -0
  321. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/caution.png +0 -0
  322. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/draft.png +0 -0
  323. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/home.png +0 -0
  324. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/important.png +0 -0
  325. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/next.png +0 -0
  326. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/note.png +0 -0
  327. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/prev.png +0 -0
  328. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/tip.png +0 -0
  329. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-blank.png +0 -0
  330. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-minus.png +0 -0
  331. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-plus.png +0 -0
  332. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/up.png +0 -0
  333. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/warning.png +0 -0
  334. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeaddattribute.c +64 -0
  335. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeaddkeyword.c +75 -0
  336. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeconvert.c +73 -0
  337. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includegetattribute.c +72 -0
  338. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includekeyword.c +79 -0
  339. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includexpath.c +74 -0
  340. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/index.html +14 -0
  341. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ix01.html +1 -0
  342. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/xmltutorial.pdf +1336 -0
  343. data/vendor/local/share/doc/libxml2-2.9.0/html/w3c.png +0 -0
  344. data/vendor/local/share/doc/libxml2-2.9.0/html/writer.xml +2 -0
  345. data/vendor/local/share/doc/libxml2-2.9.0/html/xml.html +5715 -0
  346. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath1.c +250 -0
  347. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath1.res +5 -0
  348. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath2.c +190 -0
  349. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath2.res +30 -0
  350. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +1346 -0
  351. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +756 -0
  352. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +300 -0
  353. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +243 -0
  354. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +282 -0
  355. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +364 -0
  356. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +474 -0
  357. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +288 -0
  358. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +425 -0
  359. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +414 -0
  360. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +250 -0
  361. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +699 -0
  362. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +1822 -0
  363. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +228 -0
  364. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +296 -0
  365. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +357 -0
  366. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +346 -0
  367. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +1462 -0
  368. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +80 -0
  369. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +46 -0
  370. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +31 -0
  371. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +1538 -0
  372. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRenderer.html +956 -0
  373. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html +199 -0
  374. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRendererText.html +137 -0
  375. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +445 -0
  376. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/home.png +0 -0
  377. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.html +117 -0
  378. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +578 -0
  379. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +771 -0
  380. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +651 -0
  381. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left.png +0 -0
  382. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right.png +0 -0
  383. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/rn01.html +101 -0
  384. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/rn02.html +53 -0
  385. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +252 -0
  386. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +266 -0
  387. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up.png +0 -0
  388. data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
  389. data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
  390. data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
  391. data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
  392. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
  393. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +373 -0
  394. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
  395. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
  396. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
  397. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
  398. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
  399. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
  400. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
  401. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +134 -0
  402. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +218 -0
  403. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
  404. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
  405. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
  406. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
  407. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +187 -0
  408. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
  409. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +766 -0
  410. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +688 -0
  411. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
  412. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
  413. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
  414. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
  415. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
  416. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1596 -0
  417. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
  418. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
  419. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
  420. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
  421. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +347 -0
  422. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
  423. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +952 -0
  424. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
  425. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
  426. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
  427. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +565 -0
  428. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
  429. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +133 -0
  430. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +314 -0
  431. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
  432. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
  433. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
  434. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +287 -0
  435. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +479 -0
  436. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +532 -0
  437. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
  438. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
  439. data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3569 -0
  440. data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
  441. data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
  442. data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
  443. data/vendor/local/share/gtksourceview-3.0/language-specs/R.lang +130 -0
  444. data/vendor/local/share/gtksourceview-3.0/language-specs/actionscript.lang +268 -0
  445. data/vendor/local/share/gtksourceview-3.0/language-specs/ada.lang +221 -0
  446. data/vendor/local/share/gtksourceview-3.0/language-specs/asp.lang +1097 -0
  447. data/vendor/local/share/gtksourceview-3.0/language-specs/automake.lang +329 -0
  448. data/vendor/local/share/gtksourceview-3.0/language-specs/awk.lang +138 -0
  449. data/vendor/local/share/gtksourceview-3.0/language-specs/bennugd.lang +267 -0
  450. data/vendor/local/share/gtksourceview-3.0/language-specs/bibtex.lang +93 -0
  451. data/vendor/local/share/gtksourceview-3.0/language-specs/boo.lang +257 -0
  452. data/vendor/local/share/gtksourceview-3.0/language-specs/c.lang +332 -0
  453. data/vendor/local/share/gtksourceview-3.0/language-specs/cg.lang +232 -0
  454. data/vendor/local/share/gtksourceview-3.0/language-specs/changelog.lang +92 -0
  455. data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +43 -0
  456. data/vendor/local/share/gtksourceview-3.0/language-specs/check-language.sh +32 -0
  457. data/vendor/local/share/gtksourceview-3.0/language-specs/cmake.lang +408 -0
  458. data/vendor/local/share/gtksourceview-3.0/language-specs/cobol.lang +456 -0
  459. data/vendor/local/share/gtksourceview-3.0/language-specs/cpp.lang +114 -0
  460. data/vendor/local/share/gtksourceview-3.0/language-specs/csharp.lang +282 -0
  461. data/vendor/local/share/gtksourceview-3.0/language-specs/css.lang +537 -0
  462. data/vendor/local/share/gtksourceview-3.0/language-specs/cuda.lang +292 -0
  463. data/vendor/local/share/gtksourceview-3.0/language-specs/d.lang +296 -0
  464. data/vendor/local/share/gtksourceview-3.0/language-specs/def.lang +252 -0
  465. data/vendor/local/share/gtksourceview-3.0/language-specs/desktop.lang +300 -0
  466. data/vendor/local/share/gtksourceview-3.0/language-specs/diff.lang +85 -0
  467. data/vendor/local/share/gtksourceview-3.0/language-specs/docbook.lang +476 -0
  468. data/vendor/local/share/gtksourceview-3.0/language-specs/dosbatch.lang +167 -0
  469. data/vendor/local/share/gtksourceview-3.0/language-specs/dot.lang +140 -0
  470. data/vendor/local/share/gtksourceview-3.0/language-specs/dpatch.lang +48 -0
  471. data/vendor/local/share/gtksourceview-3.0/language-specs/dtd.lang +140 -0
  472. data/vendor/local/share/gtksourceview-3.0/language-specs/eiffel.lang +239 -0
  473. data/vendor/local/share/gtksourceview-3.0/language-specs/erlang.lang +258 -0
  474. data/vendor/local/share/gtksourceview-3.0/language-specs/fcl.lang +115 -0
  475. data/vendor/local/share/gtksourceview-3.0/language-specs/forth.lang +235 -0
  476. data/vendor/local/share/gtksourceview-3.0/language-specs/fortran.lang +512 -0
  477. data/vendor/local/share/gtksourceview-3.0/language-specs/fsharp.lang +325 -0
  478. data/vendor/local/share/gtksourceview-3.0/language-specs/gap.lang +85 -0
  479. data/vendor/local/share/gtksourceview-3.0/language-specs/gdb-log.lang +152 -0
  480. data/vendor/local/share/gtksourceview-3.0/language-specs/glsl.lang +483 -0
  481. data/vendor/local/share/gtksourceview-3.0/language-specs/go.lang +275 -0
  482. data/vendor/local/share/gtksourceview-3.0/language-specs/gtk-doc.lang +91 -0
  483. data/vendor/local/share/gtksourceview-3.0/language-specs/gtkrc.lang +116 -0
  484. data/vendor/local/share/gtksourceview-3.0/language-specs/haddock.lang +162 -0
  485. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell-literate.lang +59 -0
  486. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell.lang +228 -0
  487. data/vendor/local/share/gtksourceview-3.0/language-specs/html.lang +180 -0
  488. data/vendor/local/share/gtksourceview-3.0/language-specs/idl.lang +154 -0
  489. data/vendor/local/share/gtksourceview-3.0/language-specs/imagej.lang +784 -0
  490. data/vendor/local/share/gtksourceview-3.0/language-specs/ini.lang +95 -0
  491. data/vendor/local/share/gtksourceview-3.0/language-specs/j.lang +240 -0
  492. data/vendor/local/share/gtksourceview-3.0/language-specs/java.lang +190 -0
  493. data/vendor/local/share/gtksourceview-3.0/language-specs/javascript.lang +338 -0
  494. data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +123 -0
  495. data/vendor/local/share/gtksourceview-3.0/language-specs/language.dtd +73 -0
  496. data/vendor/local/share/gtksourceview-3.0/language-specs/language.rng +373 -0
  497. data/vendor/local/share/gtksourceview-3.0/language-specs/language2.rng +482 -0
  498. data/vendor/local/share/gtksourceview-3.0/language-specs/latex.lang +300 -0
  499. data/vendor/local/share/gtksourceview-3.0/language-specs/libtool.lang +56 -0
  500. data/vendor/local/share/gtksourceview-3.0/language-specs/lua.lang +157 -0
  501. data/vendor/local/share/gtksourceview-3.0/language-specs/m4.lang +1375 -0
  502. data/vendor/local/share/gtksourceview-3.0/language-specs/makefile.lang +193 -0
  503. data/vendor/local/share/gtksourceview-3.0/language-specs/mallard.lang +124 -0
  504. data/vendor/local/share/gtksourceview-3.0/language-specs/markdown.lang +402 -0
  505. data/vendor/local/share/gtksourceview-3.0/language-specs/matlab.lang +171 -0
  506. data/vendor/local/share/gtksourceview-3.0/language-specs/mxml.lang +65 -0
  507. data/vendor/local/share/gtksourceview-3.0/language-specs/nemerle.lang +263 -0
  508. data/vendor/local/share/gtksourceview-3.0/language-specs/netrexx.lang +319 -0
  509. data/vendor/local/share/gtksourceview-3.0/language-specs/nsis.lang +88 -0
  510. data/vendor/local/share/gtksourceview-3.0/language-specs/objc.lang +120 -0
  511. data/vendor/local/share/gtksourceview-3.0/language-specs/objj.lang +128 -0
  512. data/vendor/local/share/gtksourceview-3.0/language-specs/ocaml.lang +302 -0
  513. data/vendor/local/share/gtksourceview-3.0/language-specs/ocl.lang +139 -0
  514. data/vendor/local/share/gtksourceview-3.0/language-specs/octave.lang +859 -0
  515. data/vendor/local/share/gtksourceview-3.0/language-specs/ooc.lang +265 -0
  516. data/vendor/local/share/gtksourceview-3.0/language-specs/opal.lang +343 -0
  517. data/vendor/local/share/gtksourceview-3.0/language-specs/opencl.lang +600 -0
  518. data/vendor/local/share/gtksourceview-3.0/language-specs/pascal.lang +268 -0
  519. data/vendor/local/share/gtksourceview-3.0/language-specs/perl.lang +1028 -0
  520. data/vendor/local/share/gtksourceview-3.0/language-specs/php.lang +361 -0
  521. data/vendor/local/share/gtksourceview-3.0/language-specs/pkgconfig.lang +62 -0
  522. data/vendor/local/share/gtksourceview-3.0/language-specs/po.lang +94 -0
  523. data/vendor/local/share/gtksourceview-3.0/language-specs/prolog.lang +249 -0
  524. data/vendor/local/share/gtksourceview-3.0/language-specs/protobuf.lang +103 -0
  525. data/vendor/local/share/gtksourceview-3.0/language-specs/puppet.lang +697 -0
  526. data/vendor/local/share/gtksourceview-3.0/language-specs/python.lang +413 -0
  527. data/vendor/local/share/gtksourceview-3.0/language-specs/python3.lang +192 -0
  528. data/vendor/local/share/gtksourceview-3.0/language-specs/rpmspec.lang +210 -0
  529. data/vendor/local/share/gtksourceview-3.0/language-specs/ruby.lang +591 -0
  530. data/vendor/local/share/gtksourceview-3.0/language-specs/scheme.lang +302 -0
  531. data/vendor/local/share/gtksourceview-3.0/language-specs/scilab.lang +209 -0
  532. data/vendor/local/share/gtksourceview-3.0/language-specs/sh.lang +499 -0
  533. data/vendor/local/share/gtksourceview-3.0/language-specs/sml.lang +201 -0
  534. data/vendor/local/share/gtksourceview-3.0/language-specs/sparql.lang +448 -0
  535. data/vendor/local/share/gtksourceview-3.0/language-specs/sql.lang +618 -0
  536. data/vendor/local/share/gtksourceview-3.0/language-specs/systemverilog.lang +263 -0
  537. data/vendor/local/share/gtksourceview-3.0/language-specs/t2t.lang +150 -0
  538. data/vendor/local/share/gtksourceview-3.0/language-specs/tcl.lang +146 -0
  539. data/vendor/local/share/gtksourceview-3.0/language-specs/texinfo.lang +448 -0
  540. data/vendor/local/share/gtksourceview-3.0/language-specs/vala.lang +365 -0
  541. data/vendor/local/share/gtksourceview-3.0/language-specs/vbnet.lang +245 -0
  542. data/vendor/local/share/gtksourceview-3.0/language-specs/verilog.lang +464 -0
  543. data/vendor/local/share/gtksourceview-3.0/language-specs/vhdl.lang +248 -0
  544. data/vendor/local/share/gtksourceview-3.0/language-specs/xml.lang +220 -0
  545. data/vendor/local/share/gtksourceview-3.0/language-specs/xslt.lang +108 -0
  546. data/vendor/local/share/gtksourceview-3.0/language-specs/yacc.lang +177 -0
  547. data/vendor/local/share/gtksourceview-3.0/styles/check-style.sh +20 -0
  548. data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +107 -0
  549. data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +135 -0
  550. data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +161 -0
  551. data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +117 -0
  552. data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +139 -0
  553. data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +117 -0
  554. data/vendor/local/share/license/gtksourceview/AUTHORS +12 -0
  555. data/vendor/local/share/license/gtksourceview/COPYING +340 -0
  556. data/vendor/local/share/man/man1/xml2-config.1 +30 -0
  557. data/vendor/local/share/man/man1/xmlcatalog.1 +340 -0
  558. data/vendor/local/share/man/man1/xmllint.1 +427 -0
  559. data/vendor/local/share/man/man3/libxml.3 +71 -0
  560. data/vendor/local/src/dieterv/packaging/libxml2_2.9.0-1_win32.log +867 -0
  561. data/vendor/local/src/dieterv/packaging/libxml2_2.9.0-1_win32.sh +68 -0
  562. metadata +642 -0
@@ -0,0 +1,180 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+
4
+ This file is part of GtkSourceView
5
+
6
+ Authors: Marco Barisione, Emanuele Aina
7
+ Copyright (C) 2005-2007 Marco Barisione <barisione@gmail.com>
8
+ Copyright (C) 2005-2007 Emanuele Aina
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">&lt;!--</property>
30
+ <property name="block-comment-end">--&gt;</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
+ </styles>
41
+
42
+ <default-regex-options case-sensitive="false"/>
43
+
44
+ <definitions>
45
+ <!-- Html comments are more permissive than xml comments -->
46
+ <context id="comment" style-ref="comment" class="comment">
47
+ <start>&lt;!--</start>
48
+ <end>--\s*&gt;</end>
49
+ <include>
50
+ <context ref="def:in-comment"/>
51
+ </include>
52
+ </context>
53
+
54
+ <context id="dtd" style-ref="dtd" class="no-spell-check">
55
+ <start>&lt;!</start>
56
+ <end>&gt;</end>
57
+ </context>
58
+
59
+ <!-- This is a placeholder context intended to be <replace>d
60
+ in languages like php that need to embedd contexts inside
61
+ html tags and attributes.
62
+ -->
63
+ <context id="embedded-lang-hook">
64
+ <start>\%{def:never-match}</start>
65
+ <end></end>
66
+ </context>
67
+
68
+ <context id="generic-tag">
69
+ <include>
70
+
71
+ <!-- Attribute in the form: name="value" -->
72
+ <context id="attrib-quoted" style-ref="attrib-name" class="no-spell-check">
73
+ <start extended="true">
74
+ [A-Za-z0-9:_-]+ # attribute name
75
+ \s*=\s* # "="
76
+ (\") # string beginning
77
+ </start>
78
+ <end>\"</end>
79
+ <include>
80
+ <context sub-pattern="1" where="start" style-ref="attrib-value"/>
81
+ <context sub-pattern="0" where="end" style-ref="attrib-value"/>
82
+ <context id="string" extend-parent="false" end-at-line-end="true" style-ref="attrib-value" class="string" class-disabled="no-spell-check">
83
+ <start>\%{def:always-match}</start>
84
+ <include>
85
+ <context ref="xml:entity"/>
86
+ <context ref="xml:character-reference"/>
87
+ <context ref="embedded-lang-hook"/>
88
+ </include>
89
+ </context>
90
+ </include>
91
+ </context>
92
+
93
+ <!-- Attribute in the form: name=value -->
94
+ <context id="attrib-unquoted" style-ref="attrib-value" class="no-spell-check">
95
+ <start extended="true">
96
+ [a-z0-9:_-]+ # attribute name
97
+ \s*=\s* # "="
98
+ </start>
99
+ <end>(?=&gt;|\s)</end>
100
+ <include>
101
+ <context sub-pattern="0" where="start" style-ref="attrib-name"/>
102
+ <context ref="xml:entity"/>
103
+ <context ref="xml:character-reference"/>
104
+ </include>
105
+ </context>
106
+
107
+ <!-- Attribute in the form: name -->
108
+ <context id="attrib-no-value" style-ref="attrib-name" class="no-spell-check">
109
+ <match extended="true">
110
+ [a-z0-9:_-]+ # attribute name
111
+ </match>
112
+ </context>
113
+
114
+ <context ref="embedded-lang-hook"/>
115
+
116
+ </include>
117
+ </context>
118
+
119
+ <context id="style" class="no-spell-check">
120
+ <start>&lt;\s*style\%]</start>
121
+ <end>/&gt;|&lt;\s*/\s*style\s*&gt;</end>
122
+
123
+ <include>
124
+ <context sub-pattern="0" where="start" style-ref="tag"/>
125
+ <context sub-pattern="0" where="end" style-ref="tag"/>
126
+ <context ref="generic-tag"/>
127
+ <context id="style-code" extend-parent="false">
128
+ <start>&gt;</start>
129
+ <include>
130
+ <context sub-pattern="0" where="start" style-ref="tag"/>
131
+ <context ref="css:css"/>
132
+ </include>
133
+ </context>
134
+ </include>
135
+ </context>
136
+
137
+ <context id="script" class="no-spell-check">
138
+ <start>&lt;\s*script\%]</start>
139
+ <end>/&gt;|&lt;\s*/\s*script\s*&gt;</end>
140
+
141
+ <include>
142
+ <context sub-pattern="0" where="start" style-ref="tag"/>
143
+ <context sub-pattern="0" where="end" style-ref="tag"/>
144
+ <context ref="generic-tag"/>
145
+ <context id="js-code" extend-parent="false">
146
+ <start>&gt;</start>
147
+ <include>
148
+ <context sub-pattern="0" where="start" style-ref="tag"/>
149
+ <context ref="js:js"/>
150
+ </include>
151
+ </context>
152
+ </include>
153
+ </context>
154
+
155
+ <context id="tag" class="no-spell-check">
156
+ <start>&lt;\s*/?\s*[a-z0-9_-]+</start>
157
+ <end>/?\s*&gt;</end>
158
+ <include>
159
+ <context sub-pattern="0" where="start" style-ref="tag"/>
160
+ <context sub-pattern="0" where="end" style-ref="tag"/>
161
+ <context ref="generic-tag"/>
162
+ </include>
163
+ </context>
164
+
165
+ <context id="html">
166
+ <include>
167
+ <context ref="xml:doctype"/>
168
+ <context ref="xml:entity"/>
169
+ <context ref="xml:character-reference"/>
170
+ <context ref="xml:cdata"/>
171
+ <context ref="comment"/>
172
+ <context ref="dtd"/>
173
+ <context ref="style"/>
174
+ <context ref="script"/>
175
+ <context ref="tag"/>
176
+ </include>
177
+ </context>
178
+
179
+ </definitions>
180
+ </language>
@@ -0,0 +1,154 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+
4
+ This file is part of GtkSourceView
5
+
6
+ Author: Paolo Maggi <paolo@gnome.org>
7
+ Copyright (C) 2005 Paolo Maggi <paolo@gnome.org>
8
+
9
+ GtkSourceView is free software; you can redistribute it and/or
10
+ modify it under the terms of the GNU Lesser General Public
11
+ License as published by the Free Software Foundation; either
12
+ version 2.1 of the License, or (at your option) any later version.
13
+
14
+ GtkSourceView is distributed in the hope that it will be useful,
15
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17
+ Lesser General Public License for more details.
18
+
19
+ You should have received a copy of the GNU Lesser General Public
20
+ License along with this library; if not, write to the Free Software
21
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
+
23
+ -->
24
+ <language id="idl" _name="IDL" version="2.0" _section="Sources">
25
+ <metadata>
26
+ <property name="mimetypes">text/x-idl</property>
27
+ <property name="globs">*.idl</property>
28
+ <property name="line-comment-start">//</property>
29
+ </metadata>
30
+
31
+ <styles>
32
+ <style id="comment" _name="Comment" map-to="def:comment"/>
33
+ <style id="type" _name="Data Type" map-to="def:type"/>
34
+ <style id="preprocessor" _name="Preprocessor" map-to="def:preprocessor"/>
35
+ <style id="keyword" _name="Keyword" map-to="def:keyword"/>
36
+ <style id="string" _name="String" map-to="def:string"/>
37
+ </styles>
38
+
39
+ <definitions>
40
+ <context id="block-comment" style-ref="comment" class="comment" class-disabled="no-spell-check">
41
+ <start>/\*</start>
42
+ <end>\*/</end>
43
+ <include>
44
+ <context ref="def:escape"/>
45
+ <context ref="def:line-continue"/>
46
+ </include>
47
+ </context>
48
+ <context id="line-comment" style-ref="comment" end-at-line-end="true" class="comment" class-disabled="no-spell-check">
49
+ <start>//</start>
50
+ <include>
51
+ <context ref="def:escape"/>
52
+ <context ref="def:line-continue"/>
53
+ </include>
54
+ </context>
55
+ <context id="sectional" style-ref="preprocessor">
56
+ <start>%\{</start>
57
+ <end>%\}</end>
58
+ <include>
59
+ <context ref="def:escape"/>
60
+ <context ref="def:line-continue"/>
61
+ </include>
62
+ </context>
63
+ <context id="string" style-ref="string" end-at-line-end="true" class="string" class-disabled="no-spell-check">
64
+ <start>"</start>
65
+ <end>"</end>
66
+ <include>
67
+ <context ref="def:escape"/>
68
+ <context ref="def:line-continue"/>
69
+ </include>
70
+ </context>
71
+ <context id="include-pragma" style-ref="preprocessor" end-at-line-end="true">
72
+ <start>^#[ \t]*(include|pragma)</start>
73
+ <include>
74
+ <context ref="def:escape"/>
75
+ <context ref="def:line-continue"/>
76
+ </include>
77
+ </context>
78
+ <context id="keywords" style-ref="keyword">
79
+ <keyword>abstract</keyword>
80
+ <keyword>attribute</keyword>
81
+ <keyword>case</keyword>
82
+ <keyword>const</keyword>
83
+ <keyword>context</keyword>
84
+ <keyword>custom</keyword>
85
+ <keyword>default</keyword>
86
+ <keyword>exception</keyword>
87
+ <keyword>enum</keyword>
88
+ <keyword>factory</keyword>
89
+ <keyword>FALSE</keyword>
90
+ <keyword>in</keyword>
91
+ <keyword>inout</keyword>
92
+ <keyword>interface</keyword>
93
+ <keyword>local</keyword>
94
+ <keyword>module</keyword>
95
+ <keyword>native</keyword>
96
+ <keyword>oneway</keyword>
97
+ <keyword>out</keyword>
98
+ <keyword>private</keyword>
99
+ <keyword>public</keyword>
100
+ <keyword>raises</keyword>
101
+ <keyword>readonly</keyword>
102
+ <keyword>struct</keyword>
103
+ <keyword>support</keyword>
104
+ <keyword>switch</keyword>
105
+ <keyword>TRUE</keyword>
106
+ <keyword>truncatable</keyword>
107
+ <keyword>typedef</keyword>
108
+ <keyword>union</keyword>
109
+ <keyword>valuetype</keyword>
110
+ </context>
111
+ <context id="types" style-ref="type">
112
+ <keyword>any</keyword>
113
+ <keyword>boolean</keyword>
114
+ <keyword>char</keyword>
115
+ <keyword>double</keyword>
116
+ <keyword>fixed</keyword>
117
+ <keyword>float</keyword>
118
+ <keyword>long</keyword>
119
+ <keyword>Object</keyword>
120
+ <keyword>octet</keyword>
121
+ <keyword>sequence</keyword>
122
+ <keyword>short</keyword>
123
+ <keyword>string</keyword>
124
+ <keyword>unsigned</keyword>
125
+ <keyword>ValueBase</keyword>
126
+ <keyword>void</keyword>
127
+ <keyword>wchar</keyword>
128
+ <keyword>wstring</keyword>
129
+ </context>
130
+ <context id="preprocessor-definitions" style-ref="preprocessor">
131
+ <prefix>^[ \t]*#[ \t]*</prefix>
132
+ <keyword>if</keyword>
133
+ <keyword>ifdef</keyword>
134
+ <keyword>ifndef</keyword>
135
+ <keyword>else</keyword>
136
+ <keyword>elif</keyword>
137
+ <keyword>define</keyword>
138
+ <keyword>endif</keyword>
139
+ <keyword>undef</keyword>
140
+ </context>
141
+ <context id="idl" class="no-spell-check">
142
+ <include>
143
+ <context ref="block-comment"/>
144
+ <context ref="line-comment"/>
145
+ <context ref="sectional"/>
146
+ <context ref="string"/>
147
+ <context ref="include-pragma"/>
148
+ <context ref="keywords"/>
149
+ <context ref="types"/>
150
+ <context ref="preprocessor-definitions"/>
151
+ </include>
152
+ </context>
153
+ </definitions>
154
+ </language>
@@ -0,0 +1,784 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+
4
+ This file is part of GtkSourceView
5
+
6
+ Authors: Carnë Draug
7
+ Copyright (C) 2011 Carnë Draug <carandraug+dev@gmail.com>
8
+
9
+ GtkSourceView is free software; you can redistribute it and/or
10
+ modify it under the terms of the GNU Lesser General Public
11
+ License as published by the Free Software Foundation; either
12
+ version 2.1 of the License, or (at your option) any later version.
13
+
14
+ GtkSourceView is distributed in the hope that it will be useful,
15
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17
+ Lesser General Public License for more details.
18
+
19
+ You should have received a copy of the GNU Lesser General Public
20
+ License along with this library; if not, write to the Free Software
21
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
+
23
+ -->
24
+ <language id="imagej" _name="ImageJ" version="2.0" _section="Scientific">
25
+ <metadata>
26
+ <property name="globs">*.ijm</property>
27
+ <property name="line-comment-start">//</property>
28
+ <property name="block-comment-start">/*</property>
29
+ <property name="block-comment-end">*/</property>
30
+ </metadata>
31
+
32
+ <styles>
33
+ <style id="builtin" _name="Builtin" map-to="def:builtin"/>
34
+ <style id="boolean" _name="Boolean" map-to="def:boolean"/>
35
+ <style id="command" _name="Commands" map-to="def:function"/>
36
+ <style id="storage-type" _name="Storage Type" map-to="def:type"/>
37
+ <style id="escape" _name="Escaped Characters" map-to="def:special-char"/>
38
+ <style id="keyword" _name="Keyword" map-to="def:keyword"/>
39
+ <style id="operator" _name="Operator" map-to="def:operator"/>
40
+ <style id="string" _name="String" map-to="def:string"/>
41
+ </styles>
42
+
43
+ <definitions>
44
+
45
+ <!--There is no printf and no line continue, hence the reason not to use the
46
+ string rules in the defaults
47
+ -->
48
+ <context id="double-quoted-string" style-ref="string" end-at-line-end="true" class="string" class-disabled="no-spell-check">
49
+ <start>"</start>
50
+ <end>"</end>
51
+ <include>
52
+ <context ref="c:escaped-character"/>
53
+ <context ref="command"/>
54
+ </include>
55
+ </context>
56
+
57
+ <context id="single-quoted-string" style-ref="string" end-at-line-end="true" class="string" class-disabled="no-spell-check">
58
+ <start>'</start>
59
+ <end>'</end>
60
+ <include>
61
+ <context ref="c:escaped-character"/>
62
+ <context ref="command"/>
63
+ </include>
64
+ </context>
65
+
66
+ <context id="operator" style-ref="operator">
67
+ <match extended="true">
68
+ \+{1,2}?(?!\+) | # arithmetic operators
69
+ \-{1,2}?(?!\-) | # already counting
70
+ \*(?!\*) | # with auto increment,
71
+ \/(?!\/) | #
72
+ \%(?!\%) | # remainder
73
+ \^(?!\^) | # and exp
74
+ &lt;=? | &gt;=? | != | == | &lt;&gt; | # comparison operators
75
+ &amp;{1,2}?(?!&amp;) | \|{1,2}?(?!\|) | ! | ~ | # boolean operators
76
+ = | # assignment operator
77
+ </match>
78
+ </context>
79
+
80
+ <context id="storage-type" style-ref="storage-type">
81
+ <keyword>var</keyword>
82
+ </context>
83
+
84
+ <context id="boolean" style-ref="boolean">
85
+ <keyword>false</keyword>
86
+ <keyword>true</keyword>
87
+ </context>
88
+
89
+ <!--
90
+ TODO Think about keyboard shortcuts, just one character, between square
91
+ brackets, at the end of the macro name string. Can be two characters for
92
+ fX and nX for f keys and numeric pad
93
+ -->
94
+ <context id="keyword" style-ref="keyword">
95
+ <keyword>do</keyword>
96
+ <keyword>else</keyword>
97
+ <keyword>for</keyword>
98
+ <keyword>function</keyword>
99
+ <keyword>if</keyword>
100
+ <keyword>macro</keyword>
101
+ <keyword>return</keyword>
102
+ <keyword>while</keyword>
103
+ </context>
104
+
105
+ <!--
106
+ TODO Get prefix to allow spaces. run(\s)*\((\s)*" doesn't work because
107
+ look-behind operator doesn't support variable length
108
+ -->
109
+ <context id="command" style-ref="command">
110
+ <prefix>(?&lt;=run\(("|'))</prefix>
111
+ <suffix>(?="|')</suffix>
112
+
113
+ <keyword>16-bit</keyword>
114
+ <keyword>3-3-2 RGB</keyword>
115
+ <keyword>32-bit</keyword>
116
+ <keyword>3D Project\.\.\.</keyword>
117
+ <keyword>8-bit</keyword>
118
+ <keyword>8-bit Color</keyword>
119
+ <keyword>AND\.\.\.</keyword>
120
+ <keyword>AVI\.\.\.</keyword>
121
+ <keyword>AVI\.\.\. </keyword>
122
+ <keyword>About ImageJ\.\.\.</keyword>
123
+ <keyword>About This Submenu\.\.\.</keyword>
124
+ <keyword>Abs</keyword>
125
+ <keyword>Add Image\.\.\.</keyword>
126
+ <keyword>Add Noise</keyword>
127
+ <keyword>Add Selection\.\.\.</keyword>
128
+ <keyword>Add Slice</keyword>
129
+ <keyword>Add Specified Noise\.\.\.</keyword>
130
+ <keyword>Add to Manager </keyword>
131
+ <keyword>Add\.\.\.</keyword>
132
+ <keyword>Analyze Line Graph</keyword>
133
+ <keyword>Analyze Particles\.\.\.</keyword>
134
+ <keyword>Animation Options\.\.\.</keyword>
135
+ <keyword>Appearance\.\.\.</keyword>
136
+ <keyword>Apply LUT</keyword>
137
+ <keyword>Arrow Tool\.\.\.</keyword>
138
+ <keyword>AuPbSn 40 \(56K\)</keyword>
139
+ <keyword>BMP\.\.\.</keyword>
140
+ <keyword>Bandpass Filter\.\.\.</keyword>
141
+ <keyword>Bat Cochlea Renderings \(449K\)</keyword>
142
+ <keyword>Bat Cochlea Volume \(19K\)</keyword>
143
+ <keyword>Benchmark</keyword>
144
+ <keyword>Blobs \(25K\)</keyword>
145
+ <keyword>Blue</keyword>
146
+ <keyword>Boats \(356K\)</keyword>
147
+ <keyword>Bridge \(174K\)</keyword>
148
+ <keyword>Brightness/Contrast\.\.\.</keyword>
149
+ <keyword>CT \(420K, 16-bit DICOM\)</keyword>
150
+ <keyword>Calibrate\.\.\.</keyword>
151
+ <keyword>Calibration Bar\.\.\.</keyword>
152
+ <keyword>Canvas Size\.\.\.</keyword>
153
+ <keyword>Capture Image</keyword>
154
+ <keyword>Capture Screen </keyword>
155
+ <keyword>Cardio \(768K, RGB DICOM\)</keyword>
156
+ <keyword>Cascade</keyword>
157
+ <keyword>Cell Colony \(31K\)</keyword>
158
+ <keyword>Channels Tool\.\.\.</keyword>
159
+ <keyword>Channels Tool\.\.\. </keyword>
160
+ <keyword>Clear</keyword>
161
+ <keyword>Clear Outside</keyword>
162
+ <keyword>Clear Results</keyword>
163
+ <keyword>Close</keyword>
164
+ <keyword>Close All</keyword>
165
+ <keyword>Close-</keyword>
166
+ <keyword>Clown \(14K\)</keyword>
167
+ <keyword>Color Balance\.\.\.</keyword>
168
+ <keyword>Color Picker\.\.\.</keyword>
169
+ <keyword>Color Threshold\.\.\.</keyword>
170
+ <keyword>Colors\.\.\.</keyword>
171
+ <keyword>Combine\.\.\.</keyword>
172
+ <keyword>Compile and Run\.\.\.</keyword>
173
+ <keyword>Compiler\.\.\.</keyword>
174
+ <keyword>Concatenate\.\.\.</keyword>
175
+ <keyword>Confocal Series \(2\.2MB\)</keyword>
176
+ <keyword>Control Panel\.\.\.</keyword>
177
+ <keyword>Conversions\.\.\.</keyword>
178
+ <keyword>Convert to Mask</keyword>
179
+ <keyword>Convert\.\.\.</keyword>
180
+ <keyword>Convex Hull</keyword>
181
+ <keyword>Convolve\.\.\.</keyword>
182
+ <keyword>Copy</keyword>
183
+ <keyword>Copy to System</keyword>
184
+ <keyword>Create Mask</keyword>
185
+ <keyword>Create Selection</keyword>
186
+ <keyword>Create Shortcut\.\.\. </keyword>
187
+ <keyword>Crop</keyword>
188
+ <keyword>Curve Fitting\.\.\.</keyword>
189
+ <keyword>Custom Filter\.\.\.</keyword>
190
+ <keyword>Cut</keyword>
191
+ <keyword>Cyan</keyword>
192
+ <keyword>DICOM\.\.\.</keyword>
193
+ <keyword>Delete Slice</keyword>
194
+ <keyword>Despeckle</keyword>
195
+ <keyword>Dev\. Resources\.\.\.</keyword>
196
+ <keyword>Dilate</keyword>
197
+ <keyword>Distance Map</keyword>
198
+ <keyword>Distribution\.\.\.</keyword>
199
+ <keyword>Divide\.\.\.</keyword>
200
+ <keyword>Documentation\.\.\.</keyword>
201
+ <keyword>Dot Blot \(7K\)</keyword>
202
+ <keyword>Draw</keyword>
203
+ <keyword>Duplicate\.\.\.</keyword>
204
+ <keyword>East</keyword>
205
+ <keyword>Edit LUT\.\.\.</keyword>
206
+ <keyword>Edit\.\.\.</keyword>
207
+ <keyword>Embryos \(42K\)</keyword>
208
+ <keyword>Enhance Contrast</keyword>
209
+ <keyword>Enlarge\.\.\.</keyword>
210
+ <keyword>Erode</keyword>
211
+ <keyword>Exp</keyword>
212
+ <keyword>FD Math\.\.\.</keyword>
213
+ <keyword>FFT</keyword>
214
+ <keyword>FFT Options\.\.\.</keyword>
215
+ <keyword>FITS\.\.\.</keyword>
216
+ <keyword>Fill</keyword>
217
+ <keyword>Fill Holes</keyword>
218
+ <keyword>Find Commands\.\.\. </keyword>
219
+ <keyword>Find Edges</keyword>
220
+ <keyword>Find Maxima\.\.\.</keyword>
221
+ <keyword>Fire</keyword>
222
+ <keyword>Fit Ellipse</keyword>
223
+ <keyword>Fit Spline</keyword>
224
+ <keyword>Flatten</keyword>
225
+ <keyword>Flip Horizontally</keyword>
226
+ <keyword>Flip Vertically</keyword>
227
+ <keyword>Flip Z</keyword>
228
+ <keyword>Flood Fill Tool Options\.\.\.</keyword>
229
+ <keyword>Fluorescent Cells \(400K\)</keyword>
230
+ <keyword>Fly Brain \(1MB\)</keyword>
231
+ <keyword>Fonts\.\.\.</keyword>
232
+ <keyword>Fractal Box Count\.\.\.</keyword>
233
+ <keyword>From ROI Manager</keyword>
234
+ <keyword>Gamma\.\.\.</keyword>
235
+ <keyword>Gaussian Blur\.\.\.</keyword>
236
+ <keyword>Gel \(105K\)</keyword>
237
+ <keyword>Gel Analyzer Options\.\.\.</keyword>
238
+ <keyword>Gif\.\.\.</keyword>
239
+ <keyword>Grays</keyword>
240
+ <keyword>Green</keyword>
241
+ <keyword>HSB Stack</keyword>
242
+ <keyword>HeLa Cells \(1\.3M, 48-bit RGB\)</keyword>
243
+ <keyword>Hide Overlay</keyword>
244
+ <keyword>Histogram</keyword>
245
+ <keyword>Hyperstack to Stack</keyword>
246
+ <keyword>Hyperstack\.\.\.</keyword>
247
+ <keyword>Ice</keyword>
248
+ <keyword>Image Calculator\.\.\.</keyword>
249
+ <keyword>Image Sequence\.\.\.</keyword>
250
+ <keyword>Image Sequence\.\.\. </keyword>
251
+ <keyword>Image\.\.\.</keyword>
252
+ <keyword>ImageJ News\.\.\.</keyword>
253
+ <keyword>ImageJ Properties\.\.\.</keyword>
254
+ <keyword>ImageJ Website\.\.\.</keyword>
255
+ <keyword>Images to Stack</keyword>
256
+ <keyword>In</keyword>
257
+ <keyword>Input/Output\.\.\.</keyword>
258
+ <keyword>Insert\.\.\.</keyword>
259
+ <keyword>Install Plugin\.\.\.</keyword>
260
+ <keyword>Install\.\.\.</keyword>
261
+ <keyword>Installation\.\.\.</keyword>
262
+ <keyword>Internal Clipboard</keyword>
263
+ <keyword>Inverse FFT</keyword>
264
+ <keyword>Invert</keyword>
265
+ <keyword>Invert LUT</keyword>
266
+ <keyword>JavaScript</keyword>
267
+ <keyword>Jpeg\.\.\.</keyword>
268
+ <keyword>LUT\.\.\.</keyword>
269
+ <keyword>LUT\.\.\. </keyword>
270
+ <keyword>Label</keyword>
271
+ <keyword>Label Peaks</keyword>
272
+ <keyword>Label\.\.\.</keyword>
273
+ <keyword>Leaf \(36K\)</keyword>
274
+ <keyword>Lena \(68K\)</keyword>
275
+ <keyword>Line Graph \(21K\)</keyword>
276
+ <keyword>Line Width\.\.\.</keyword>
277
+ <keyword>Line Width\.\.\. </keyword>
278
+ <keyword>List Archives\.\.\.</keyword>
279
+ <keyword>List Shortcuts\.\.\.</keyword>
280
+ <keyword>Log</keyword>
281
+ <keyword>M51 Galaxy \(177K, 16-bits\)</keyword>
282
+ <keyword>MRI Stack \(528K\)</keyword>
283
+ <keyword>Macro</keyword>
284
+ <keyword>Macro Functions\.\.\.</keyword>
285
+ <keyword>Macro\.\.\.</keyword>
286
+ <keyword>Macro\.\.\. </keyword>
287
+ <keyword>Macros\.\.\.</keyword>
288
+ <keyword>Magenta</keyword>
289
+ <keyword>Make Band\.\.\.</keyword>
290
+ <keyword>Make Binary</keyword>
291
+ <keyword>Make Composite</keyword>
292
+ <keyword>Make Inverse</keyword>
293
+ <keyword>Make Montage\.\.\.</keyword>
294
+ <keyword>Max\.\.\.</keyword>
295
+ <keyword>Maximum\.\.\.</keyword>
296
+ <keyword>Mean\.\.\.</keyword>
297
+ <keyword>Measure</keyword>
298
+ <keyword>Measure\.\.\.</keyword>
299
+ <keyword>Median\.\.\.</keyword>
300
+ <keyword>Memory &amp; Threads\.\.\.</keyword>
301
+ <keyword>Merge Channels\.\.\.</keyword>
302
+ <keyword>Min\.\.\.</keyword>
303
+ <keyword>Minimum\.\.\.</keyword>
304
+ <keyword>Misc\.\.\.</keyword>
305
+ <keyword>Mitosis \(26MB, 5D stack\)</keyword>
306
+ <keyword>Monitor Memory\.\.\.</keyword>
307
+ <keyword>Montage to Stack\.\.\.</keyword>
308
+ <keyword>Multiply\.\.\.</keyword>
309
+ <keyword>NaN Background</keyword>
310
+ <keyword>Neuron \(1\.6M, 5 channels\)</keyword>
311
+ <keyword>New Hyperstack\.\.\.</keyword>
312
+ <keyword>Next Slice \[&gt;\]</keyword>
313
+ <keyword>Nile Bend \(1\.9M\)</keyword>
314
+ <keyword>North</keyword>
315
+ <keyword>Northeast</keyword>
316
+ <keyword>Northwest</keyword>
317
+ <keyword>OR\.\.\.</keyword>
318
+ <keyword>Open</keyword>
319
+ <keyword>Open Next</keyword>
320
+ <keyword>Open\.\.\.</keyword>
321
+ <keyword>Options\.\.\.</keyword>
322
+ <keyword>Organ of Corti \(2\.8M, 4D stack\)</keyword>
323
+ <keyword>Original Scale</keyword>
324
+ <keyword>Orthogonal Views</keyword>
325
+ <keyword>Out</keyword>
326
+ <keyword>Outline</keyword>
327
+ <keyword>PGM\.\.\.</keyword>
328
+ <keyword>PNG\.\.\.</keyword>
329
+ <keyword>Page Setup\.\.\.</keyword>
330
+ <keyword>Paintbrush Tool Options\.\.\.</keyword>
331
+ <keyword>Particles \(75K\)</keyword>
332
+ <keyword>Paste</keyword>
333
+ <keyword>Paste Control\.\.\.</keyword>
334
+ <keyword>Pencil Tool Options\.\.\.</keyword>
335
+ <keyword>Plot Lanes</keyword>
336
+ <keyword>Plot Profile</keyword>
337
+ <keyword>Plot Z-axis Profile</keyword>
338
+ <keyword>Plugin</keyword>
339
+ <keyword>Plugin Filter</keyword>
340
+ <keyword>Plugin Frame</keyword>
341
+ <keyword>Plugins\.\.\.</keyword>
342
+ <keyword>Point Tool\.\.\.</keyword>
343
+ <keyword>Previous Slice \[&lt;\]</keyword>
344
+ <keyword>Print\.\.\.</keyword>
345
+ <keyword>Profile Plot Options\.\.\.</keyword>
346
+ <keyword>Properties\.\.\.</keyword>
347
+ <keyword>Properties\.\.\. </keyword>
348
+ <keyword>Proxy Settings\.\.\.</keyword>
349
+ <keyword>Put Behind \[tab]</keyword>
350
+ <keyword>Quit</keyword>
351
+ <keyword>RGB Color</keyword>
352
+ <keyword>RGB Stack</keyword>
353
+ <keyword>ROI Manager\.\.\.</keyword>
354
+ <keyword>Raw Data\.\.\.</keyword>
355
+ <keyword>Raw\.\.\.</keyword>
356
+ <keyword>Re-plot Lanes</keyword>
357
+ <keyword>Reciprocal</keyword>
358
+ <keyword>Record\.\.\.</keyword>
359
+ <keyword>Red</keyword>
360
+ <keyword>Red/Green</keyword>
361
+ <keyword>Redisplay Power Spectrum</keyword>
362
+ <keyword>Reduce Dimensionality\.\.\.</keyword>
363
+ <keyword>Reduce\.\.\.</keyword>
364
+ <keyword>Refresh Menus</keyword>
365
+ <keyword>Remove Outliers\.\.\.</keyword>
366
+ <keyword>Remove Overlay</keyword>
367
+ <keyword>Remove\.\.\.</keyword>
368
+ <keyword>Rename\.\.\.</keyword>
369
+ <keyword>Repeat Command</keyword>
370
+ <keyword>Reset</keyword>
371
+ <keyword>Reset\.\.\.</keyword>
372
+ <keyword>Reslice \[/\]\.\.\.</keyword>
373
+ <keyword>Restore Selection</keyword>
374
+ <keyword>Results\.\.\.</keyword>
375
+ <keyword>Results\.\.\. </keyword>
376
+ <keyword>Reverse</keyword>
377
+ <keyword>Revert</keyword>
378
+ <keyword>Rotate 90 Degrees Left</keyword>
379
+ <keyword>Rotate 90 Degrees Right</keyword>
380
+ <keyword>Rotate\.\.\.</keyword>
381
+ <keyword>Rotate\.\.\. </keyword>
382
+ <keyword>Run\.\.\.</keyword>
383
+ <keyword>Salt and Pepper</keyword>
384
+ <keyword>Save</keyword>
385
+ <keyword>Save XY Coordinates\.\.\.</keyword>
386
+ <keyword>Scale Bar\.\.\.</keyword>
387
+ <keyword>Scale\.\.\.</keyword>
388
+ <keyword>Search Website\.\.\.</keyword>
389
+ <keyword>Search\.\.\.</keyword>
390
+ <keyword>Select All</keyword>
391
+ <keyword>Select First Lane</keyword>
392
+ <keyword>Select Next Lane</keyword>
393
+ <keyword>Select None</keyword>
394
+ <keyword>Selection\.\.\.</keyword>
395
+ <keyword>Set Measurements\.\.\.</keyword>
396
+ <keyword>Set Scale\.\.\.</keyword>
397
+ <keyword>Set Slice\.\.\.</keyword>
398
+ <keyword>Set\.\.\.</keyword>
399
+ <keyword>Set\.\.\. </keyword>
400
+ <keyword>Shadows Demo</keyword>
401
+ <keyword>Sharpen</keyword>
402
+ <keyword>Show All</keyword>
403
+ <keyword>Show Circular Masks\.\.\.</keyword>
404
+ <keyword>Show Info\.\.\.</keyword>
405
+ <keyword>Show LUT</keyword>
406
+ <keyword>Show Overlay</keyword>
407
+ <keyword>Size\.\.\.</keyword>
408
+ <keyword>Skeletonize</keyword>
409
+ <keyword>Smooth</keyword>
410
+ <keyword>South</keyword>
411
+ <keyword>Southeast</keyword>
412
+ <keyword>Southwest</keyword>
413
+ <keyword>Specify\.\.\.</keyword>
414
+ <keyword>Spectrum</keyword>
415
+ <keyword>Split Channels</keyword>
416
+ <keyword>Square</keyword>
417
+ <keyword>Square Root</keyword>
418
+ <keyword>Stack From List\.\.\.</keyword>
419
+ <keyword>Stack to Hyperstack\.\.\.</keyword>
420
+ <keyword>Stack to Images</keyword>
421
+ <keyword>Stack to RGB</keyword>
422
+ <keyword>Start Animation \[\\\]</keyword>
423
+ <keyword>Startup Macros\.\.\.</keyword>
424
+ <keyword>Stop Animation</keyword>
425
+ <keyword>Straighten\.\.\.</keyword>
426
+ <keyword>Subtract Background\.\.\.</keyword>
427
+ <keyword>Subtract\.\.\.</keyword>
428
+ <keyword>Summarize</keyword>
429
+ <keyword>Surface Plot\.\.\.</keyword>
430
+ <keyword>Swap Quadrants</keyword>
431
+ <keyword>System Clipboard</keyword>
432
+ <keyword>T1 Head \(2\.4M, 16-bits\)</keyword>
433
+ <keyword>T1 Head Renderings \(736K\)</keyword>
434
+ <keyword>TEM Filter \(112K\)</keyword>
435
+ <keyword>TIFF Virtual Stack\.\.\.</keyword>
436
+ <keyword>Table\.\.\.</keyword>
437
+ <keyword>Text File\.\.\. </keyword>
438
+ <keyword>Text Image\.\.\.</keyword>
439
+ <keyword>Text Image\.\.\. </keyword>
440
+ <keyword>Text Window</keyword>
441
+ <keyword>Text Window\.\.\.</keyword>
442
+ <keyword>Text\.\.\.</keyword>
443
+ <keyword>Threads\.\.\.</keyword>
444
+ <keyword>Threshold\.\.\.</keyword>
445
+ <keyword>Tiff\.\.\.</keyword>
446
+ <keyword>Tile</keyword>
447
+ <keyword>To ROI Manager</keyword>
448
+ <keyword>To Selection</keyword>
449
+ <keyword>Translate\.\.\.</keyword>
450
+ <keyword>Tree Rings \(48K\)</keyword>
451
+ <keyword>URL\.\.\.</keyword>
452
+ <keyword>Ultimate Points</keyword>
453
+ <keyword>Undo</keyword>
454
+ <keyword>Unsharp Mask\.\.\.</keyword>
455
+ <keyword>Update ImageJ\.\.\.</keyword>
456
+ <keyword>Variance\.\.\.</keyword>
457
+ <keyword>View 100%</keyword>
458
+ <keyword>Virtual Stack\.\.\.</keyword>
459
+ <keyword>Voronoi</keyword>
460
+ <keyword>Wand Tool\.\.\.</keyword>
461
+ <keyword>Watershed</keyword>
462
+ <keyword>West</keyword>
463
+ <keyword>Window/Level\.\.\.</keyword>
464
+ <keyword>XOR\.\.\.</keyword>
465
+ <keyword>XY Coordinates\.\.\.</keyword>
466
+ <keyword>Yellow</keyword>
467
+ <keyword>Z Project\.\.\.</keyword>
468
+ <keyword>ZIP\.\.\.</keyword>
469
+ </context>
470
+
471
+ <context id="builtin" style-ref="builtin">
472
+ <keyword>Array\.copy</keyword>
473
+ <keyword>Array\.fill</keyword>
474
+ <keyword>Array\.getStatistics</keyword>
475
+ <keyword>Array\.invert</keyword>
476
+ <keyword>Array\.sort</keyword>
477
+ <keyword>Array\.trim</keyword>
478
+ <keyword>Dialog\.addCheckbox</keyword>
479
+ <keyword>Dialog\.addCheckboxGroup</keyword>
480
+ <keyword>Dialog\.addChoice</keyword>
481
+ <keyword>Dialog\.addHelp</keyword>
482
+ <keyword>Dialog\.addMessage</keyword>
483
+ <keyword>Dialog\.addNumber</keyword>
484
+ <keyword>Dialog\.addString</keyword>
485
+ <keyword>Dialog\.create</keyword>
486
+ <keyword>Dialog\.getCheckbox</keyword>
487
+ <keyword>Dialog\.getChoice</keyword>
488
+ <keyword>Dialog\.getNumber</keyword>
489
+ <keyword>Dialog\.getString</keyword>
490
+ <keyword>Dialog\.show</keyword>
491
+ <keyword>Ext\.(?=[a-zA-Z0-9])</keyword>
492
+ <keyword>File\.append</keyword>
493
+ <keyword>File\.close</keyword>
494
+ <keyword>File\.dateLastModified</keyword>
495
+ <keyword>File\.delete</keyword>
496
+ <keyword>File\.directory</keyword>
497
+ <keyword>File\.exists</keyword>
498
+ <keyword>File\.getName</keyword>
499
+ <keyword>File\.getParent</keyword>
500
+ <keyword>File\.isDirectory</keyword>
501
+ <keyword>File\.lastModified</keyword>
502
+ <keyword>File\.length</keyword>
503
+ <keyword>File\.makeDirectory</keyword>
504
+ <keyword>File\.name</keyword>
505
+ <keyword>File\.nameWithoutExtension</keyword>
506
+ <keyword>File\.open</keyword>
507
+ <keyword>File\.openAsRawString</keyword>
508
+ <keyword>File\.openAsString</keyword>
509
+ <keyword>File\.openDialog</keyword>
510
+ <keyword>File\.openUrlAsString</keyword>
511
+ <keyword>File\.rename</keyword>
512
+ <keyword>File\.saveString</keyword>
513
+ <keyword>File\.separator</keyword>
514
+ <keyword>Fit\.doFit</keyword>
515
+ <keyword>Fit\.f</keyword>
516
+ <keyword>Fit\.getEquation</keyword>
517
+ <keyword>Fit\.logResults</keyword>
518
+ <keyword>Fit\.nEquations</keyword>
519
+ <keyword>Fit\.nParams</keyword>
520
+ <keyword>Fit\.p</keyword>
521
+ <keyword>Fit\.plot</keyword>
522
+ <keyword>Fit\.rSquared</keyword>
523
+ <keyword>Fit\.showDialog</keyword>
524
+ <keyword>IJ\.currentMemory</keyword>
525
+ <keyword>IJ\.deleteRows</keyword>
526
+ <keyword>IJ\.freeMemory</keyword>
527
+ <keyword>IJ\.getToolName</keyword>
528
+ <keyword>IJ\.maxMemory</keyword>
529
+ <keyword>IJ\.redirectErrorMessages</keyword>
530
+ <keyword>List\.clear</keyword>
531
+ <keyword>List\.get</keyword>
532
+ <keyword>List\.getList</keyword>
533
+ <keyword>List\.getValue</keyword>
534
+ <keyword>List\.set</keyword>
535
+ <keyword>List\.setCommands</keyword>
536
+ <keyword>List\.setList</keyword>
537
+ <keyword>List\.size</keyword>
538
+ <keyword>Overlay\.add</keyword>
539
+ <keyword>Overlay\.drawEllipse</keyword>
540
+ <keyword>Overlay\.drawLine</keyword>
541
+ <keyword>Overlay\.drawRect</keyword>
542
+ <keyword>Overlay\.drawString</keyword>
543
+ <keyword>Overlay\.hide</keyword>
544
+ <keyword>Overlay\.lineTo</keyword>
545
+ <keyword>Overlay\.moveTo</keyword>
546
+ <keyword>Overlay\.remove</keyword>
547
+ <keyword>Overlay\.removeSelection</keyword>
548
+ <keyword>Overlay\.show</keyword>
549
+ <keyword>Overlay\.size</keyword>
550
+ <keyword>PI</keyword>
551
+ <keyword>Plot\.add</keyword>
552
+ <keyword>Plot\.addText</keyword>
553
+ <keyword>Plot\.create</keyword>
554
+ <keyword>Plot\.drawLine</keyword>
555
+ <keyword>Plot\.getValues</keyword>
556
+ <keyword>Plot\.setColor</keyword>
557
+ <keyword>Plot\.setJustification</keyword>
558
+ <keyword>Plot\.setLimits</keyword>
559
+ <keyword>Plot\.setLineWidth</keyword>
560
+ <keyword>Plot\.show</keyword>
561
+ <keyword>Plot\.update</keyword>
562
+ <keyword>Stack\.getActiveChannels</keyword>
563
+ <keyword>Stack\.getDimensions</keyword>
564
+ <keyword>Stack\.getDisplayMode</keyword>
565
+ <keyword>Stack\.getFrameRate</keyword>
566
+ <keyword>Stack\.getPosition</keyword>
567
+ <keyword>Stack\.getStatistics</keyword>
568
+ <keyword>Stack\.isHyperstack</keyword>
569
+ <keyword>Stack\.setActiveChannels</keyword>
570
+ <keyword>Stack\.setChannel</keyword>
571
+ <keyword>Stack\.setDimensions</keyword>
572
+ <keyword>Stack\.setDisplayMode</keyword>
573
+ <keyword>Stack\.setFrame</keyword>
574
+ <keyword>Stack\.setFrameRate</keyword>
575
+ <keyword>Stack\.setPosition</keyword>
576
+ <keyword>Stack\.setSlice</keyword>
577
+ <keyword>Stack\.setTUnit</keyword>
578
+ <keyword>Stack\.setZUnit</keyword>
579
+ <keyword>Stack\.swap</keyword>
580
+ <keyword>String\.append</keyword>
581
+ <keyword>String\.buffer</keyword>
582
+ <keyword>String\.copy</keyword>
583
+ <keyword>String\.copyResults</keyword>
584
+ <keyword>String\.paste</keyword>
585
+ <keyword>String\.resetBuffer</keyword>
586
+ <keyword>abs</keyword>
587
+ <keyword>acos</keyword>
588
+ <keyword>asin</keyword>
589
+ <keyword>atan</keyword>
590
+ <keyword>atan2</keyword>
591
+ <keyword>autoUpdate</keyword>
592
+ <keyword>beep</keyword>
593
+ <keyword>bitDepth</keyword>
594
+ <keyword>calibrate</keyword>
595
+ <keyword>call</keyword>
596
+ <keyword>changeValues</keyword>
597
+ <keyword>charCodeAt</keyword>
598
+ <keyword>close</keyword>
599
+ <keyword>cos</keyword>
600
+ <keyword>d2s</keyword>
601
+ <keyword>doCommand</keyword>
602
+ <keyword>doWand</keyword>
603
+ <keyword>drawLine</keyword>
604
+ <keyword>drawOval</keyword>
605
+ <keyword>drawRect</keyword>
606
+ <keyword>drawString</keyword>
607
+ <keyword>dump</keyword>
608
+ <keyword>endsWith</keyword>
609
+ <keyword>eval</keyword>
610
+ <keyword>exec</keyword>
611
+ <keyword>exit</keyword>
612
+ <keyword>exp</keyword>
613
+ <keyword>fill</keyword>
614
+ <keyword>fillOval</keyword>
615
+ <keyword>fillRect</keyword>
616
+ <keyword>floodFill</keyword>
617
+ <keyword>floor</keyword>
618
+ <keyword>fromCharCode</keyword>
619
+ <keyword>getArgument</keyword>
620
+ <keyword>getBoolean</keyword>
621
+ <keyword>getBoundingRect</keyword>
622
+ <keyword>getCursorLoc</keyword>
623
+ <keyword>getDateAndTime</keyword>
624
+ <keyword>getDimensions</keyword>
625
+ <keyword>getDirectory</keyword>
626
+ <keyword>getFileList</keyword>
627
+ <keyword>getHeight</keyword>
628
+ <keyword>getHistogram</keyword>
629
+ <keyword>getImageID</keyword>
630
+ <keyword>getImageInfo</keyword>
631
+ <keyword>getInfo</keyword>
632
+ <keyword>getLine</keyword>
633
+ <keyword>getList</keyword>
634
+ <keyword>getLocationAndSize</keyword>
635
+ <keyword>getLut</keyword>
636
+ <keyword>getMetadata</keyword>
637
+ <keyword>getMinAndMax</keyword>
638
+ <keyword>getNumber</keyword>
639
+ <keyword>getPixel</keyword>
640
+ <keyword>getPixelSize</keyword>
641
+ <keyword>getProfile</keyword>
642
+ <keyword>getRawStatistics</keyword>
643
+ <keyword>getResult</keyword>
644
+ <keyword>getResultLabel</keyword>
645
+ <keyword>getSelectionBounds</keyword>
646
+ <keyword>getSelectionCoordinates</keyword>
647
+ <keyword>getSliceNumber</keyword>
648
+ <keyword>getStatistics</keyword>
649
+ <keyword>getString</keyword>
650
+ <keyword>getStringWidth</keyword>
651
+ <keyword>getThreshold</keyword>
652
+ <keyword>getTime</keyword>
653
+ <keyword>getTitle</keyword>
654
+ <keyword>getValue</keyword>
655
+ <keyword>getVersion</keyword>
656
+ <keyword>getVoxelSize</keyword>
657
+ <keyword>getWidth</keyword>
658
+ <keyword>getZoom</keyword>
659
+ <keyword>imageCalculator</keyword>
660
+ <keyword>indexOf</keyword>
661
+ <keyword>is</keyword>
662
+ <keyword>isActive</keyword>
663
+ <keyword>isKeyDown</keyword>
664
+ <keyword>isNaN</keyword>
665
+ <keyword>isOpen</keyword>
666
+ <keyword>lastIndexOf</keyword>
667
+ <keyword>lengthOf</keyword>
668
+ <keyword>lineTo</keyword>
669
+ <keyword>log</keyword>
670
+ <keyword>makeLine</keyword>
671
+ <keyword>makeOval</keyword>
672
+ <keyword>makePoint</keyword>
673
+ <keyword>makePolygon</keyword>
674
+ <keyword>makeRectangle</keyword>
675
+ <keyword>makeSelection</keyword>
676
+ <keyword>makeText</keyword>
677
+ <keyword>matches</keyword>
678
+ <keyword>maxOf</keyword>
679
+ <keyword>minOf</keyword>
680
+ <keyword>moveTo</keyword>
681
+ <keyword>nImages</keyword>
682
+ <keyword>nResults</keyword>
683
+ <keyword>nSlices</keyword>
684
+ <keyword>newArray</keyword>
685
+ <keyword>newImage</keyword>
686
+ <keyword>newMenu</keyword>
687
+ <keyword>open</keyword>
688
+ <keyword>parseFloat</keyword>
689
+ <keyword>parseInt</keyword>
690
+ <keyword>pow</keyword>
691
+ <keyword>print</keyword>
692
+ <keyword>random</keyword>
693
+ <keyword>rename</keyword>
694
+ <keyword>replace</keyword>
695
+ <keyword>requires</keyword>
696
+ <keyword>reset</keyword>
697
+ <keyword>resetMinAndMax</keyword>
698
+ <keyword>resetThreshold</keyword>
699
+ <keyword>restorePreviousTool</keyword>
700
+ <keyword>restoreSettings</keyword>
701
+ <keyword>roiManager</keyword>
702
+ <keyword>round</keyword>
703
+ <keyword>run</keyword>
704
+ <keyword>runMacro</keyword>
705
+ <keyword>save</keyword>
706
+ <keyword>saveAs</keyword>
707
+ <keyword>saveSettings</keyword>
708
+ <keyword>screenHeight</keyword>
709
+ <keyword>screenWidth</keyword>
710
+ <keyword>selectImage</keyword>
711
+ <keyword>selectWindow</keyword>
712
+ <keyword>selectionContains</keyword>
713
+ <keyword>selectionName</keyword>
714
+ <keyword>selectionType</keyword>
715
+ <keyword>setAutoThreshold</keyword>
716
+ <keyword>setBackgroundColor</keyword>
717
+ <keyword>setBatchMode</keyword>
718
+ <keyword>setColor</keyword>
719
+ <keyword>setFont</keyword>
720
+ <keyword>setForegroundColor</keyword>
721
+ <keyword>setJustification</keyword>
722
+ <keyword>setKeyDown</keyword>
723
+ <keyword>setLineWidth</keyword>
724
+ <keyword>setLocation</keyword>
725
+ <keyword>setLut</keyword>
726
+ <keyword>setMetadata</keyword>
727
+ <keyword>setMinAndMax</keyword>
728
+ <keyword>setOption</keyword>
729
+ <keyword>setPasteMode</keyword>
730
+ <keyword>setPixel</keyword>
731
+ <keyword>setRGBWeights</keyword>
732
+ <keyword>setResult</keyword>
733
+ <keyword>setSelectionLocation</keyword>
734
+ <keyword>setSelectionName</keyword>
735
+ <keyword>setSlice</keyword>
736
+ <keyword>setThreshold</keyword>
737
+ <keyword>setTool</keyword>
738
+ <keyword>setVoxelSize</keyword>
739
+ <keyword>setZCoordinate</keyword>
740
+ <keyword>setupUndo</keyword>
741
+ <keyword>showMessage</keyword>
742
+ <keyword>showMessageWithCancel</keyword>
743
+ <keyword>showProgress</keyword>
744
+ <keyword>showStatus</keyword>
745
+ <keyword>sin</keyword>
746
+ <keyword>snapshot</keyword>
747
+ <keyword>split</keyword>
748
+ <keyword>sqrt</keyword>
749
+ <keyword>startsWith</keyword>
750
+ <keyword>substring</keyword>
751
+ <keyword>tan</keyword>
752
+ <keyword>toBinary</keyword>
753
+ <keyword>toHex</keyword>
754
+ <keyword>toLowerCase</keyword>
755
+ <keyword>toString</keyword>
756
+ <keyword>toUpperCase</keyword>
757
+ <keyword>toolID</keyword>
758
+ <keyword>updateDisplay</keyword>
759
+ <keyword>updateResults</keyword>
760
+ <keyword>wait</keyword>
761
+ <keyword>waitForUser</keyword>
762
+ </context>
763
+
764
+ <context id="imagej" class="no-spell-check">
765
+ <include>
766
+ <context ref="def:c-like-comment"/>
767
+ <context ref="def:c-like-comment-multiline"/>
768
+ <context ref="def:c-like-close-comment-outside-comment"/>
769
+ <context ref="double-quoted-string"/>
770
+ <context ref="single-quoted-string"/>
771
+ <context ref="operator"/>
772
+ <context ref="storage-type"/>
773
+ <context ref="boolean"/>
774
+ <context ref="keyword"/>
775
+ <context ref="command"/>
776
+ <context ref="builtin"/>
777
+ <context ref="def:float"/>
778
+ <context ref="def:decimal"/>
779
+ <context ref="def:octal"/>
780
+ <context ref="def:hexadecimal"/>
781
+ </include>
782
+ </context>
783
+ </definitions>
784
+ </language>