gtksourceview3 3.0.7-x86-mingw32 → 3.0.8-x86-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
@@ -0,0 +1,74 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+
4
+ This file is part of GtkSourceView
5
+
6
+ Author: Martin Blanchard <tchaik@gmx.com>
7
+ Copyright (C) 2015 Martin Blanchard <tchaik@gmx.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="csv" _name="CSV" version="2.0" _section="Other">
25
+ <metadata>
26
+ <property name="mimetypes">text/csv</property>
27
+ <property name="globs">*.csv</property>
28
+ </metadata>
29
+
30
+ <styles>
31
+ <style id="decimal" _name="Decimal number" map-to="def:decimal"/>
32
+ <style id="escaped-character" _name="Escaped character" map-to="def:special-char"/>
33
+ <style id="floating-point" _name="Floating point number" map-to="def:floating-point"/>
34
+ <style id="string" _name="String" map-to="def:string"/>
35
+ </styles>
36
+
37
+ <definitions>
38
+ <context id="decimal" style-ref="decimal">
39
+ <match extended="true">
40
+ (?&lt;![\w\.])
41
+ [0-9]+
42
+ (?![\w\.])
43
+ </match>
44
+ </context>
45
+
46
+ <context id="floating-point" style-ref="floating-point">
47
+ <match extended="true">
48
+ (?&lt;![\w\.])
49
+ ((\.[0-9]+ | [0-9]+\.[0-9]*) ([Ee][+-]?[0-9]*)? | ([0-9]+[Ee][+-]?[0-9]*))
50
+ (?![\w\.])
51
+ </match>
52
+ </context>
53
+
54
+ <context id="string" style-ref="string" class="string" class-disabled="no-spell-check">
55
+ <start>"</start>
56
+ <end>"</end>
57
+ <include>
58
+ <context id="escaped-character" style-ref="escaped-character">
59
+ <match extended="true">
60
+ \"\" # escaped double-quote
61
+ </match>
62
+ </context>
63
+ </include>
64
+ </context>
65
+
66
+ <context id="csv" class="no-spell-check">
67
+ <include>
68
+ <context ref="decimal"/>
69
+ <context ref="floating-point"/>
70
+ <context ref="string"/>
71
+ </include>
72
+ </context>
73
+ </definitions>
74
+ </language>
@@ -45,17 +45,14 @@
45
45
  </styles>
46
46
 
47
47
  <definitions>
48
- <define-regex id="key-suffix">(?=(\[[a-zA-Z_]+\])?\s*=\s*)</define-regex>
48
+ <define-regex id="language">\[[a-zA-Z_]+@?[a-zA-Z_]*\]</define-regex>
49
+ <define-regex id="key-suffix">(?=(\%{language})?\s*=\s*)</define-regex>
49
50
 
50
51
  <context id="group" style-ref="group">
51
52
  <start>^\[</start>
52
53
  <end>\]$</end>
53
54
  </context>
54
55
 
55
- <context id="language" style-ref="language">
56
- <match>\[[a-zA-Z_]+\]</match>
57
- </context>
58
-
59
56
  <context id="boolean" style-ref="boolean">
60
57
  <keyword>true</keyword>
61
58
  <keyword>false</keyword>
@@ -81,6 +78,7 @@
81
78
  <keyword>BinaryPattern</keyword>
82
79
  <keyword>Categories</keyword>
83
80
  <keyword>Comment</keyword>
81
+ <keyword>DBusActivatable</keyword>
84
82
  <keyword>DefaultApp</keyword>
85
83
  <keyword>Dev</keyword>
86
84
  <keyword>Encoding</keyword>
@@ -91,6 +89,8 @@
91
89
  <keyword>GenericName</keyword>
92
90
  <keyword>Hidden</keyword>
93
91
  <keyword>Icon</keyword>
92
+ <keyword>Implements</keyword>
93
+ <keyword>Keywords</keyword>
94
94
  <keyword>MapNotify</keyword>
95
95
  <keyword>MimeType</keyword>
96
96
  <keyword>MiniIcon</keyword>
@@ -285,7 +285,7 @@
285
285
  <context ref="group"/>
286
286
  <context ref="key"/>
287
287
  <context id="lang-and-value" end-at-line-end="true">
