gtksourceview3 3.0.7-x64-mingw32 → 3.0.8-x64-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (318) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -1
  3. data/vendor/local/bin/libgtksourceview-3.0-1.dll +0 -0
  4. data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +4 -0
  5. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +4 -0
  6. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceautocleanups.h +52 -0
  7. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +68 -1
  8. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +18 -5
  9. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +8 -2
  10. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +9 -6
  11. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +4 -1
  12. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +36 -10
  13. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +27 -1
  14. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceencoding.h +28 -11
  15. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefile.h +36 -1
  16. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefileloader.h +15 -1
  17. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefilesaver.h +18 -1
  18. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +9 -3
  19. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +39 -1
  20. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +10 -2
  21. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +6 -0
  22. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +11 -0
  23. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +8 -4
  24. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemap.h +67 -0
  25. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +6 -0
  26. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +18 -2
  27. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +54 -8
  28. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchcontext.h +20 -0
  29. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchsettings.h +12 -0
  30. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +2 -0
  31. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +9 -2
  32. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschemechooser.h +8 -6
  33. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschemechooserbutton.h +9 -6
  34. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschemechooserwidget.h +9 -6
  35. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +10 -0
  36. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetag.h +51 -0
  37. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +2 -0
  38. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +13 -0
  39. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceutils.h +4 -0
  40. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceversion.h +493 -0
  41. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +21 -0
  42. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +47 -5
  43. data/vendor/local/lib/girepository-1.0/GtkSource-3.0.typelib +0 -0
  44. data/vendor/local/lib/libgtksourceview-3.0.dll.a +0 -0
  45. data/vendor/local/lib/libgtksourceview-3.0.la +5 -5
  46. data/vendor/local/lib/pkgconfig/gtksourceview-3.0.pc +4 -4
  47. data/vendor/local/share/gir-1.0/GtkSource-3.0.gir +880 -151
  48. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +475 -261
  49. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +104 -108
  50. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +31 -34
  51. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +42 -44
  52. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +64 -39
  53. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +171 -75
  54. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +164 -77
  55. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionWords.html +29 -31
  56. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceEncoding.html +65 -45
  57. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFile.html +259 -61
  58. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileLoader.html +99 -96
  59. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileSaver.html +88 -94
  60. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +44 -46
  61. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRenderer.html +187 -195
  62. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html +37 -39
  63. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererText.html +91 -20
  64. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +88 -93
  65. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +47 -50
  66. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMap.html +254 -0
  67. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +39 -42
  68. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +89 -91
  69. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +249 -277
  70. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchContext.html +158 -169
  71. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchSettings.html +69 -75
  72. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +83 -40
  73. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +46 -49
  74. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeChooser.html +9 -10
  75. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeChooserButton.html +13 -15
  76. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeChooserWidget.html +12 -14
  77. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +33 -36
  78. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceTag.html +177 -0
  79. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +40 -43
  80. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +328 -252
  81. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +6 -10
  82. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-2-0.html +62 -0
  83. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-2-10.html +90 -0
  84. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-2-12.html +34 -0
  85. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-2-2.html +270 -0
  86. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-2-4.html +38 -0
  87. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-2-8.html +50 -0
  88. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +4 -5
  89. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-10.html +2 -3
  90. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-12.html +2 -3
  91. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-14.html +2 -3
  92. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-16.html +4 -5
  93. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-18.html +114 -0
  94. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-20.html +130 -0
  95. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-4.html +2 -3
  96. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +8 -5
  97. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +214 -3
  98. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch01.html +2 -3
  99. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch02.html +2 -3
  100. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch03.html +2 -3
  101. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch04.html +2 -3
  102. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch05.html +2 -3
  103. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch06.html +2 -3
  104. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch07.html +2 -3
  105. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch08.html +13 -5
  106. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/{pt02.html → ch09.html} +9 -13
  107. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html +19 -22
  108. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-Version-Information.html +472 -0
  109. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +95 -13
  110. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.html +21 -6
  111. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +10 -8
  112. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +6 -7
  113. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/object-tree.html +16 -14
  114. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/pt01.html +11 -3
  115. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +37 -15
  116. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +9 -6
  117. data/vendor/local/share/gtksourceview-3.0/language-specs/bibtex.lang +9 -0
  118. data/vendor/local/share/gtksourceview-3.0/language-specs/c.lang +14 -2
  119. data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +11 -3
  120. data/vendor/local/share/gtksourceview-3.0/language-specs/cmake.lang +18 -12
  121. data/vendor/local/share/gtksourceview-3.0/language-specs/cpphdr.lang +42 -0
  122. data/vendor/local/share/gtksourceview-3.0/language-specs/csharp.lang +5 -0
  123. data/vendor/local/share/gtksourceview-3.0/language-specs/css.lang +418 -14
  124. data/vendor/local/share/gtksourceview-3.0/language-specs/csv.lang +74 -0
  125. data/vendor/local/share/gtksourceview-3.0/language-specs/desktop.lang +6 -6
  126. data/vendor/local/share/gtksourceview-3.0/language-specs/diff.lang +2 -2
  127. data/vendor/local/share/gtksourceview-3.0/language-specs/fsharp.lang +1 -0
  128. data/vendor/local/share/gtksourceview-3.0/language-specs/gdb-log.lang +1 -1
  129. data/vendor/local/share/gtksourceview-3.0/language-specs/html.lang +6 -0
  130. data/vendor/local/share/gtksourceview-3.0/language-specs/imagej.lang +1 -1
  131. data/vendor/local/share/gtksourceview-3.0/language-specs/jade.lang +250 -0
  132. data/vendor/local/share/gtksourceview-3.0/language-specs/javascript.lang +14 -1
  133. data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +1 -1
  134. data/vendor/local/share/gtksourceview-3.0/language-specs/latex.lang +15 -15
  135. data/vendor/local/share/gtksourceview-3.0/language-specs/matlab.lang +8 -30
  136. data/vendor/local/share/gtksourceview-3.0/language-specs/meson.lang +103 -0
  137. data/vendor/local/share/gtksourceview-3.0/language-specs/ocaml.lang +1 -1
  138. data/vendor/local/share/gtksourceview-3.0/language-specs/octave.lang +208 -145
  139. data/vendor/local/share/gtksourceview-3.0/language-specs/pig.lang +12 -2
  140. data/vendor/local/share/gtksourceview-3.0/language-specs/protobuf.lang +52 -20
  141. data/vendor/local/share/gtksourceview-3.0/language-specs/python3.lang +2 -0
  142. data/vendor/local/share/gtksourceview-3.0/language-specs/rpmspec.lang +2 -0
  143. data/vendor/local/share/gtksourceview-3.0/language-specs/rust.lang +292 -0
  144. data/vendor/local/share/gtksourceview-3.0/language-specs/sh.lang +20 -2
  145. data/vendor/local/share/gtksourceview-3.0/language-specs/vala.lang +37 -0
  146. data/vendor/local/share/gtksourceview-3.0/language-specs/vbnet.lang +3 -0
  147. data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +3 -3
  148. data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +2 -2
  149. data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +3 -3
  150. data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +5 -3
  151. data/vendor/local/share/gtksourceview-3.0/styles/solarized-dark.xml +2 -1
  152. data/vendor/local/share/gtksourceview-3.0/styles/solarized-light.xml +1 -1
  153. data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +1 -3
  154. data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +3 -4
  155. data/vendor/local/share/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  156. data/vendor/local/share/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  157. data/vendor/local/share/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  158. data/vendor/local/share/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  159. data/vendor/local/share/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  160. data/vendor/local/share/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  161. data/vendor/local/share/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  162. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  163. data/vendor/local/share/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  164. data/vendor/local/share/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  165. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  166. data/vendor/local/share/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  167. data/vendor/local/share/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  168. data/vendor/local/share/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  169. data/vendor/local/share/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  170. data/vendor/local/share/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  171. data/vendor/local/share/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  172. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  173. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  174. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  175. data/vendor/local/share/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  176. data/vendor/local/share/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  177. data/vendor/local/share/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  178. data/vendor/local/share/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  179. data/vendor/local/share/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  180. data/vendor/local/share/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  181. data/vendor/local/share/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  182. data/vendor/local/share/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  183. data/vendor/local/share/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  184. data/vendor/local/share/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  185. data/vendor/local/share/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  186. data/vendor/local/share/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  187. data/vendor/local/share/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  188. data/vendor/local/share/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  189. data/vendor/local/share/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  190. data/vendor/local/share/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  191. data/vendor/local/share/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  192. data/vendor/local/share/locale/kk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  193. data/vendor/local/share/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  194. data/vendor/local/share/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  195. data/vendor/local/share/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  196. data/vendor/local/share/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  197. data/vendor/local/share/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  198. data/vendor/local/share/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  199. data/vendor/local/share/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  200. data/vendor/local/share/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  201. data/vendor/local/share/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  202. data/vendor/local/share/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  203. data/vendor/local/share/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  204. data/vendor/local/share/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  205. data/vendor/local/share/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  206. data/vendor/local/share/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  207. data/vendor/local/share/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  208. data/vendor/local/share/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  209. data/vendor/local/share/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  210. data/vendor/local/share/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  211. data/vendor/local/share/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  212. data/vendor/local/share/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  213. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  214. data/vendor/local/share/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  215. data/vendor/local/share/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  216. data/vendor/local/share/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  217. data/vendor/local/share/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  218. data/vendor/local/share/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  219. data/vendor/local/share/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  220. data/vendor/local/share/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  221. data/vendor/local/share/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  222. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  223. data/vendor/local/share/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  224. data/vendor/local/share/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  225. data/vendor/local/share/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  226. data/vendor/local/share/locale/tg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  227. data/vendor/local/share/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  228. data/vendor/local/share/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  229. data/vendor/local/share/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  230. data/vendor/local/share/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  231. data/vendor/local/share/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  232. data/vendor/local/share/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  233. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  234. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  235. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  236. metadata +109 -90
  237. data/vendor/local/lib/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  238. data/vendor/local/lib/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  239. data/vendor/local/lib/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  240. data/vendor/local/lib/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  241. data/vendor/local/lib/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  242. data/vendor/local/lib/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  243. data/vendor/local/lib/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  244. data/vendor/local/lib/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  245. data/vendor/local/lib/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  246. data/vendor/local/lib/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  247. data/vendor/local/lib/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  248. data/vendor/local/lib/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  249. data/vendor/local/lib/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  250. data/vendor/local/lib/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  251. data/vendor/local/lib/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  252. data/vendor/local/lib/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  253. data/vendor/local/lib/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  254. data/vendor/local/lib/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  255. data/vendor/local/lib/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  256. data/vendor/local/lib/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  257. data/vendor/local/lib/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  258. data/vendor/local/lib/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  259. data/vendor/local/lib/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  260. data/vendor/local/lib/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  261. data/vendor/local/lib/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  262. data/vendor/local/lib/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  263. data/vendor/local/lib/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  264. data/vendor/local/lib/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  265. data/vendor/local/lib/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  266. data/vendor/local/lib/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  267. data/vendor/local/lib/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  268. data/vendor/local/lib/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  269. data/vendor/local/lib/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  270. data/vendor/local/lib/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  271. data/vendor/local/lib/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  272. data/vendor/local/lib/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  273. data/vendor/local/lib/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  274. data/vendor/local/lib/locale/kk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  275. data/vendor/local/lib/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  276. data/vendor/local/lib/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  277. data/vendor/local/lib/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  278. data/vendor/local/lib/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  279. data/vendor/local/lib/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  280. data/vendor/local/lib/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  281. data/vendor/local/lib/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  282. data/vendor/local/lib/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  283. data/vendor/local/lib/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  284. data/vendor/local/lib/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  285. data/vendor/local/lib/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  286. data/vendor/local/lib/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  287. data/vendor/local/lib/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  288. data/vendor/local/lib/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  289. data/vendor/local/lib/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  290. data/vendor/local/lib/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  291. data/vendor/local/lib/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  292. data/vendor/local/lib/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  293. data/vendor/local/lib/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  294. data/vendor/local/lib/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  295. data/vendor/local/lib/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  296. data/vendor/local/lib/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  297. data/vendor/local/lib/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  298. data/vendor/local/lib/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  299. data/vendor/local/lib/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  300. data/vendor/local/lib/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  301. data/vendor/local/lib/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  302. data/vendor/local/lib/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  303. data/vendor/local/lib/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  304. data/vendor/local/lib/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  305. data/vendor/local/lib/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  306. data/vendor/local/lib/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  307. data/vendor/local/lib/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  308. data/vendor/local/lib/locale/tg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  309. data/vendor/local/lib/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  310. data/vendor/local/lib/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  311. data/vendor/local/lib/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  312. data/vendor/local/lib/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  313. data/vendor/local/lib/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  314. data/vendor/local/lib/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  315. data/vendor/local/lib/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  316. data/vendor/local/lib/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  317. data/vendor/local/lib/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  318. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +0 -987
