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
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="index.html" title="GtkSourceView 3 Reference Manual">
9
9
  <link rel="prev" href="index.html" title="GtkSourceView 3 Reference Manual">
10
10
  <link rel="next" href="ch01.html" title="Main Classes">
11
- <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.25.1 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
13
13
  </head>
14
14
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -137,17 +137,25 @@
137
137
  <dt><span class="chapter"><a href="ch08.html">Others</a></span></dt>
138
138
  <dd><dl>
139
139
  <dt>
140
+ <span class="refentrytitle"><a href="GtkSourceMap.html">GtkSourceMap</a></span><span class="refpurpose"> — Widget that displays a map for a specific <span class="type">GtkSourceView</span></span>
141
+ </dt>
142
+ <dt>
143
+ <span class="refentrytitle"><a href="GtkSourceTag.html">GtkSourceTag</a></span><span class="refpurpose"> — A tag that can be applied to text in a GtkSourceBuffer</span>
144
+ </dt>
145
+ <dt>
140
146
  <span class="refentrytitle"><a href="GtkSourceUndoManager.html">GtkSourceUndoManager</a></span><span class="refpurpose"> — Undo manager interface for GtkSourceView</span>
141
147
  </dt>
142
148
  <dt>
143
149
  <span class="refentrytitle"><a href="gtksourceview-3.0-GtkSourceUtils.html">GtkSourceUtils</a></span><span class="refpurpose"> — Utilities functions</span>
144
150
  </dt>
151
+ <dt>
152
+ <span class="refentrytitle"><a href="gtksourceview-3.0-Version-Information.html">Version Information</a></span><span class="refpurpose"> — Macros and functions to check the GtkSourceView version</span>
153
+ </dt>
145
154
  </dl></dd>
146
155
  </dl>
147
156
  </div>
148
157
  </div>
149
158
  <div class="footer">
150
- <hr>
151
- Generated by GTK-Doc V1.21.1</div>
159
+ <hr>Generated by GTK-Doc V1.25.1</div>
152
160
  </body>
153
161
  </html>
@@ -5,17 +5,17 @@
5
5
  <title>Style Scheme Definition Reference: GtkSourceView 3 Reference Manual</title>
6
6
  <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
7
  <link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
8
- <link rel="up" href="pt02.html" title="Part II. Syntax highlighting reference">
8
+ <link rel="up" href="ch09.html" title="Syntax highlighting reference">
9
9
  <link rel="prev" href="lang-reference.html" title="Language Definition v2.0 Reference">
10
10
  <link rel="next" href="object-tree.html" title="Object Hierarchy">
11
- <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.25.1 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
13
13
  </head>
14
14
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
15
  <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
16
  <td width="100%" align="left" class="shortcuts"></td>
17
17
  <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
- <td><a accesskey="u" href="pt02.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
18
+ <td><a accesskey="u" href="ch09.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
19
19
  <td><a accesskey="p" href="lang-reference.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
20
  <td><a accesskey="n" href="object-tree.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
21
  </tr></table>
@@ -181,7 +181,18 @@ Background color.
181
181
  </tr>
182
182
  <tr>
183
183
  <td><p><span class="term"><code class="code">underline</code></span></p></td>
184
- <td><p>"true" or "false"</p></td>
184
+ <td><p>
185
+ Accepts the values supported by PangoUnderline ("none", "single",
186
+ "double", "low", "error"). GtkSourceView versions &lt;= 3.16 only
187
+ supported "true" or "false" and such value are still accepted
188
+ for backward compatibility.
189
+ </p></td>
190
+ </tr>
191
+ <tr>
192
+ <td><p><span class="term"><code class="code">underline-color</code></span></p></td>
193
+ <td><p>
194
+ Underline color.
195
+ </p></td>
185
196
  </tr>
186
197
  <tr>
187
198
  <td><p><span class="term"><code class="code">strikethrough</code></span></p></td>
@@ -201,7 +212,7 @@ Scale the matched text block. Possible values are a float number as factor
201
212
  <p>
202
213
  </p>
203
214
  <p>
204
- The following are names of styles which control #GtkSourceView appearance:
215
+ The following are names of styles which control GtkSourceView appearance:
205
216
  </p>
206
217
  <div class="variablelist"><table border="0" class="variablelist">
207
218
  <colgroup>
@@ -223,23 +234,30 @@ The following are names of styles which control #GtkSourceView appearance:
223
234
  </tr>
224
235
  <tr>