288
- <start>(\[[a-zA-Z_]+\])?\s*=\s*</start>
288
+ <start>(\%{language})?\s*=\s*</start>
289
289
  <include>
290
290
  <context sub-pattern="1" where="start" style-ref="language"/>
291
291
  <context ref="boolean"/>
@@ -23,8 +23,8 @@
23
23
  -->
24
24
  <language id="diff" _name="Diff" version="2.0" _section="Other">
25
25
  <metadata>
26
- <property name="mimetypes">text/x-diff;text/x-patch</property>
27
- <property name="globs">*.diff;*.patch</property>
26
+ <property name="mimetypes">text/x-diff;text/x-patch;text/x-reject</property>
27
+ <property name="globs">*.diff;*.patch;*.rej</property>
28
28
  </metadata>
29
29
 
30
30
  <styles>
@@ -292,6 +292,7 @@
292
292
  <keyword>virtual</keyword>
293
293
  <keyword>void</keyword>
294
294
  <keyword>volatile</keyword>
295
+ <keyword>yield</keyword>
295
296
  <keyword>where</keyword>
296
297
  </context>
297
298
 
@@ -36,7 +36,7 @@
36
36
 
37
37
  <definitions>
38
38
  <define-regex id="identifier">[A-Za-z_][A-Za-z0-9_]*(?:@@[A-Za-z0-9_\.]+)?</define-regex>
39
- <define-regex id="filename">[A-Za-z0-9_/\-\.]+</define-regex>
39
+ <define-regex id="filename">.+?</define-regex>
40
40
 
41
41
  <!-- Either a decimal number (single to multi-digit, signed or unsigned) or a standard hexadecimal number -->
42
42
  <define-regex id="thread-number">(?:-?[1-9][0-9]*|\%{def:hexadecimal})</define-regex>
@@ -79,6 +79,7 @@
79
79
  <include>
80
80
  <context sub-pattern="0" where="start" style-ref="tag"/>
81
81
  <context sub-pattern="0" where="end" style-ref="tag"/>
82
+ <context ref="embedded-lang-hook"/>
82
83
  </include>
83
84
  </context>
84
85
  <context id="h1" end-at-line-end="true">
@@ -92,6 +93,7 @@
92
93
  <include>
93
94
  <context sub-pattern="0" where="start" style-ref="tag"/>
94
95
  <context sub-pattern="0" where="end" style-ref="tag"/>
96
+ <context ref="embedded-lang-hook"/>
95
97
  <!-- We cannot match any further here, because matching to tag will override our end-match -->
96
98
  </include>
97
99
  </context>
@@ -108,6 +110,7 @@
108
110
  <include>
109
111
  <context sub-pattern="0" where="start" style-ref="tag"/>
110
112
  <context sub-pattern="0" where="end" style-ref="tag"/>
113
+ <context ref="embedded-lang-hook"/>
111
114
  <!-- We cannot match any further here, because matching to tag will override our end-match -->
112
115
  </include>
113
116
  </context>
@@ -124,6 +127,7 @@
124
127
  <include>
125
128
  <context sub-pattern="0" where="start" style-ref="tag"/>
126
129
  <context sub-pattern="0" where="end" style-ref="tag"/>
130
+ <context ref="embedded-lang-hook"/>
127
131
  <!-- We cannot match any further here, because matching to tag will override our end-match -->
128
132
  </include>
129
133
  </context>
@@ -140,6 +144,7 @@
140
144
  <include>
141
145
  <context sub-pattern="0" where="start" style-ref="tag"/>
142
146
  <context sub-pattern="0" where="end" style-ref="tag"/>
147
+ <context ref="embedded-lang-hook"/>
143
148
  <!-- We cannot match any further here, because matching to tag will override our end-match -->
144
149
  </include>
145
150
  </context>
@@ -156,6 +161,7 @@
156
161
  <include>
157
162
  <context sub-pattern="0" where="start" style-ref="tag"/>
158
163
  <context sub-pattern="0" where="end" style-ref="tag"/>
164
+ <context ref="embedded-lang-hook"/>
159
165
  <!-- We cannot match any further here, because matching to tag will override our end-match -->
160
166
  </include>
161
167
  </context>
@@ -34,7 +34,7 @@
34
34
  <style id="boolean" _name="Boolean" map-to="def:boolean"/>