@@ -73,7 +73,8 @@
73
73
  [^/]*
74
74
  \/
75
75
  \%{regex-opts}
76
- ([),;.]|\s|$)
76
+ \s*
77
+ ([),;.\/\]:}]|$)
77
78
  )</start>
78
79
  <end>\/\%{regex-opts}</end>
79
80
  <include>
@@ -308,6 +309,17 @@
308
309
  <keyword>static</keyword>
309
310
  </context>
310
311
 
312
+ <context id="template-string" style-ref="string">
313
+ <start>`</start>
314
+ <end>`</end>
315
+ <include>
316
+ <context id="template-expression" style-ref="function">
317
+ <start>\$\{</start>
318
+ <end>\}</end>
319
+ </context>
320
+ </include>
321
+ </context>
322
+
311
323
  <!--main context-->
312
324
  <context id="js" class="no-spell-check">
313
325
  <include>
@@ -316,6 +328,7 @@
316
328
  <context ref="def:c-like-close-comment-outside-comment"/>
317
329
  <context ref="def:string" style-ref="string"/>
318
330
  <context ref="def:single-quoted-string" style-ref="string"/>
331
+ <context ref="template-string"/>
319
332
  <context ref="def:float"/>
320
333
  <context ref="def:decimal"/>
321
334
  <context ref="def:octal"/>
@@ -76,7 +76,7 @@
76
76
  </include>
77
77
  </context>
78
78
 
79
- <context id="string" style-ref="string" end-at-line-end="true">
79
+ <context id="string" style-ref="string" end-at-line-end="true" class="string" class-disabled="no-spell-check">
80
80
  <start>"</start>
81
81
  <end>"</end>
82
82
  <include>
@@ -290,7 +290,7 @@
290
290
  </context>
291
291
 
292
292
  <context id="generic-command" style-ref="command" class="no-spell-check" extend-parent="false">
293
- <match>\\[a-zA-Z@]+\*?</match>
293
+ <match>\\\@?[[:alnum:]]+\*?</match>
294
294
  </context>
295
295
 
296
296
  <context id="specific-commands">
@@ -377,71 +377,71 @@
377
377
 
378
378
  <context id="headings">
379
379
  <include>
380
- <context id="part" style-inside="true" style-ref="part" end-at-line-end="true">
380
+ <context id="part" style-inside="true" style-ref="part" end-at-line-end="true" class-disabled="no-spell-check">
381
381
  <start>(\\part\*?)\{</start>
382
382
  <end>\}</end>
383
383
  <include>
384
- <context sub-pattern="1" where="start" style-ref="common-commands"/>
384
+ <context sub-pattern="1" where="start" style-ref="common-commands" class="no-spell-check"/>
385
385
  <context ref="curly-braces-pair"/>
386
386
  <context ref="latex"/>
387
387
  </include>
388
388
  </context>
389
389
 
390
- <context id="chapter" style-inside="true" style-ref="chapter" end-at-line-end="true">
390
+ <context id="chapter" style-inside="true" style-ref="chapter" end-at-line-end="true" class-disabled="no-spell-check">
391
391
  <start>(\\chapter\*?)\{</start>
392
392
  <end>\}</end>
393
393
  <include>
394
- <context sub-pattern="1" where="start" style-ref="common-commands"/>
394
+ <context sub-pattern="1" where="start" style-ref="common-commands" class="no-spell-check"/>
395
395
  <context ref="curly-braces-pair"/>