225
236
  <td><p><span class="term"><code class="code">cursor</code></span></p></td>
226
- <td><p>Text cursor style. Only <code class="code">foreground</code> attribute is used
227
- for this style</p></td>
237
+ <td><p>Text cursor style. Only the <code class="code">foreground</code> attribute is used
238
+ for this style.</p></td>
228
239
  </tr>
229
240
  <tr>
230
241
  <td><p><span class="term"><code class="code">secondary-cursor</code></span></p></td>
231
- <td><p>Secondary cursor style (used in bidi text). Only <code class="code">foreground</code> attribute
232
- is used for this style. If this is not set while "cursor" is, then a color between text background
233
- and cursor colors is chosen, so it is enough to use "cursor" style only.</p></td>
242
+ <td><p>Secondary cursor style (used in bidirectional text). Only the
243
+ <code class="code">foreground</code> attribute is used for this style. If this is not set
244
+ while "cursor" is, then a color between text background and cursor colors is
245
+ chosen, so it is enough to use "cursor" style only.</p></td>
234
246
  </tr>
235
247
  <tr>
236
248
  <td><p><span class="term"><code class="code">current-line</code></span></p></td>
237
- <td><p>Current line style. Only <code class="code">background</code> attribute is used</p></td>
249
+ <td><p>Current line style. Only the <code class="code">background</code> attribute
250
+ is used.</p></td>
238
251
  </tr>
239
252
  <tr>
240
253
  <td><p><span class="term"><code class="code">line-numbers</code></span></p></td>
241
- <td><p>Text and background colors for the left margin, on which line numbers are
242
- drawn</p></td>
254
+ <td><p>Text and background colors for the left margin, on which line
255
+ numbers are drawn.</p></td>
256
+ </tr>
257
+ <tr>
258
+ <td><p><span class="term"><code class="code">current-line-number</code></span></p></td>
259
+ <td><p>Current line style for the left margin, on which the current
260
+ line number is drawn. Only the <code class="code">background</code> attribute is used.</p></td>
243
261
  </tr>
244
262
  <tr>
245
263
  <td><p><span class="term"><code class="code">bracket-match</code></span></p></td>
@@ -262,6 +280,11 @@ choice.</p></td>
262
280
  <td><p>Style to use for drawing spaces (special symbols for a space, a tabulation, etc).
263
281
  Only the <code class="code">foreground</code> attribute is used.</p></td>
264
282
  </tr>
283
+ <tr>
284
+ <td><p><span class="term"><code class="code">background-pattern</code></span></p></td>
285
+ <td><p>Style to use for drawing a background pattern, for example a
286
+ grid. Only the <code class="code">background</code> attribute is used.</p></td>
287
+ </tr>
265
288
  </tbody>
266
289
  </table></div>
267
290
  <p>
@@ -277,7 +300,6 @@ GtkSourceView-based application must use it by default.
277
300
  </div>
278
301
  </div>
279
302
  <div class="footer">
280
- <hr>
281
- Generated by GTK-Doc V1.21.1</div>
303
+ <hr>Generated by GTK-Doc V1.25.1</div>
282
304
  </body>
283
305
  </html>
@@ -60,7 +60,7 @@ a:hover
60
60
  div.informaltable table
61
61
  {
62
62
  border-collapse: separate;
63
- border-spacing: 1em 0.5em;
63
+ border-spacing: 1em 0.3em;
64
64
  border: none;
65
65
  }
66
66
 
@@ -148,6 +148,8 @@ div.table table th
148
148
  h4
149
149
  {
150
150
  color: #555753;
151
+ margin-top: 1em;
152
+ margin-bottom: 1em;
151
153
  }
152
154
 
153
155
  hr
@@ -166,17 +168,16 @@ dl.toc dt
166
168
  padding-bottom: 0.25em;
167
169
  }
168
170
 
169
- dl.toc > dd > dl > dt
171
+ dl.toc > dt
170
172
  {
171
173
  padding-top: 0.25em;
172
174
  padding-bottom: 0.25em;
175
+ font-weight: bold;
173
176
  }
174
177
 
175
- dl.toc > dt
178
+ dl.toc > dl
176
179
  {
177
- padding-top: 1em;
178
180
  padding-bottom: 0.5em;
179
- font-weight: bold;
180
181
  }
181
182
 
182
183
  .parameter
@@ -346,7 +347,9 @@ acronym,abbr
346
347
  }
347
348
 