35
35
  <style id="command" _name="Commands" map-to="def:function"/>
36
36
  <style id="storage-type" _name="Storage Type" map-to="def:type"/>
37
- <style id="escape" _name="Escaped Characters" map-to="def:special-char"/>
37
+ <style id="escape" _name="Escaped Character" map-to="def:special-char"/>
38
38
  <style id="keyword" _name="Keyword" map-to="def:keyword"/>
39
39
  <style id="operator" _name="Operator" map-to="def:operator"/>
40
40
  <style id="string" _name="String" map-to="def:string"/>
@@ -0,0 +1,250 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+
4
+ This file is part of GtkSourceView
5
+
6
+ Author: Remy Loubradou <remy.loubradou@gmail.com>
7
+ Copyright (C) 2011 Remy Loubradou <remy.loubradou@gmail.com>
8
+ Copyright (C) 2015 Seán de Búrca <leftmostcat@gmail.com>
9
+
10
+ This library is free software; you can redistribute it and/or
11
+ modify it under the terms of the GNU Library General Public
12
+ License as published by the Free Software Foundation; either
13
+ version 2 of the License, or (at your option) any later version.
14
+
15
+ This library 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
+ Library General Public License for more details.
19
+
20
+ You should have received a copy of the GNU Library General Public
21
+ License along with this library; if not, write to the
22
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23
+ Boston, MA 02111-1307, USA.
24
+
25
+ -->
26
+ <language id="jade" _name="Jade" version="2.0" _section="Markup">
27
+ <metadata>
28
+ <property name="globs">*.jade</property>
29
+ <property name="line-comment-start">//</property>
30
+ </metadata>
31
+
32
+ <styles>
33
+ <style id="comment" _name="Comment" map-to="def:comment"/>
34
+ <style id="doctype" _name="DOCTYPE" map-to="def:preprocessor"/>
35
+ <style id="processing-instruction" _name="Processing instruction" map-to="def:preprocessor"/>
36
+ <style id="element-name" _name="Element name" map-to="def:identifier"/>
37
+ <style id="attribute-name" _name="Attribute name" map-to="def:type"/>
38
+ <style id="attribute-value" _name="Attribute value" map-to="def:string"/>
39
+ <style id="tags" _name="Tags" map-to="def:keyword"/>
40
+ <style id="entity" _name="Entity" map-to="def:preprocessor"/>
41
+ <style id="error" _name="Error" map-to="def:error"/>
42
+ </styles>
43
+
44
+ <definitions>
45
+ <define-regex id="name">[a-zA-Z0-9_-]+</define-regex>
46
+
47
+ <context id="doctype" style-ref="doctype">
48
+ <match>^(!!!)\s*([a-zA-Z0-9-_]+)</match>
49
+ </context>
50
+
51
+ <context id="attribute-name" class="no-spell-check">
52
+ <match>(\b\%{name}\s*) *=</match>
53
+ <include>
54
+ <context sub-pattern="1" style-ref="attribute-name"/>
55
+ </include>
56
+ </context>
57
+
58
+ <context id="entity" style-ref="entity" class="no-spell-check">
59
+ <match>&amp;\%{name};</match>
60
+ </context>
61
+
62
+ <context id="character-reference" style-ref="entity">
63
+ <match>&amp;#([0-9]+|x[a-fA-F0-9]+);</match>
64
+ </context>
65
+
66
+ <context id="unallowed-chars" style-ref="error" extend-parent="false">
67
+ <match>[&amp;&lt;]</match>
68
+ </context>
69
+
70
+ <context id="attribute-value" style-ref="attribute-value" class="string" class-disabled="no-spell-check">
71
+ <start>["']</start>
72
+ <end>\%{0@start}</end>
73
+ <include>
74
+ <context ref="entity"/>
75
+ <context ref="character-reference"/>
76
+ <context ref="unallowed-chars"/>
77
+ </include>
78
+ </context>
79
+
80
+ <context id="attributes">
81
+ <start>\(</start>
82
+ <end>\)</end>
83
+ <include>
84
+ <context style-ref="error" extend-parent="false">
85
+ <match>"[^"]+" *[a-zA-Z0-9_-]+</match>
86
+ </context>
87
+ <context ref="attribute-name"/>
88
+ <context ref="attribute-value"/>
89
+ </include>
90
+ </context>
91
+
92
+ <context id="tags">
93
+ <match extended="true">
94
+ ^\s*\b
95
+ (
96
+ a|
97
+ abbr|
98
+ acronym|
99
+ address|
100
+ area|
101
+ article|
102
+ aside|
103
+ audio|
104
+ b|
105
+ base|
106
+ big|
107
+ blockquote|
108
+ body|
109
+ br|
110
+ button|
111
+ canvas|
112
+ caption|
113
+ cite|
114
+ code|
115
+ col|
116
+ colgroup|
117
+ dd|
118
+ del|
119
+ details|
120
+ dfn|
121
+ div|
122
+ dl|
123
+ dt|
124
+ em|
125
+ fieldset|
126
+ figcaption|
127
+ figure|
128
+ footer|
129
+ form|
130
+ frame|
131
+ frameset|
132
+ h1|
133
+ h2|
134
+ h3|
135
+ h4|
136
+ h5|
137
+ h6|
138
+ head|
139
+ header|
140
+ hgroup|
141
+ hr|
142
+ html|
143
+ i|
144
+ iframe|
145
+ img|
146
+ input|
147
+ ins|
148
+ kbd|
149
+ label|
150
+ legend|
151
+ li|
152
+ link|
153
+ map|
154
+ mark|
155
+ menu|
156
+ meta|
157
+ nav|
158
+ noframes|
159
+ noscript|
160
+ object|
161
+ ol|
162
+ optgroup|
163
+ option|
164
+ p|
165
+ param|
166
+ pre|
167
+ q|
168
+ samp|
169
+ script|
170
+ section|
171
+ select|
172
+ small|
173
+ span|
174
+ strike|
175
+ strong|
176
+ style|
177
+ sub|
178
+ summary|
179
+ sup|
180
+ table|
181
+ tbody|
182
+ td|
183
+ textarea|
184
+ tfoot|
185
+ th|
186
+ thead|
187
+ time|
188
+ title|
189
+ tr|
190
+ tt|
191
+ ul|
192
+ var|
193
+ var_keys|
194
+ video
195
+ )
196
+ \s*\b[\?!:]{0,1}
197
+ </match>
198
+ <include>
199
+ <context sub-pattern="1" style-ref="tags"/>
200
+ </include>
201
+ </context>
202
+
203
+ <context id="attribute-id" style-ref="attribute-name">
204
+ <match>#[a-zA-Z0-9_-]+</match>
205
+ </context>
206
+
207
+ <context id="attribute-class" style-ref="attribute-name">
208
+ <match>\.[a-zA-Z0-9_-]+</match>
209
+ </context>
210
+
211
+ <context id="line-comment" style-ref="comment" end-at-line-end="true" class="comment" class-disabled="no-spell-check">
212
+ <start>//</start>
213
+ <include>
214
+ <context ref="def:in-line-comment"/>
215
+ </include>
216
+ </context>
217
+
218
+ <context id="jade-executable">
219
+ <start>^\s*(-)</start>
220
+ <end>$</end>
221
+ </context>
222
+
223
+ <context id="interpolated">
224
+ <start>[^\\](#\{)</start>
225
+ <end>[^\}]+\}</end>
226
+ <include>
227
+ <context sub-pattern="1" where="start" style-ref="processing-instruction"/>
228
+ <context sub-pattern="0" where="end" style-ref="processing-instruction"/>
229
+ </include>
230
+ </context>
231
+
232
+ <context id="jade-filter" style-ref="processing-instruction">
233
+ <match>^\s*\:[^$]+$</match>
234
+ </context>
235
+
236
+ <context id="jade" class="no-spell-check">
237
+ <include>
238
+ <context ref="doctype"/>
239
+ <context ref="attributes"/>
240
+ <context ref="attribute-id"/>
241
+ <context ref="attribute-class"/>
242
+ <context ref="tags"/>
243
+ <context ref="line-comment"/>
244
+ <context ref="jade-executable"/>
245
+ <context ref="interpolated" />
246
+ <context ref="jade-filter"/>
247
+ </include>
248
+ </context>
249
+ </definitions>
250
+ </language>
@@ -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>