396
396
  <context ref="latex"/>
397
397
  </include>
398
398
  </context>
399
399
 
400
- <context id="section" style-inside="true" style-ref="section" end-at-line-end="true">
400
+ <context id="section" style-inside="true" style-ref="section" end-at-line-end="true" class-disabled="no-spell-check">
401
401
  <start>(\\section\*?)\{</start>
402
402
  <end>\}</end>
403
403
  <include>
404
- <context sub-pattern="1" where="start" style-ref="common-commands"/>
404
+ <context sub-pattern="1" where="start" style-ref="common-commands" class="no-spell-check"/>
405
405
  <context ref="curly-braces-pair"/>
406
406
  <context ref="latex"/>
407
407
  </include>
408
408
  </context>
409
409
 
410
- <context id="subsection" style-inside="true" style-ref="subsection" end-at-line-end="true">
410
+ <context id="subsection" style-inside="true" style-ref="subsection" end-at-line-end="true" class-disabled="no-spell-check">
411
411
  <start>(\\subsection\*?)\{</start>
412
412
  <end>\}</end>
413
413
  <include>
414
- <context sub-pattern="1" where="start" style-ref="common-commands"/>
414
+ <context sub-pattern="1" where="start" style-ref="common-commands" class="no-spell-check"/>
415
415
  <context ref="curly-braces-pair"/>
416
416
  <context ref="latex"/>
417
417
  </include>
418
418
  </context>
419
419
 
420
- <context id="subsubsection" style-inside="true" style-ref="subsubsection" end-at-line-end="true">
420
+ <context id="subsubsection" style-inside="true" style-ref="subsubsection" end-at-line-end="true" class-disabled="no-spell-check">
421
421
  <start>(\\subsubsection\*?)\{</start>
422
422
  <end>\}</end>
423
423
  <include>
424
- <context sub-pattern="1" where="start" style-ref="common-commands"/>
424
+ <context sub-pattern="1" where="start" style-ref="common-commands" class="no-spell-check"/>
425
425
  <context ref="curly-braces-pair"/>
426
426
  <context ref="latex"/>
427
427
  </include>
428
428
  </context>
429
429
 
430
- <context id="paragraph" style-inside="true" style-ref="paragraph" end-at-line-end="true">
430
+ <context id="paragraph" style-inside="true" style-ref="paragraph" end-at-line-end="true" class-disabled="no-spell-check">
431
431
  <start>(\\paragraph\*?)\{</start>
432
432
  <end>\}</end>
433
433
  <include>
434
- <context sub-pattern="1" where="start" style-ref="common-commands"/>
434
+ <context sub-pattern="1" where="start" style-ref="common-commands" class="no-spell-check"/>
435
435
  <context ref="curly-braces-pair"/>
436
436
  <context ref="latex"/>
437
437
  </include>
438
438
  </context>
439
439
 
440
- <context id="subparagraph" style-inside="true" style-ref="subparagraph" end-at-line-end="true">
440
+ <context id="subparagraph" style-inside="true" style-ref="subparagraph" end-at-line-end="true" class-disabled="no-spell-check">
441
441
  <start>(\\subparagraph\*?)\{</start>
442
442
  <end>\}</end>
443
443
  <include>
444
- <context sub-pattern="1" where="start" style-ref="common-commands"/>
444
+ <context sub-pattern="1" where="start" style-ref="common-commands" class="no-spell-check"/>
445
445
  <context ref="curly-braces-pair"/>
446
446
  <context ref="latex"/>
447
447
  </include>
@@ -6,7 +6,7 @@
6
6
  Authors: Søren Hauberg, Muthiah Annamalai, Carnë Draug
7
7
  Copyright (C) 2006 Søren Hauberg <soren@hauberg.org>
8
8
  Copyright (C) 2006 Muthiah Annamalai <gnumuthu@users.sf.net>
9
- Copyright (C) 2010 Carnë Draug <carandraug+dev@gmail.com>
9
+ Copyright (C) 2010-2015 Carnë Draug <carandraug+dev@gmail.com>
10
10
 
11
11
  GtkSourceView is free software; you can redistribute it and/or
12
12
  modify it under the terms of the GNU Lesser General Public
@@ -45,7 +45,8 @@
45
45
 
46
46
  <definitions>
47
47
 
48
- <context id="block-comment" style-ref="comment" class="comment" class-disabled="no-spell-check">
48
+ <context id="block-comment" style-ref="comment" class="comment"
49
+ class-disabled="no-spell-check">
49
50
  <start>^\s*%{\s*$</start>
50
51
  <end>^\s*%}\s*$</end>
51
52
  <include>
@@ -54,34 +55,14 @@
54
55
  </include>
55
56
  </context>
56
57
 
57
- <context id="line-comment" style-ref="comment" end-at-line-end="true" class="comment" class-disabled="no-spell-check">
58
+ <context id="line-comment" style-ref="comment" end-at-line-end="true"
59
+ class="comment" class-disabled="no-spell-check">
58
60
  <start>%</start>
59
61
  <include>
60
62
  <context ref="def:in-comment"/>
61
63
  </include>
62
64
  </context>
63
65
 
64
- <context id="keyword">
65
- <include>
66
- <context style-ref="keyword">
67
- <!--Only Matlab specific keywords. -->
68
- <keyword>classdef</keyword>
69
- <keyword>enumeration</keyword>
70
- <keyword>events</keyword>
71
- <keyword>methods</keyword>
72
- <keyword>properties</keyword>
73
- </context>
74
- <!--
75
- Octave and Matlab have already implemented most of each others keywords
76
- but not all. Both Octave and Matlab are still missing keywords from the
77
- other. As such, this block only has the keywords already implemented in
78
- both. When adding a new keyword, make sure you place it on the right
79
- place.
80
- -->
81
- <context ref="octave:octave-matlab-keyword" style-ref="keyword"/>
82
- </include>
83
- </context>
84
-
85
66
  <!-- FIXME: Matlab probably has much more builtin functions
86
67
  this is just the list that was already in the lang file before
87
68
  being split from octave.lang -->
@@ -156,13 +137,10 @@
156
137
  <context ref="octave:function-handle"/>
157
138
  <context ref="octave:storage-type"/>
158
139
  <context ref="octave:boolean"/>
159
- <context ref="octave:decimal"/>
160
- <context ref="octave:floating-point-number"/>
161
- <context ref="octave:octal-number"/>
162
- <context ref="octave:hex-number"/>
163
- <context ref="octave:variables"/>
140
+ <context ref="def:decimal"/>
141
+ <context ref="def:float"/>
164
142
  <context ref="octave:reserved-constant"/>
165
- <context ref="keyword"/>
143
+ <context ref="octave:octave-matlab-keyword"/>
166
144
  <context ref="builtin"/>
167
145
  </include>
168
146
  </context>