348
349
  @media screen {
349
- sup a.footnote
350
+ /* these have a <sup> as a first child, but since there are no parent selectors
351
+ * we can't use that. */
352
+ a.footnote
350
353
  {
351
354
  position: relative;
352
355
  top: 0em ! important;
@@ -55,6 +55,7 @@
55
55
  <keyword>proceedings</keyword>
56
56
  <keyword>techreport</keyword>
57
57
  <keyword>unpublished</keyword>
58
+ <keyword>report</keyword>
58
59
  </context>
59
60
 
60
61
  <context id="field" style-ref="field" class="no-spell-check">
@@ -80,6 +81,14 @@
80
81
  <keyword>school</keyword>
81
82
  <keyword>institution</keyword>
82
83
  <keyword>type</keyword>
84
+ <keyword>doi</keyword>
85
+ <keyword>issn</keyword>
86
+ <keyword>isbn</keyword>
87
+ <keyword>url</keyword>
88
+ <keyword>numpages</keyword>
89
+ <keyword>subtitle</keyword>
90
+ <keyword>location</keyword>
91
+ <keyword>crossref</keyword>
83
92
  </context>
84
93
 
85
94
  <context id="bibtex">
@@ -136,7 +136,7 @@
136
136
  </include>
137
137
  </context>
138
138
 
139
- <context id="char" style-ref="char">
139
+ <context id="char" style-ref="char" class="string">
140
140
  <match>L?'(\%{escaped-character}|.)'</match>
141
141
  </context>
142
142
 
@@ -213,7 +213,12 @@
213
213
  </context>
214
214
 
215
215
  <context id="operators" style-ref="operator">
216
+ <keyword>(_A|a)lignof</keyword>
217
+ <keyword>_Generic</keyword>
218
+ <keyword>offsetof</keyword>
219
+ <keyword>(_S|s)tatic_assert</keyword>
216
220
  <keyword>sizeof</keyword>
221
+ <keyword>typeof</keyword>
217
222
  </context>
218
223
 
219
224
  <context id="types" style-ref="type">
@@ -222,10 +227,13 @@
222
227
  <keyword>_Imaginary</keyword>
223
228
  <keyword>bool</keyword>
224
229
  <keyword>char</keyword>
230
+ <keyword>char(16|32)_t</keyword>
225
231
  <keyword>double</keyword>
226
232
  <keyword>float</keyword>
227
233
  <keyword>int</keyword>
228
- <keyword>(u)?int(8|16|32|64)_t</keyword>
234
+ <keyword>(u)?int(_least|_fast)?(8|16|32|64)_t</keyword>
235
+ <keyword>(u)?intmax_t</keyword>
236
+ <keyword>(u)?intptr_t</keyword>
229
237
  <keyword>long</keyword>
230
238
  <keyword>ptrdiff_t</keyword>
231
239
  <keyword>off(64)?_t</keyword>
@@ -240,6 +248,10 @@
240
248
  </context>
241
249
 
242
250
  <context id="storage-class" style-ref="storage-class">
251
+ <keyword>(_A|a)lignas</keyword>
252
+ <keyword>_Atomic</keyword>
253
+ <keyword>(_N|n)oreturn</keyword>
254
+ <keyword>(_T|t)hread_local</keyword>
243
255
  <keyword>auto</keyword>
244
256
  <keyword>const</keyword>
245
257
  <keyword>extern</keyword>
@@ -22,15 +22,23 @@
22
22
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23
23
 
24
24
  -->
25
- <language id="chdr" _name="C/C++/ObjC Header" version="2.0" _section="Source">
25
+ <language id="chdr" _name="C/ObjC Header" version="2.0" _section="Source">
26
26
  <metadata>
27
- <property name="mimetypes">text/x-chdr;text/x-c++hdr</property>
28
- <property name="globs">*.hh;*.hp;*.hpp;*.h++;*.h</property>
27
+ <property name="mimetypes">text/x-chdr</property>
28
+ <property name="globs">*.h</property>
29
29
  <property name="line-comment-start">//</property>
30
30
  <property name="block-comment-start">/*</property>
31
31
  <property name="block-comment-end">*/</property>
32
32
  </metadata>
33
33
 
34
+ <!--
35
+ We include C++ and ObjC contexts since the .h extension
36
+ is also used for those languages. If you use .hh
37
+ or similar, we will use cpphdr.lang which is
38
+ basically the same thing, but having a separate lang file
39
+ allows a program to apply a language specific behavior,
40
+ for instance a different style for C++ headers.
41
+ -->
34
42
  <definitions>
35
43
  <context id="chdr">
36
44
  <include>
@@ -29,6 +29,7 @@
29
29
 
30
30
  <styles>
31
31
  <style id="builtin-command" _name="Builtin Command" map-to="def:function"/>
32
+ <style id="deprecated-builtin-command" _name="Deprecated Builtin Command" map-to="def:warning"/>
32
33
  <style id="builtin-variable" _name="Builtin Variable" map-to="def:builtin"/>
33
34
  <style id="constant" _name="Constant" map-to="def:constant"/>
34
35
  <style id="operator" _name="Operator" map-to="def:operator"/>
@@ -51,7 +52,6 @@
51
52
  <keyword>ADD_TEST</keyword>
52
53
  <keyword>AUX_SOURCE_DIRECTORY</keyword>
53
54
  <keyword>BUILD_COMMAND</keyword>
54
- <keyword>BUILD_NAME</keyword>
55
55
  <keyword>CMAKE_HOST_SYSTEM_INFORMATION</keyword>
56
56
  <keyword>CMAKE_MINIMUM_REQUIRED</keyword>
57
57
  <keyword>CMAKE_POLICY</keyword>
@@ -61,9 +61,7 @@
61
61
  <keyword>ENABLE_LANGUAGE</keyword>
62
62
  <keyword>ENABLE_TESTING</keyword>
63
63
  <keyword>EXECUTE_PROCESS</keyword>
64
- <keyword>EXEC_PROGRAM</keyword>
65
64
  <keyword>EXPORT</keyword>
66
- <keyword>EXPORT_LIBRARY_DEPENDENCIES</keyword>
67
65
  <keyword>FILE</keyword>
68
66
  <keyword>FIND_FILE</keyword>
69
67
  <keyword>FIND_LIBRARY</keyword>
@@ -83,24 +81,18 @@
83
81
  <keyword>INCLUDE_EXTERNAL_MSPROJECT</keyword>
84
82
  <keyword>INCLUDE_REGULAR_EXPRESSION</keyword>
85
83
  <keyword>INSTALL</keyword>
86
- <keyword>INSTALL_FILES</keyword>
87
- <keyword>INSTALL_PROGRAMS</keyword>
88
- <keyword>INSTALL_TARGETS</keyword>
89
84
  <keyword>LINK_DIRECTORIES</keyword>
90
85
  <keyword>LINK_LIBRARIES</keyword>
91
86
  <keyword>LIST</keyword>
92
87
  <keyword>LOAD_CACHE</keyword>
93
88
  <keyword>LOAD_COMMAND</keyword>
94
- <keyword>MAKE_DIRECTORY</keyword>
95
89
  <keyword>MARK_AS_ADVANCED</keyword>
96
90
  <keyword>MATH</keyword>
97
91
  <keyword>MESSAGE</keyword>
98
92
  <keyword>OPTION</keyword>
99
- <keyword>OUTPUT_REQUIRED_FILES</keyword>
100
93
  <keyword>PROJECT</keyword>
101
94
  <keyword>QT_WRAP_CPP</keyword>
102
95
  <keyword>QT_WRAP_UI</keyword>
103
- <keyword>REMOVE</keyword>
104
96
  <keyword>REMOVE_DEFINITIONS</keyword>
105
97
  <keyword>SEPARATE_ARGUMENTS</keyword>
106
98
  <keyword>SET</keyword>
@@ -112,8 +104,6 @@
112
104
  <keyword>SITE_NAME</keyword>
113
105
  <keyword>SOURCE_GROUP</keyword>
114
106
  <keyword>STRING</keyword>
115
- <keyword>SUBDIRS</keyword>
116
- <keyword>SUBDIR_DEPENDS</keyword>
117
107
  <keyword>TARGET_COMPILE_DEFINITIONS</keyword>
118
108
  <keyword>TARGET_COMPILE_FEATURES</keyword>
119
109
  <keyword>TARGET_COMPILE_OPTIONS</keyword>
@@ -123,10 +113,25 @@
123
113
  <keyword>TRY_COMPILE</keyword>
124
114
  <keyword>TRY_RUN</keyword>
125
115
  <keyword>UNSET</keyword>
116
+ <keyword>VARIABLE_WATCH</keyword>
117
+ </context>
118
+
119
+ <context id="deprecated-builtin-command" style-ref="deprecated-builtin-command">
120
+ <prefix>(?i)\b</prefix> <!-- case insensitive -->
121
+ <keyword>BUILD_NAME</keyword>
122
+ <keyword>EXEC_PROGRAM</keyword>
123
+ <keyword>EXPORT_LIBRARY_DEPENDENCIES</keyword>
124
+ <keyword>INSTALL_FILES</keyword>
125
+ <keyword>INSTALL_PROGRAMS</keyword>
126
+ <keyword>INSTALL_TARGETS</keyword>
127
+ <keyword>MAKE_DIRECTORY</keyword>
128
+ <keyword>OUTPUT_REQUIRED_FILES</keyword>
129
+ <keyword>REMOVE</keyword>
130
+ <keyword>SUBDIR_DEPENDS</keyword>
131
+ <keyword>SUBDIRS</keyword>
126
132
  <keyword>USE_MANGLED_MESA</keyword>
127
133
  <keyword>UTILITY_SOURCE</keyword>
128
134
  <keyword>VARIABLE_REQUIRES</keyword>
129
- <keyword>VARIABLE_WATCH</keyword>
130
135
  <keyword>WRITE_FILE</keyword>
131
136
  </context>
132
137
 
@@ -508,6 +513,7 @@
508
513
  <context ref="def:shell-like-comment"/>
509
514
  <context ref="constant"/>
510
515
  <context ref="builtin-command"/>
516
+ <context ref="deprecated-builtin-command"/>
511
517
  <context ref="operator"/>
512
518
  <context ref="control"/>
513
519
  </include>
@@ -0,0 +1,42 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+
4
+ This file is part of GtkSourceView
5
+
6
+ Authors: Marco Barisione, Emanuele Aina
7
+ Copyright (C) 2005-2007 Marco Barisione <barisione@gmail.com>
8
+ Copyright (C) 2005-2007 Emanuele Aina
9
+
10
+ GtkSourceView is free software; you can redistribute it and/or
11
+ modify it under the terms of the GNU Lesser General Public
12
+ License as published by the Free Software Foundation; either
13
+ version 2.1 of the License, or (at your option) any later version.
14
+
15
+ GtkSourceView is distributed in the hope that it will be useful,
16
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
17
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18
+ Lesser General Public License for more details.
19
+
20
+ You should have received a copy of the GNU Lesser General Public
21
+ License along with this library; if not, write to the Free Software
22
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23
+
24
+ -->
25
+ <language id="cpphdr" _name="C++ Header" version="2.0" _section="Source">
26
+ <metadata>
27
+ <property name="mimetypes">text/x-c++hdr</property>
28
+ <property name="globs">*.hh;*.hp;*.hpp;*.h++</property>
29
+ <property name="line-comment-start">//</property>
30
+ <property name="block-comment-start">/*</property>
31
+ <property name="block-comment-end">*/</property>
32
+ </metadata>
33
+
34
+ <definitions>
35
+ <context id="cpphdr">
36
+ <include>
37
+ <context ref="cpp:cpp-proper"/>
38
+ <context ref="c:c"/>
39
+ </include>
40
+ </context>
41
+ </definitions>
42
+ </language>
@@ -108,6 +108,8 @@
108
108
  </context>
109
109
 
110
110
  <context id="keywords" style-ref="keyword">
111
+ <keyword>async</keyword>
112
+ <keyword>await</keyword>
111
113
  <keyword>class</keyword>
112
114
  <keyword>delegate</keyword>
113
115
  <keyword>enum</keyword>
@@ -158,6 +160,7 @@
158
160
  <keyword>if</keyword>
159
161
  <keyword>in</keyword>
160
162
  <keyword>is</keyword>
163
+ <keyword>nameof</keyword>
161
164
  <keyword>new</keyword>
162
165
  <keyword>remove</keyword>
163
166
  <keyword>return</keyword>
@@ -172,6 +175,7 @@
172
175
  <keyword>typeof</keyword>
173
176
  <keyword>unchecked</keyword>
174
177
  <keyword>value</keyword>
178
+ <keyword>var</keyword>
175
179
  <keyword>void</keyword>
176
180
  <keyword>while</keyword>
177
181
  <keyword>yield</keyword>
@@ -183,6 +187,7 @@
183
187
  <keyword>char</keyword>
184
188
  <keyword>decimal</keyword>
185
189
  <keyword>double</keyword>
190
+ <keyword>dynamic</keyword>
186
191
  <keyword>float</keyword>
187
192
  <keyword>int</keyword>
188
193
  <keyword>long</keyword>