@@ -0,0 +1,103 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+
4
+ This file is part of GtkSourceView
5
+
6
+ Copyright (C) 2015 Jussi Pakkanen <jpakkane@gmail.com>
7
+ Copyright (C) 2015 Igor Gnatenko <ignatenko@src.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="meson" _name="Meson" version="2.0" _section="Source">
25
+ <metadata>
26
+ <property name="mimetypes">text/x-meson</property>
27
+ <property name="globs">meson.build;meson_options.txt</property>
28
+ <property name="line-comment-start">#</property>
29
+ </metadata>
30
+
31
+ <styles>
32
+ <style id="builtin-command" _name="Builtin Command" map-to="def:function"/>
33
+ <style id="operator" _name="Operator" map-to="def:operator"/>
34
+ <style id="string" _name="String" map-to="def:string" />
35
+ </styles>
36
+
37
+ <definitions>
38
+ <context id="multiline-string" style-ref="def:string">
39
+ <start>'''</start>
40
+ <end>'''</end>
41
+ </context>
42
+
43
+ <context id="string" style-ref="def:string" end-at-line-end="true">
44
+ <start>'</start>
45
+ <end>'</end>
46
+ </context>
47
+
48
+ <context id="builtin-command" style-ref="builtin-command">
49
+ <prefix>(?i)</prefix>
50
+ <keyword>add_global_arguments</keyword>
51
+ <keyword>build_target</keyword>
52
+ <keyword>configuration_data</keyword>
53
+ <keyword>configure_file</keyword>
54
+ <keyword>custom_target</keyword>
55
+ <keyword>declare_dependency</keyword>
56
+ <keyword>dependency</keyword>
57
+ <keyword>error</keyword>
58
+ <keyword>executable</keyword>
59
+ <keyword>find_program</keyword>
60
+ <keyword>find_library</keyword>
61
+ <keyword>files</keyword>
62
+ <keyword>generator</keyword>
63
+ <keyword>get_option</keyword>
64
+ <keyword>gettext</keyword>
65
+ <keyword>include_directories</keyword>
66
+ <keyword>install_data</keyword>
67
+ <keyword>install_headers</keyword>
68
+ <keyword>install_man</keyword>
69
+ <keyword>install_subdir</keyword>
70
+ <keyword>is_subproject</keyword>
71
+ <keyword>jar</keyword>
72
+ <keyword>message</keyword>
73
+ <keyword>pkgconfig_gen</keyword>
74
+ <keyword>project</keyword>
75
+ <keyword>run_command</keyword>
76
+ <keyword>run_target</keyword>
77
+ <keyword>set_variable</keyword>
78
+ <keyword>shared_library</keyword>
79
+ <keyword>static_library</keyword>
80
+ <keyword>subdir</keyword>
81
+ <keyword>subproject</keyword>
82
+ <keyword>test</keyword>
83
+ <keyword>vcs_tag</keyword>
84
+ </context>
85
+
86
+ <context id="operator" style-ref="operator">
87
+ <keyword>if</keyword>
88
+ <keyword>else</keyword>
89
+ <keyword>endif</keyword>
90
+ <keyword>foreach</keyword>
91
+ <keyword>endforeach</keyword>
92
+ </context>
93
+
94
+ <context id="meson" class="no-spell-check">
95
+ <include>
96
+ <context ref="multiline-string"/>
97
+ <context ref="string"/>
98
+ <context ref="builtin-command"/>
99
+ <context ref="operator"/>
100
+ </include>
101
+ </context>
102
+ </definitions>
103
+ </language>
@@ -67,7 +67,7 @@
67
67
  <context id="ocaml" class="no-spell-check">
68
68
  <include>
69
69
  <context id="ocamldoc" style-ref="ocamldoc">
70
- <start>\(\*\*</start>
70
+ <start>\(\*\*(?!\))</start>
71
71
  <end>\*\)</end>
72
72
  <include>
73
73
  <context id="comment-in-comment" style-ref="comment" class="comment" class-disabled="no-spell-check">
@@ -6,7 +6,7 @@
6
6
  Authors: Søren Hauberg, Muthiah Annamalai, Carnë Draug
7
7
  Copyright (C) 2006 Søren Hauberg <soren@hauberg.org>
8
8
  Copyright (C) 2006 Muthiah Annamalai <gnumuthu@users.sf.net>
9
- Copyright (C) 2010 Carnë Draug <carandraug+dev@gmail.com>
9
+ Copyright (C) 2010-2015 Carnë Draug <carandraug+dev@gmail.com>
10
10
 
11
11
  GtkSourceView is free software; you can redistribute it and/or
12
12
  modify it under the terms of the GNU Lesser General Public
@@ -44,28 +44,35 @@
44
44
  <style id="data-type" _name="Data type" map-to="def:type"/>
45
45
  <style id="storage-type" _name="Storage Type" map-to="def:type"/>
46
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
47
  <style id="package-manager" _name="Package Manager" map-to="def:preprocessor"/>
51
48
  <style id="keyword" _name="Keyword" map-to="def:keyword"/>
52
- <style id="variable" _name="Variable" map-to="def:identifier"/>
53
49
  <style id="reserved-constant" _name="Reserved Constant" map-to="def:special-constant"/>
54
50
  <style id="builtin" _name="Builtin" map-to="def:builtin"/>
55
51
  </styles>
56
52
 
57
53
  <definitions>
58
54
 
59
- <context id="block-comment" style-ref="comment" class="comment" class-disabled="no-spell-check">
55
+ <!--
56
+ Many variable looking things such as NaN, NA, true, ones, and zeros,
57
+ are actually functions that take dimensions, and even class name as
58
+ argument. However, are often used as a scalar variables since they
59
+ default to (1, 1) dimensions. In such cases, when they are not
60
+ followed by parentheses, we highlight them as variables.
61
+ -->
62
+ <define-regex id="function-as-variable-suffix">\%](?!\s*\()</define-regex>
63
+
64
+ <context id="block-comment" style-ref="comment" class="comment"
65
+ class-disabled="no-spell-check">
60
66
  <start>^\s*[#%]{\s*$</start>
61
67
  <end>^\s*[#%]}\s*$</end>
62
68
  <include>
63
- <context ref="block-comment"/>
69
+ <context ref="block-comment"/> <!-- Nested block comments are real -->
64
70
  <context ref="def:in-comment"/>
65
71
  </include>
66
72
  </context>
67
73
 
68
- <context id="line-comment" style-ref="comment" end-at-line-end="true" class="comment" class-disabled="no-spell-check">
74
+ <context id="line-comment" style-ref="comment" end-at-line-end="true"
75
+ class="comment" class-disabled="no-spell-check">
69
76
  <start>#|%</start>
70
77
  <include>
71
78
  <context ref="def:in-comment"/>
@@ -73,31 +80,24 @@
73
80
  </context>
74
81
 
75
82
  <!--
76
- Line continue in Octave are different from the one in def.lang. They can
77
- either be ... or \ optionally followed by whitespace only.
83
+ A backslash as line continuation can only be used within double
84
+ quoted strings. An ellipsis as line continuation can be used
85
+ anywhere else to continue statements and anything that follows
86
+ a "..." is ignored, treated as a comment.
78
87
  -->
79
88
  <context id="line-continue" style-ref="comment">
80
- <start>(\.\.\.|\\)(\s)*?$</start>
81
- <end>^</end>
89
+ <start>\.\.\.</start>
90
+ <end>$</end>
82
91
  <include>
83
92
  <context ref="def:in-comment"/>
84
93
  </include>
85
94
  </context>
86
95
 
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">
96
+ <context id="single-quoted-string" style-ref="string"
97
+ end-at-line-end="true" class="string"
98
+ class-disabled="no-spell-check">
99
99
  <!--
100
- To do not misdetect the transpose operator ' as the start of a string
100
+ To not misdetect the transpose operator ' as the start of a string
101
101
  we assert to not follow a variable name (letters, digits and underscores)
102
102
  or a closing bracket (round, square or curly) or a dot (to form the
103
103
  array transpose operator ".'" ).
@@ -117,20 +117,24 @@
117
117
  </include>
118
118
  </context>
119
119
 
120
- <!--To see the list of operators, use the function __operators__-->
120
+ <!--
121
+ The Octave function __operators__ does not return an exhaustive list
122
+ of operators. Do not forget that all operators can now be preceded
123
+ by "." to perform automatic broadcasting, including comparison.
124
+ Autoincrement operators are also not listed there.
125
+ -->
121
126
  <context id="operator" style-ref="operator">
122
127
  <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
- (?&lt;=[0-9a-zA-Z_)\]}])(\.)?' | # transpose operator
130
- &lt;=? | &gt;=? | != | ~= | == | &lt;&gt; | # comparison operators
131
- &amp;{1,2}?(?!&amp;) | \|{1,2}?(?!\|) | ! | ~ | # boolean operators
132
- = | # assignment operator
133
- : | # range operator
128
+ ## The operators, +, -, *, /, \, ^, and **, support both element by
129
+ ## element-by-element and automatic broadcasting (preceded by .),
130
+ ## compound assignment, as well both in one (".**=" is real).
131
+ (\.)?(\+|\-|\*|\/|\\|\^|\*\*) |
132
+
133
+ (?&lt;=[0-9a-zA-Z_)\]}])(\.)?' | # transpose operator
134
+ \+\+ | \-\- | # auto-increment/decrement
135
+ \| | &amp; | # boolean operators
136
+ ! | ~ | = | &lt; | &gt; | # comparison operators
137
+ : # range operator
134
138
  </match>
135
139
  </context>
136
140
 
@@ -154,41 +158,13 @@
154
158
  </context>
155
159
 
156
160
  <context id="boolean" style-ref="boolean">
157
- <!--
158
- false and true are actually functions but let's ignore that
159
- unless there are parentheses.
160
- -->
161
- <suffix>\b(?!(\s)*\()</suffix>
161
+ <suffix>\%{function-as-variable-suffix}</suffix>
162
162
  <keyword>false</keyword>
163
163
  <keyword>true</keyword>
164
164
  </context>
165
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
166
  <context id="reserved-constant" style-ref="reserved-constant">
187
- <!--
188
- Most of the constants are actually functions. Do not highlight as
189
- constants if followed by parentheses.
190
- -->
191
- <suffix>\b(?!(\s)*\()</suffix>
167
+ <suffix>\%{function-as-variable-suffix}</suffix>
192
168
  <keyword>e</keyword>
193
169
  <keyword>eps</keyword>
194
170
  <keyword>(J|j|I|i)</keyword>
@@ -202,25 +178,34 @@
202
178
  </context>
203
179
 
204
180
  <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
181
  <match extended="true">
210
- \bpkg(?!(\s)*\()(\s)+
211
- ((un)?install|update|(un)?load|list|(global|local)_list|describe|prefix|(re)?build)?\b
182
+ \%[
183
+ pkg\%{function-as-variable-suffix}
184
+ \ +
185
+ (install|uninstall|update|unload|load|list|global_list|local_list|
186
+ describe|prefix|rebuild|build)
187
+ \%]
212
188
  </match>
213
189
  </context>
214
190
 
215
191
  <context id="keyword">
216
192
  <include>
217
193
  <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>
194
+ <keyword>end_try_catch</keyword>
195
+ <keyword>end_unwind_protect</keyword>
196
+ <keyword>endclassdef</keyword>
197
+ <keyword>endenumeration</keyword>
198
+ <keyword>endevents</keyword>
199
+ <keyword>endfor</keyword>
200
+ <keyword>endfunction</keyword>
201
+ <keyword>endif</keyword>
202
+ <keyword>endmethods</keyword>
203
+ <keyword>endparfor</keyword>
204
+ <keyword>endproperties</keyword>
205
+ <keyword>endswitch</keyword>
206
+ <keyword>endwhile</keyword>
207
+ <keyword>unwind_protect_cleanup</keyword>
208
+ <keyword>unwind_protect_cleanup</keyword>
224
209
  </context>
225
210
  <context id="octave-matlab-keyword" style-ref="keyword">
226
211
  <!--
@@ -233,35 +218,110 @@
233
218
  <keyword>break</keyword>
234
219
  <keyword>case</keyword>
235
220
  <keyword>catch</keyword>
221
+ <keyword>classdef</keyword>
236
222
  <keyword>continue</keyword>
237
223
  <keyword>do</keyword>
238
- <keyword>else(if)?</keyword>
224
+ <keyword>else</keyword>
225
+ <keyword>elseif</keyword>
239
226
  <keyword>end</keyword>
227
+ <keyword>enumeration</keyword>
228
+ <keyword>events</keyword>
240
229
  <keyword>for</keyword>
241
230
  <keyword>function</keyword>
242
231
  <keyword>if</keyword>
232
+ <keyword>methods</keyword>
243
233
  <keyword>otherwise</keyword>
244
234
  <keyword>parfor</keyword>
235
+ <keyword>properties</keyword>
245
236
  <keyword>return</keyword>
246
237
  <keyword>switch</keyword>
247
238
  <keyword>try</keyword>
248
239
  <keyword>until</keyword>
249
- <keyword>vararg(in|out)</keyword>
240
+ <keyword>varargin</keyword>
241
+ <keyword>varargout</keyword>
250
242
  <keyword>while</keyword>
251
243
  </context>
252
244
  </include>
253
245
  </context>
254
246
 
255
247
  <context id="builtin" style-ref="builtin">
248
+ <!-- If any of these is between "." it's a struct. -->
256
249
  <prefix>(?&lt;!\.)\%[</prefix>
257
250
  <suffix>\%](?!\.)</suffix>
258
251
 
259
252
  <!--
260
- The most reliable way to get a list of functions is to parse the
261
- manual (grep -or '@DOCSTRING' doc/interpreter).
262
- The alternative __list_functions__() skips many builtin functions
263
- and mentions some that only exist to have help text.
253
+ To get a list of all Octave core functions, use the code below.
254
+ This code uses all functions in the current scope so it's important
255
+ to have no packages loaded, no functions in the current directory,
256
+ or anything defined on octaverc.
257
+
258
+ all_functions = {__builtins__(){:} __list_functions__(){:}};
259
+ all_functions(strmatch ("__", all_functions )) = [];
260
+ all_functions = sort (all_functions);
261
+ printf (" <keyword>%s</keyword>\n", all_functions{:});
262
+
263
+ However, this will include things such as `ans' or `comma' which
264
+ have a m file for documentation purposes only. An alternative
265
+ is to parse the manual sources but that is also not complete since
266
+ functions such as bessel* have a single entry on the manual.
267
+
268
+ $ grep -rhoP '(?<=@DOCSTRING\().*(?=\))' doc/interpreter/ | sort | uniq
269
+
270
+ In the end, manual curation from those two lists is required.
264
271
  -->
272
+ <keyword>EDITOR</keyword>
273
+ <keyword>EXEC_PATH</keyword>
274
+ <keyword>F_DUPFD</keyword>
275
+ <keyword>F_GETFD</keyword>
276
+ <keyword>F_GETFL</keyword>
277
+ <keyword>F_SETFD</keyword>
278
+ <keyword>F_SETFL</keyword>
279
+ <keyword>I</keyword>
280
+ <keyword>IMAGE_PATH</keyword>
281
+ <keyword>Inf</keyword>
282
+ <keyword>J</keyword>
283
+ <keyword>NA</keyword>
284
+ <keyword>NaN</keyword>
285
+ <keyword>OCTAVE_HOME</keyword>
286
+ <keyword>OCTAVE_VERSION</keyword>
287
+ <keyword>O_APPEND</keyword>
288
+ <keyword>O_ASYNC</keyword>
289
+ <keyword>O_CREAT</keyword>
290
+ <keyword>O_EXCL</keyword>
291
+ <keyword>O_NONBLOCK</keyword>
292
+ <keyword>O_RDONLY</keyword>
293
+ <keyword>O_RDWR</keyword>
294
+ <keyword>O_SYNC</keyword>
295
+ <keyword>O_TRUNC</keyword>
296
+ <keyword>O_WRONLY</keyword>
297
+ <keyword>PAGER</keyword>
298
+ <keyword>PAGER_FLAGS</keyword>
299
+ <keyword>PS1</keyword>
300
+ <keyword>PS2</keyword>
301
+ <keyword>PS4</keyword>
302
+ <keyword>P_tmpdir</keyword>
303
+ <keyword>SEEK_CUR</keyword>
304
+ <keyword>SEEK_END</keyword>
305
+ <keyword>SEEK_SET</keyword>
306
+ <keyword>SIG</keyword>
307
+ <keyword>S_ISBLK</keyword>
308
+ <keyword>S_ISCHR</keyword>
309
+ <keyword>S_ISDIR</keyword>
310
+ <keyword>S_ISFIFO</keyword>
311
+ <keyword>S_ISLNK</keyword>
312
+ <keyword>S_ISREG</keyword>
313
+ <keyword>S_ISSOCK</keyword>
314
+ <keyword>WCONTINUE</keyword>
315
+ <keyword>WCOREDUMP</keyword>
316
+ <keyword>WEXITSTATUS</keyword>
317
+ <keyword>WIFCONTINUED</keyword>
318
+ <keyword>WIFEXITED</keyword>
319
+ <keyword>WIFSIGNALED</keyword>
320
+ <keyword>WIFSTOPPED</keyword>
321
+ <keyword>WNOHANG</keyword>
322
+ <keyword>WSTOPSIG</keyword>
323
+ <keyword>WTERMSIG</keyword>
324
+ <keyword>WUNTRACED</keyword>
265
325
  <keyword>abs</keyword>
266
326
  <keyword>accumarray</keyword>
267
327
  <keyword>accumdim</keyword>
@@ -287,7 +347,10 @@
287
347
  <keyword>amd</keyword>
288
348
  <keyword>ancestor</keyword>
289
349
  <keyword>and</keyword>
350
+ <keyword>angle</keyword>
351
+ <keyword>annotation</keyword>
290
352
  <keyword>anova</keyword>
353
+ <keyword>ans</keyword>
291
354
  <keyword>any</keyword>
292
355
  <keyword>arch_fit</keyword>
293
356
  <keyword>arch_rnd</keyword>
@@ -315,7 +378,9 @@
315
378
  <keyword>atexit</keyword>
316
379
  <keyword>audiodevinfo</keyword>
317
380
  <keyword>audioinfo</keyword>
381
+ <keyword>audioplayer</keyword>
318
382
  <keyword>audioread</keyword>
383
+ <keyword>audiorecorder</keyword>
319
384
  <keyword>audiowrite</keyword>
320
385
  <keyword>autoload</keyword>
321
386
  <keyword>autoreg_matrix</keyword>
@@ -334,7 +399,11 @@
334
399
  <keyword>base64_encode</keyword>
335
400
  <keyword>beep</keyword>
336
401
  <keyword>beep_on_error</keyword>
402
+ <keyword>besselh</keyword>
403
+ <keyword>besseli</keyword>
337
404
  <keyword>besselj</keyword>
405
+ <keyword>besselk</keyword>
406
+ <keyword>bessely</keyword>
338
407
  <keyword>beta</keyword>
339
408
  <keyword>betacdf</keyword>
340
409
  <keyword>betainc</keyword>
@@ -388,6 +457,7 @@
388
457
  <keyword>ccolamd</keyword>
389
458
  <keyword>cd</keyword>
390
459
  <keyword>ceil</keyword>
460
+ <keyword>cell</keyword>
391
461
  <keyword>cell2mat</keyword>
392
462
  <keyword>cell2struct</keyword>
393
463
  <keyword>celldisp</keyword>
@@ -397,6 +467,8 @@
397
467
  <keyword>cellstr</keyword>
398
468
  <keyword>center</keyword>
399
469
  <keyword>cgs</keyword>
470
+ <keyword>char</keyword>
471
+ <keyword>chdir</keyword>
400
472
  <keyword>chi2cdf</keyword>
401
473
  <keyword>chi2inv</keyword>
402
474
  <keyword>chi2pdf</keyword>
@@ -507,19 +579,7 @@
507
579
  <keyword>datetick</keyword>
508
580
  <keyword>datevec</keyword>
509
581
  <keyword>dawson</keyword>
510
- <keyword>dbclear</keyword>
511
- <keyword>dbcont</keyword>
512
- <keyword>dbdown</keyword>
513
- <keyword>dblist</keyword>
514
582
  <keyword>dblquad</keyword>
515
- <keyword>dbquit</keyword>
516
- <keyword>dbstack</keyword>
517
- <keyword>dbstatus</keyword>
518
- <keyword>dbstep</keyword>
519
- <keyword>dbstop</keyword>
520
- <keyword>dbtype</keyword>
521
- <keyword>dbup</keyword>
522
- <keyword>dbwhere</keyword>
523
583
  <keyword>deal</keyword>
524
584
  <keyword>deblank</keyword>
525
585
  <keyword>debug_java</keyword>
@@ -566,6 +626,7 @@
566
626
  <keyword>dos</keyword>
567
627
  <keyword>do_string_escapes</keyword>
568
628
  <keyword>dot</keyword>
629
+ <keyword>double</keyword>
569
630
  <keyword>drawnow</keyword>
570
631
  <keyword>dsearch</keyword>
571
632
  <keyword>dsearchn</keyword>
@@ -577,7 +638,6 @@
577
638
  <keyword>echo_executing_commands</keyword>
578
639
  <keyword>edit</keyword>
579
640
  <keyword>edit_history</keyword>
580
- <keyword>EDITOR</keyword>
581
641
  <keyword>eig</keyword>
582
642
  <keyword>eigs</keyword>
583
643
  <keyword>ellipj</keyword>
@@ -603,7 +663,6 @@
603
663
  <keyword>error</keyword>
604
664
  <keyword>errorbar</keyword>
605
665
  <keyword>errordlg</keyword>
606
- <keyword>error_ids</keyword>
607
666
  <keyword>etime</keyword>
608
667
  <keyword>etree</keyword>
609
668
  <keyword>etreeplot</keyword>
@@ -611,8 +670,8 @@
611
670
  <keyword>evalin</keyword>
612
671
  <keyword>example</keyword>
613
672
  <keyword>exec</keyword>
614
- <keyword>EXEC_PATH</keyword>
615
673
  <keyword>exist</keyword>
674
+ <keyword>exit</keyword>
616
675
  <keyword>exp</keyword>
617
676
  <keyword>expcdf</keyword>
618
677
  <keyword>expint</keyword>
@@ -705,6 +764,7 @@
705
764
  <keyword>fsolve</keyword>
706
765
  <keyword>ftell</keyword>
707
766
  <keyword>f_test_regression</keyword>
767
+ <keyword>ftp</keyword>
708
768
  <keyword>full</keyword>
709
769
  <keyword>fullfile</keyword>
710
770
  <keyword>func2str</keyword>
@@ -716,6 +776,7 @@
716
776
  <keyword>gaminv</keyword>
717
777
  <keyword>gamma</keyword>
718
778
  <keyword>gammainc</keyword>
779
+ <keyword>gammaln</keyword>
719
780
  <keyword>gampdf</keyword>
720
781
  <keyword>gamrnd</keyword>
721
782
  <keyword>gca</keyword>
@@ -744,6 +805,7 @@
744
805
  <keyword>getgrnam</keyword>
745
806
  <keyword>get_help_text</keyword>
746
807
  <keyword>get_help_text_from_file</keyword>
808
+ <keyword>get_home_directory</keyword>
747
809
  <keyword>gethostname</keyword>
748
810
  <keyword>getpgrp</keyword>
749
811
  <keyword>getpid</keyword>
@@ -776,13 +838,13 @@
776
838
  <keyword>gtext</keyword>
777
839
  <keyword>guidata</keyword>
778
840
  <keyword>guihandles</keyword>
779
- <keyword>gui_mode</keyword>
780
841
  <keyword>gunzip</keyword>
781
842
  <keyword>gzip</keyword>
782
843
  <keyword>hadamard</keyword>
783
844
  <keyword>hamming</keyword>
784
845
  <keyword>hankel</keyword>
785
846
  <keyword>hanning</keyword>
847
+ <keyword>have_window_system</keyword>
786
848
  <keyword>hdl2struct</keyword>
787
849
  <keyword>help</keyword>
788
850
  <keyword>helpdlg</keyword>
@@ -803,6 +865,7 @@
803
865
  <keyword>history_size</keyword>
804
866
  <keyword>history_timestamp_format_string</keyword>
805
867
  <keyword>hold</keyword>
868
+ <keyword>home</keyword>
806
869
  <keyword>horzcat</keyword>
807
870
  <keyword>hot</keyword>
808
871
  <keyword>hotelling_test</keyword>
@@ -816,7 +879,7 @@
816
879
  <keyword>hygepdf</keyword>
817
880
  <keyword>hygernd</keyword>
818
881
  <keyword>hypot</keyword>
819
- <keyword>I</keyword>
882
+ <keyword>i</keyword>
820
883
  <keyword>ichol</keyword>
821
884
  <keyword>idivide</keyword>
822
885
  <keyword>ifft</keyword>
@@ -828,7 +891,6 @@
828
891
  <keyword>im2frame</keyword>
829
892
  <keyword>imag</keyword>
830
893
  <keyword>image</keyword>
831
- <keyword>IMAGE_PATH</keyword>
832
894
  <keyword>imagesc</keyword>
833
895
  <keyword>imfinfo</keyword>
834
896
  <keyword>imformats</keyword>
@@ -840,7 +902,7 @@
840
902
  <keyword>ind2rgb</keyword>
841
903
  <keyword>ind2sub</keyword>
842
904
  <keyword>index</keyword>
843
- <keyword>Inf</keyword>
905
+ <keyword>inf</keyword>
844
906
  <keyword>inferiorto</keyword>
845
907
  <keyword>info</keyword>
846
908
  <keyword>info_file</keyword>
@@ -851,7 +913,11 @@
851
913
  <keyword>inputdlg</keyword>
852
914
  <keyword>inputname</keyword>
853
915
  <keyword>inputParser</keyword>
916
+ <keyword>int16</keyword>
854
917
  <keyword>int2str</keyword>
918
+ <keyword>int32</keyword>
919
+ <keyword>int64</keyword>
920
+ <keyword>int8</keyword>
855
921
  <keyword>interp1</keyword>
856
922
  <keyword>interp2</keyword>
857
923
  <keyword>interp3</keyword>
@@ -861,6 +927,7 @@
861
927
  <keyword>intmax</keyword>
862
928
  <keyword>intmin</keyword>
863
929
  <keyword>inv</keyword>
930
+ <keyword>inverse</keyword>
864
931
  <keyword>invhilb</keyword>
865
932
  <keyword>ipermute</keyword>
866
933
  <keyword>iqr</keyword>
@@ -873,6 +940,7 @@
873
940
  <keyword>isascii</keyword>
874
941
  <keyword>isaxes</keyword>
875
942
  <keyword>isbanded</keyword>
943
+ <keyword>isbool</keyword>
876
944
  <keyword>iscell</keyword>
877
945
  <keyword>iscellstr</keyword>
878
946
  <keyword>ischar</keyword>
@@ -951,10 +1019,12 @@
951
1019
  <keyword>isvarname</keyword>
952
1020
  <keyword>isvector</keyword>
953
1021
  <keyword>isxdigit</keyword>
1022
+ <keyword>j</keyword>
954
1023
  <keyword>javaaddpath</keyword>
955
1024
  <keyword>javaArray</keyword>
956
1025
  <keyword>javachk</keyword>
957
1026
  <keyword>javaclasspath</keyword>
1027
+ <keyword>java_convert_matrix</keyword>
958
1028
  <keyword>java_get</keyword>
959
1029
  <keyword>java_matrix_autoconversion</keyword>
960
1030
  <keyword>javamem</keyword>
@@ -965,6 +1035,7 @@
965
1035
  <keyword>java_unsigned_autoconversion</keyword>
966
1036
  <keyword>jet</keyword>
967
1037
  <keyword>jit_enable</keyword>
1038
+ <keyword>jit_failcnt</keyword>
968
1039
  <keyword>jit_startcnt</keyword>
969
1040
  <keyword>kbhit</keyword>
970
1041
  <keyword>kendall</keyword>
@@ -1004,7 +1075,6 @@
1004
1075
  <keyword>list_in_columns</keyword>
1005
1076
  <keyword>list_primes</keyword>
1006
1077
  <keyword>load</keyword>
1007
- <keyword>loadaudio</keyword>
1008
1078
  <keyword>loaded_graphics_toolkits</keyword>
1009
1079
  <keyword>loadobj</keyword>
1010
1080
  <keyword>localtime</keyword>
@@ -1012,6 +1082,7 @@
1012
1082
  <keyword>log10</keyword>
1013
1083
  <keyword>log1p</keyword>
1014
1084
  <keyword>log2</keyword>
1085
+ <keyword>logical</keyword>
1015
1086
  <keyword>logistic_cdf</keyword>
1016
1087
  <keyword>logistic_inv</keyword>
1017
1088
  <keyword>logistic_pdf</keyword>
@@ -1028,6 +1099,7 @@
1028
1099
  <keyword>logspace</keyword>
1029
1100
  <keyword>lookfor</keyword>
1030
1101
  <keyword>lookup</keyword>
1102
+ <keyword>lower</keyword>
1031
1103
  <keyword>ls</keyword>
1032
1104
  <keyword>ls_command</keyword>
1033
1105
  <keyword>lscov</keyword>
@@ -1081,7 +1153,6 @@
1081
1153
  <keyword>mode</keyword>
1082
1154
  <keyword>moment</keyword>
1083
1155
  <keyword>more</keyword>
1084
- <keyword>mouse_wheel_zoom</keyword>
1085
1156
  <keyword>movefile</keyword>
1086
1157
  <keyword>mpoles</keyword>
1087
1158
  <keyword>mpower</keyword>
@@ -1090,9 +1161,9 @@
1090
1161
  <keyword>mtimes</keyword>
1091
1162
  <keyword>mu2lin</keyword>
1092
1163
  <keyword>munlock</keyword>
1093
- <keyword>NA</keyword>
1094
1164
  <keyword>namelengthmax</keyword>
1095
- <keyword>NaN</keyword>
1165
+ <keyword>nargchk</keyword>
1166
+ <keyword>nan</keyword>
1096
1167
  <keyword>nargin</keyword>
1097
1168
  <keyword>narginchk</keyword>
1098
1169
  <keyword>nargout</keyword>
@@ -1136,8 +1207,6 @@
1136
1207
  <keyword>octave_core_file_limit</keyword>
1137
1208
  <keyword>octave_core_file_name</keyword>
1138
1209
  <keyword>octave_core_file_options</keyword>
1139
- <keyword>OCTAVE_HOME</keyword>
1140
- <keyword>OCTAVE_VERSION</keyword>
1141
1210
  <keyword>ols</keyword>
1142
1211
  <keyword>onCleanup</keyword>
1143
1212
  <keyword>onenormest</keyword>
@@ -1148,6 +1217,7 @@
1148
1217
  <keyword>optimset</keyword>
1149
1218
  <keyword>or</keyword>
1150
1219
  <keyword>orderfields</keyword>
1220
+ <keyword>ordschur</keyword>
1151
1221
  <keyword>orient</keyword>
1152
1222
  <keyword>orth</keyword>
1153
1223
  <keyword>ostrsplit</keyword>
@@ -1155,8 +1225,6 @@
1155
1225
  <keyword>output_precision</keyword>
1156
1226
  <keyword>pack</keyword>
1157
1227
  <keyword>page_output_immediately</keyword>
1158
- <keyword>PAGER</keyword>
1159
- <keyword>PAGER_FLAGS</keyword>
1160
1228
  <keyword>page_screen_output</keyword>
1161
1229
  <keyword>pan</keyword>
1162
1230
  <keyword>pareto</keyword>
@@ -1186,7 +1254,6 @@
1186
1254
  <keyword>pipe</keyword>
1187
1255
  <keyword>pkg</keyword>
1188
1256
  <keyword>planerot</keyword>
1189
- <keyword>playaudio</keyword>
1190
1257
  <keyword>plot</keyword>
1191
1258
  <keyword>plot3</keyword>
1192
1259
  <keyword>plotmatrix</keyword>
@@ -1242,13 +1309,11 @@
1242
1309
  <keyword>program_invocation_name</keyword>
1243
1310
  <keyword>program_name</keyword>
1244
1311
  <keyword>prop_test_2</keyword>
1245
- <keyword>PS1</keyword>
1246
- <keyword>PS2</keyword>
1247
- <keyword>PS4</keyword>
1248
- <keyword>P_tmpdir</keyword>
1312
+ <keyword>psi</keyword>
1249
1313
  <keyword>puts</keyword>
1250
1314
  <keyword>pwd</keyword>
1251
1315
  <keyword>python</keyword>
1316
+ <keyword>qmr</keyword>
1252
1317
  <keyword>qp</keyword>
1253
1318
  <keyword>qqplot</keyword>
1254
1319
  <keyword>qr</keyword>
@@ -1349,7 +1414,6 @@
1349
1414
  <keyword>runtests</keyword>
1350
1415
  <keyword>save</keyword>
1351
1416
  <keyword>saveas</keyword>
1352
- <keyword>saveaudio</keyword>
1353
1417
  <keyword>save_default_options</keyword>
1354
1418
  <keyword>save_header_format_string</keyword>
1355
1419
  <keyword>saveobj</keyword>
@@ -1362,14 +1426,12 @@
1362
1426
  <keyword>sec</keyword>
1363
1427
  <keyword>secd</keyword>
1364
1428
  <keyword>sech</keyword>
1365
- <keyword>SEEK_SET</keyword>
1366
1429
  <keyword>semilogx</keyword>
1367
1430
  <keyword>semilogxerr</keyword>
1368
1431
  <keyword>semilogy</keyword>
1369
1432
  <keyword>semilogyerr</keyword>
1370
1433
  <keyword>set</keyword>
1371
1434
  <keyword>setappdata</keyword>
1372
- <keyword>setaudio</keyword>
1373
1435
  <keyword>setdiff</keyword>
1374
1436
  <keyword>setenv</keyword>
1375
1437
  <keyword>setfield</keyword>
@@ -1382,7 +1444,6 @@
1382
1444
  <keyword>shift</keyword>
1383
1445
  <keyword>shiftdim</keyword>
1384
1446
  <keyword>shrinkfaces</keyword>
1385
- <keyword>SIG</keyword>
1386
1447
  <keyword>sighup_dumps_octave_core</keyword>
1387
1448
  <keyword>sign</keyword>
1388
1449
  <keyword>signbit</keyword>
@@ -1394,14 +1455,8 @@
1394
1455
  <keyword>sind</keyword>
1395
1456
  <keyword>sinetone</keyword>
1396
1457
  <keyword>sinewave</keyword>
1458
+ <keyword>single</keyword>
1397
1459
  <keyword>sinh</keyword>
1398
- <keyword>S_ISBLK</keyword>
1399
- <keyword>S_ISCHR</keyword>
1400
- <keyword>S_ISDIR</keyword>
1401
- <keyword>S_ISFIFO</keyword>
1402
- <keyword>S_ISLNK</keyword>
1403
- <keyword>S_ISREG</keyword>
1404
- <keyword>S_ISSOCK</keyword>
1405
1460
  <keyword>size</keyword>
1406
1461
  <keyword>size_equal</keyword>
1407
1462
  <keyword>sizemax</keyword>
@@ -1412,6 +1467,8 @@
1412
1467
  <keyword>sombrero</keyword>
1413
1468
  <keyword>sort</keyword>
1414
1469
  <keyword>sortrows</keyword>
1470
+ <keyword>sound</keyword>
1471
+ <keyword>soundsc</keyword>
1415
1472
  <keyword>source</keyword>
1416
1473
  <keyword>spalloc</keyword>
1417
1474
  <keyword>sparse</keyword>
@@ -1475,6 +1532,7 @@
1475
1532
  <keyword>string_fill_char</keyword>
1476
1533
  <keyword>strjoin</keyword>
1477
1534
  <keyword>strjust</keyword>
1535
+ <keyword>strmatch</keyword>
1478
1536
  <keyword>strncmp</keyword>
1479
1537
  <keyword>strncmpi</keyword>
1480
1538
  <keyword>strptime</keyword>
@@ -1484,6 +1542,7 @@
1484
1542
  <keyword>strtok</keyword>
1485
1543
  <keyword>strtrim</keyword>
1486
1544
  <keyword>strtrunc</keyword>
1545
+ <keyword>struct</keyword>
1487
1546
  <keyword>struct2cell</keyword>
1488
1547
  <keyword>struct2hdl</keyword>
1489
1548
  <keyword>structfun</keyword>
@@ -1541,7 +1600,9 @@
1541
1600
  <keyword>tinv</keyword>
1542
1601
  <keyword>title</keyword>
1543
1602
  <keyword>tmpfile</keyword>
1603
+ <keyword>tmpnam</keyword>
1544
1604
  <keyword>toascii</keyword>
1605
+ <keyword>toc</keyword>
1545
1606
  <keyword>toeplitz</keyword>
1546
1607
  <keyword>tolower</keyword>
1547
1608
  <keyword>toupper</keyword>
@@ -1566,11 +1627,21 @@
1566
1627
  <keyword>type</keyword>
1567
1628
  <keyword>typecast</keyword>
1568
1629
  <keyword>typeinfo</keyword>
1630
+ <keyword>uicontextmenu</keyword>
1631
+ <keyword>uicontrol</keyword>
1569
1632
  <keyword>uigetdir</keyword>
1570
1633
  <keyword>uigetfile</keyword>
1571
1634
  <keyword>uimenu</keyword>
1635
+ <keyword>uint16</keyword>
1636
+ <keyword>uint32</keyword>
1637
+ <keyword>uint64</keyword>
1638
+ <keyword>uint8</keyword>
1639
+ <keyword>uipanel</keyword>
1640
+ <keyword>uipushtool</keyword>
1572
1641
  <keyword>uiputfile</keyword>
1573
1642
  <keyword>uiresume</keyword>
1643
+ <keyword>uitoggletool</keyword>
1644
+ <keyword>uitoolbar</keyword>
1574
1645
  <keyword>uiwait</keyword>
1575
1646
  <keyword>umask</keyword>
1576
1647
  <keyword>uminus</keyword>
@@ -1596,6 +1667,7 @@
1596
1667
  <keyword>unwrap</keyword>
1597
1668
  <keyword>unzip</keyword>
1598
1669
  <keyword>uplus</keyword>
1670
+ <keyword>upper</keyword>
1599
1671
  <keyword>urlread</keyword>
1600
1672
  <keyword>urlwrite</keyword>
1601
1673
  <keyword>usejava</keyword>
@@ -1630,11 +1702,8 @@
1630
1702
  <keyword>wblinv</keyword>
1631
1703
  <keyword>wblpdf</keyword>
1632
1704
  <keyword>wblrnd</keyword>
1633
- <keyword>WCONTINUE</keyword>
1634
- <keyword>WCOREDUMP</keyword>
1635
1705
  <keyword>weekday</keyword>
1636
1706
  <keyword>welch_test</keyword>
1637
- <keyword>WEXITSTATUS</keyword>
1638
1707
  <keyword>what</keyword>
1639
1708
  <keyword>which</keyword>
1640
1709
  <keyword>white</keyword>
@@ -1643,24 +1712,20 @@
1643
1712
  <keyword>whos</keyword>
1644
1713
  <keyword>whos_line_format</keyword>
1645
1714
  <keyword>wienrnd</keyword>
1646
- <keyword>WIFCONTINUED</keyword>
1647
- <keyword>WIFEXITED</keyword>
1648
- <keyword>WIFSIGNALED</keyword>
1649
- <keyword>WIFSTOPPED</keyword>
1650
1715
  <keyword>wilcoxon_test</keyword>
1651
1716
  <keyword>wilkinson</keyword>
1652
1717
  <keyword>winter</keyword>
1653
- <keyword>WNOHANG</keyword>
1654
- <keyword>WSTOPSIG</keyword>
1655
- <keyword>WTERMSIG</keyword>
1656
- <keyword>WUNTRACED</keyword>
1657
1718
  <keyword>xlabel</keyword>
1658
1719
  <keyword>xlim</keyword>
1659
1720
  <keyword>xor</keyword>
1660
1721
  <keyword>yes_or_no</keyword>
1722
+ <keyword>ylabel</keyword>
1723
+ <keyword>ylim</keyword>
1661
1724
  <keyword>yulewalker</keyword>
1662
1725
  <keyword>zeros</keyword>
1663
1726
  <keyword>zip</keyword>
1727
+ <keyword>zlabel</keyword>
1728
+ <keyword>zlim</keyword>
1664
1729
  <keyword>zoom</keyword>
1665
1730
  <keyword>zscore</keyword>
1666
1731
  <keyword>z_test</keyword>
@@ -1673,18 +1738,16 @@
1673
1738
  <context ref="block-comment"/>
1674
1739
  <context ref="line-comment"/>
1675
1740
  <context ref="line-continue"/>
1676
- <context ref="double-quoted-string"/>
1741
+ <context ref="c:string"/>
1677
1742
  <context ref="single-quoted-string"/>
1678
1743
  <context ref="operator"/>
1679
1744
  <context ref="data-type"/>
1680
1745
  <context ref="function-handle"/>
1681
1746
  <context ref="storage-type"/>
1682
1747
  <context ref="boolean"/>
1683
- <context ref="decimal"/>
1684
- <context ref="floating-point-number"/>
1685
- <context ref="octal-number"/>
1686
- <context ref="hex-number"/>
1687
- <context ref="variables"/>
1748
+ <context ref="def:decimal"/>
1749
+ <context ref="def:float"/>
1750
+ <context ref="def:hexadecimal"/>
1688
1751
  <context ref="reserved-constant"/>
1689
1752
  <context ref="package-manager"/>
1690
1753
  <context ref="keyword"/>