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
@@ -1,5 +1,4 @@
1
1
  <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
- <!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
3
2
  <book xmlns="http://www.devhelp.net/book" title="GtkSourceView 3 Reference Manual" link="index.html" author="" name="gtksourceview-3.0" version="2" language="c">
4
3
  <chapters>
5
4
  <sub name="API reference" link="pt01.html">
@@ -48,11 +47,14 @@
48
47
  <sub name="GtkSourceSearchSettings" link="GtkSourceSearchSettings.html"/>
49
48
  </sub>
50
49
  <sub name="Others" link="ch08.html">
50
+ <sub name="GtkSourceMap" link="GtkSourceMap.html"/>
51
+ <sub name="GtkSourceTag" link="GtkSourceTag.html"/>
51
52
  <sub name="GtkSourceUndoManager" link="GtkSourceUndoManager.html"/>
52
53
  <sub name="GtkSourceUtils" link="gtksourceview-3.0-GtkSourceUtils.html"/>
54
+ <sub name="Version Information" link="gtksourceview-3.0-Version-Information.html"/>
53
55
  </sub>
54
56
  </sub>
55
- <sub name="Syntax highlighting reference" link="pt02.html">
57
+ <sub name="Syntax highlighting reference" link="ch09.html">
56
58
  <sub name="Language Definition v2.0 Tutorial" link="lang-tutorial.html"/>
57
59
  <sub name="Language Definition v2.0 Reference" link="lang-reference.html"/>
58
60
  <sub name="Style Scheme Definition Reference" link="style-reference.html"/>
@@ -60,19 +62,26 @@
60
62
  <sub name="Object Hierarchy" link="object-tree.html"/>
61
63
  <sub name="Index of all symbols" link="api-index-full.html"/>
62
64
  <sub name="Index of deprecated symbols" link="api-index-deprecated.html"/>
65
+ <sub name="Index of new symbols in 2.0" link="api-index-2-0.html"/>
66
+ <sub name="Index of new symbols in 2.2" link="api-index-2-2.html"/>
67
+ <sub name="Index of new symbols in 2.4" link="api-index-2-4.html"/>
68
+ <sub name="Index of new symbols in 2.8" link="api-index-2-8.html"/>
69
+ <sub name="Index of new symbols in 2.10" link="api-index-2-10.html"/>
70
+ <sub name="Index of new symbols in 2.12" link="api-index-2-12.html"/>
63
71
  <sub name="Index of new symbols in 3.0" link="api-index-3-0.html"/>
64
72
  <sub name="Index of new symbols in 3.4" link="api-index-3-4.html"/>
65
73
  <sub name="Index of new symbols in 3.10" link="api-index-3-10.html"/>
66
74
  <sub name="Index of new symbols in 3.12" link="api-index-3-12.html"/>
67
75
  <sub name="Index of new symbols in 3.14" link="api-index-3-14.html"/>
68
76
  <sub name="Index of new symbols in 3.16" link="api-index-3-16.html"/>
77
+ <sub name="Index of new symbols in 3.18" link="api-index-3-18.html"/>
78
+ <sub name="Index of new symbols in 3.20" link="api-index-3-20.html"/>
69
79
  <sub name="Annotation Glossary" link="annotation-glossary.html"/>
70
80
  </chapters>
71
81
  <functions>
72
- <keyword type="" name="Undo/Redo" link="GtkSourceBuffer.html#id-1.2.2.2.9.5"/>
73
- <keyword type="" name="Context Classes" link="GtkSourceBuffer.html#id-1.2.2.2.9.6"/>
74
82
  <keyword type="function" name="gtk_source_buffer_new ()" link="GtkSourceBuffer.html#gtk-source-buffer-new"/>
75
83
  <keyword type="function" name="gtk_source_buffer_new_with_language ()" link="GtkSourceBuffer.html#gtk-source-buffer-new-with-language"/>
84
+ <keyword type="function" name="gtk_source_buffer_create_source_tag ()" link="GtkSourceBuffer.html#gtk-source-buffer-create-source-tag" since="3.20"/>
76
85
  <keyword type="function" name="gtk_source_buffer_set_highlight_syntax ()" link="GtkSourceBuffer.html#gtk-source-buffer-set-highlight-syntax"/>
77
86
  <keyword type="function" name="gtk_source_buffer_get_highlight_syntax ()" link="GtkSourceBuffer.html#gtk-source-buffer-get-highlight-syntax"/>
78
87
  <keyword type="function" name="gtk_source_buffer_set_language ()" link="GtkSourceBuffer.html#gtk-source-buffer-set-language"/>
@@ -104,11 +113,13 @@
104
113
  <keyword type="function" name="gtk_source_buffer_remove_source_marks ()" link="GtkSourceBuffer.html#gtk-source-buffer-remove-source-marks" since="2.2"/>
105
114
  <keyword type="function" name="gtk_source_buffer_change_case ()" link="GtkSourceBuffer.html#gtk-source-buffer-change-case" since="3.12"/>
106
115
  <keyword type="function" name="gtk_source_buffer_join_lines ()" link="GtkSourceBuffer.html#gtk-source-buffer-join-lines" since="3.16"/>
116
+ <keyword type="function" name="gtk_source_buffer_sort_lines ()" link="GtkSourceBuffer.html#gtk-source-buffer-sort-lines" since="3.18"/>
107
117
  <keyword type="function" name="gtk_source_buffer_set_implicit_trailing_newline ()" link="GtkSourceBuffer.html#gtk-source-buffer-set-implicit-trailing-newline" since="3.14"/>
108
118
  <keyword type="function" name="gtk_source_buffer_get_implicit_trailing_newline ()" link="GtkSourceBuffer.html#gtk-source-buffer-get-implicit-trailing-newline" since="3.14"/>
109
119
  <keyword type="struct" name="GtkSourceBuffer" link="GtkSourceBuffer.html#GtkSourceBuffer-struct"/>
110
120
  <keyword type="enum" name="enum GtkSourceBracketMatchType" link="GtkSourceBuffer.html#GtkSourceBracketMatchType"/>
111
121
  <keyword type="enum" name="enum GtkSourceChangeCaseType" link="GtkSourceBuffer.html#GtkSourceChangeCaseType" since="3.12"/>
122
+ <keyword type="enum" name="enum GtkSourceSortFlags" link="GtkSourceBuffer.html#GtkSourceSortFlags" since="3.18"/>
112
123
  <keyword type="property" name="The “can-redo” property" link="GtkSourceBuffer.html#GtkSourceBuffer--can-redo"/>
113
124
  <keyword type="property" name="The “can-undo” property" link="GtkSourceBuffer.html#GtkSourceBuffer--can-undo"/>
114
125
  <keyword type="property" name="The “highlight-matching-brackets” property" link="GtkSourceBuffer.html#GtkSourceBuffer--highlight-matching-brackets"/>
@@ -123,7 +134,6 @@
123
134
  <keyword type="signal" name="The “redo” signal" link="GtkSourceBuffer.html#GtkSourceBuffer-redo"/>
124
135
  <keyword type="signal" name="The “source-mark-updated” signal" link="GtkSourceBuffer.html#GtkSourceBuffer-source-mark-updated"/>
125
136
  <keyword type="signal" name="The “undo” signal" link="GtkSourceBuffer.html#GtkSourceBuffer-undo"/>
126
- <keyword type="" name="GtkSourceView as GtkBuildable" link="GtkSourceView.html#id-1.2.2.3.10.6"/>
127
137
  <keyword type="function" name="gtk_source_view_new ()" link="GtkSourceView.html#gtk-source-view-new"/>
128
138
  <keyword type="function" name="gtk_source_view_new_with_buffer ()" link="GtkSourceView.html#gtk-source-view-new-with-buffer"/>
129
139
  <keyword type="function" name="gtk_source_view_set_show_line_numbers ()" link="GtkSourceView.html#gtk-source-view-set-show-line-numbers"/>
@@ -136,8 +146,8 @@
136
146
  <keyword type="function" name="gtk_source_view_get_highlight_current_line ()" link="GtkSourceView.html#gtk-source-view-get-highlight-current-line"/>
137
147
  <keyword type="function" name="gtk_source_view_set_auto_indent ()" link="GtkSourceView.html#gtk-source-view-set-auto-indent"/>
138
148
  <keyword type="function" name="gtk_source_view_get_auto_indent ()" link="GtkSourceView.html#gtk-source-view-get-auto-indent"/>
139
- <keyword type="function" name="gtk_source_view_set_indent_on_tab ()" link="GtkSourceView.html#gtk-source-view-set-indent-on-tab" since="1.8"/>
140
- <keyword type="function" name="gtk_source_view_get_indent_on_tab ()" link="GtkSourceView.html#gtk-source-view-get-indent-on-tab" since="1.8"/>
149
+ <keyword type="function" name="gtk_source_view_set_indent_on_tab ()" link="GtkSourceView.html#gtk-source-view-set-indent-on-tab"/>
150
+ <keyword type="function" name="gtk_source_view_get_indent_on_tab ()" link="GtkSourceView.html#gtk-source-view-get-indent-on-tab"/>
141
151
  <keyword type="function" name="gtk_source_view_set_tab_width ()" link="GtkSourceView.html#gtk-source-view-set-tab-width"/>
142
152
  <keyword type="function" name="gtk_source_view_get_tab_width ()" link="GtkSourceView.html#gtk-source-view-get-tab-width"/>
143
153
  <keyword type="function" name="gtk_source_view_set_indent_width ()" link="GtkSourceView.html#gtk-source-view-set-indent-width"/>
@@ -147,6 +157,8 @@
147
157
  <keyword type="function" name="gtk_source_view_indent_lines ()" link="GtkSourceView.html#gtk-source-view-indent-lines" since="3.16"/>
148
158
  <keyword type="function" name="gtk_source_view_unindent_lines ()" link="GtkSourceView.html#gtk-source-view-unindent-lines" since="3.16"/>
149
159
  <keyword type="function" name="gtk_source_view_get_visual_column ()" link="GtkSourceView.html#gtk-source-view-get-visual-column"/>
160
+ <keyword type="function" name="gtk_source_view_set_smart_backspace ()" link="GtkSourceView.html#gtk-source-view-set-smart-backspace" since="3.18"/>
161
+ <keyword type="function" name="gtk_source_view_get_smart_backspace ()" link="GtkSourceView.html#gtk-source-view-get-smart-backspace" since="3.18"/>
150
162
  <keyword type="function" name="gtk_source_view_set_smart_home_end ()" link="GtkSourceView.html#gtk-source-view-set-smart-home-end"/>
151
163
  <keyword type="function" name="gtk_source_view_get_smart_home_end ()" link="GtkSourceView.html#gtk-source-view-get-smart-home-end"/>
152
164
  <keyword type="function" name="gtk_source_view_set_mark_attributes ()" link="GtkSourceView.html#gtk-source-view-set-mark-attributes"/>
@@ -176,6 +188,7 @@
176
188
  <keyword type="property" name="The “show-line-marks” property" link="GtkSourceView.html#GtkSourceView--show-line-marks"/>
177
189
  <keyword type="property" name="The “show-line-numbers” property" link="GtkSourceView.html#GtkSourceView--show-line-numbers"/>
178
190
  <keyword type="property" name="The “show-right-margin” property" link="GtkSourceView.html#GtkSourceView--show-right-margin"/>
191
+ <keyword type="property" name="The “smart-backspace” property" link="GtkSourceView.html#GtkSourceView--smart-backspace"/>
179
192
  <keyword type="property" name="The “smart-home-end” property" link="GtkSourceView.html#GtkSourceView--smart-home-end"/>
180
193
  <keyword type="property" name="The “tab-width” property" link="GtkSourceView.html#GtkSourceView--tab-width"/>
181
194
  <keyword type="signal" name="The “change-case” signal" link="GtkSourceView.html#GtkSourceView-change-case"/>
@@ -226,11 +239,14 @@
226
239
  <keyword type="property" name="The “italic-set” property" link="GtkSourceStyle.html#GtkSourceStyle--italic-set"/>
227
240
  <keyword type="property" name="The “line-background” property" link="GtkSourceStyle.html#GtkSourceStyle--line-background"/>
228
241
  <keyword type="property" name="The “line-background-set” property" link="GtkSourceStyle.html#GtkSourceStyle--line-background-set"/>
242
+ <keyword type="property" name="The “pango-underline” property" link="GtkSourceStyle.html#GtkSourceStyle--pango-underline"/>
229
243
  <keyword type="property" name="The “scale” property" link="GtkSourceStyle.html#GtkSourceStyle--scale"/>
230
244
  <keyword type="property" name="The “scale-set” property" link="GtkSourceStyle.html#GtkSourceStyle--scale-set"/>
231
245
  <keyword type="property" name="The “strikethrough” property" link="GtkSourceStyle.html#GtkSourceStyle--strikethrough"/>
232
246
  <keyword type="property" name="The “strikethrough-set” property" link="GtkSourceStyle.html#GtkSourceStyle--strikethrough-set"/>
233
247
  <keyword type="property" name="The “underline” property" link="GtkSourceStyle.html#GtkSourceStyle--underline"/>
248
+ <keyword type="property" name="The “underline-color” property" link="GtkSourceStyle.html#GtkSourceStyle--underline-color"/>
249
+ <keyword type="property" name="The “underline-color-set” property" link="GtkSourceStyle.html#GtkSourceStyle--underline-color-set"/>
234
250
  <keyword type="property" name="The “underline-set” property" link="GtkSourceStyle.html#GtkSourceStyle--underline-set"/>
235
251
  <keyword type="function" name="gtk_source_style_scheme_get_id ()" link="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-id" since="2.0"/>
236
252
  <keyword type="function" name="gtk_source_style_scheme_get_name ()" link="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-name" since="2.0"/>
@@ -263,7 +279,6 @@
263
279
  <keyword type="struct" name="struct GtkSourceStyleSchemeChooserButton" link="GtkSourceStyleSchemeChooserButton.html#GtkSourceStyleSchemeChooserButton-struct"/>
264
280
  <keyword type="function" name="gtk_source_style_scheme_chooser_widget_new ()" link="GtkSourceStyleSchemeChooserWidget.html#gtk-source-style-scheme-chooser-widget-new" since="3.16"/>
265
281
  <keyword type="struct" name="struct GtkSourceStyleSchemeChooserWidget" link="GtkSourceStyleSchemeChooserWidget.html#GtkSourceStyleSchemeChooserWidget-struct"/>
266
- <keyword type="" name="GtkSourceCompletion as GtkBuildable" link="GtkSourceCompletion.html#id-1.2.4.2.10.11"/>
267
282
  <keyword type="function" name="gtk_source_completion_add_provider ()" link="GtkSourceCompletion.html#gtk-source-completion-add-provider"/>
268
283
  <keyword type="function" name="gtk_source_completion_remove_provider ()" link="GtkSourceCompletion.html#gtk-source-completion-remove-provider"/>
269
284
  <keyword type="function" name="gtk_source_completion_get_providers ()" link="GtkSourceCompletion.html#gtk-source-completion-get-providers"/>
@@ -312,7 +327,9 @@
312
327
  <keyword type="function" name="gtk_source_completion_item_new_with_markup ()" link="GtkSourceCompletionItem.html#gtk-source-completion-item-new-with-markup"/>
313
328
  <keyword type="function" name="gtk_source_completion_item_new_from_stock ()" link="GtkSourceCompletionItem.html#gtk-source-completion-item-new-from-stock" deprecated="3.10: Use gtk_source_completion_item_new() instead."/>
314
329
  <keyword type="struct" name="GtkSourceCompletionItem" link="GtkSourceCompletionItem.html#GtkSourceCompletionItem-struct"/>
330
+ <keyword type="property" name="The “gicon” property" link="GtkSourceCompletionItem.html#GtkSourceCompletionItem--gicon"/>
315
331
  <keyword type="property" name="The “icon” property" link="GtkSourceCompletionItem.html#GtkSourceCompletionItem--icon"/>
332
+ <keyword type="property" name="The “icon-name” property" link="GtkSourceCompletionItem.html#GtkSourceCompletionItem--icon-name"/>
316
333
  <keyword type="property" name="The “info” property" link="GtkSourceCompletionItem.html#GtkSourceCompletionItem--info"/>
317
334
  <keyword type="property" name="The “label” property" link="GtkSourceCompletionItem.html#GtkSourceCompletionItem--label"/>
318
335
  <keyword type="property" name="The “markup” property" link="GtkSourceCompletionItem.html#GtkSourceCompletionItem--markup"/>
@@ -321,6 +338,8 @@
321
338
  <keyword type="function" name="gtk_source_completion_proposal_get_markup ()" link="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-markup"/>
322
339
  <keyword type="function" name="gtk_source_completion_proposal_get_text ()" link="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-text"/>
323
340
  <keyword type="function" name="gtk_source_completion_proposal_get_icon ()" link="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-icon"/>
341
+ <keyword type="function" name="gtk_source_completion_proposal_get_icon_name ()" link="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-icon-name" since="3.18"/>
342
+ <keyword type="function" name="gtk_source_completion_proposal_get_gicon ()" link="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-gicon" since="3.18"/>
324
343
  <keyword type="function" name="gtk_source_completion_proposal_get_info ()" link="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-info"/>
325
344
  <keyword type="function" name="gtk_source_completion_proposal_changed ()" link="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-changed"/>
326
345
  <keyword type="function" name="gtk_source_completion_proposal_hash ()" link="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-hash"/>
@@ -330,6 +349,8 @@
330
349
  <keyword type="signal" name="The “changed” signal" link="GtkSourceCompletionProposal.html#GtkSourceCompletionProposal-changed"/>
331
350
  <keyword type="function" name="gtk_source_completion_provider_get_name ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-name"/>
332
351
  <keyword type="function" name="gtk_source_completion_provider_get_icon ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-icon"/>
352
+ <keyword type="function" name="gtk_source_completion_provider_get_icon_name ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-icon-name" since="3.18"/>
353
+ <keyword type="function" name="gtk_source_completion_provider_get_gicon ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-gicon" since="3.18"/>
333
354
  <keyword type="function" name="gtk_source_completion_provider_populate ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-populate"/>
334
355
  <keyword type="function" name="gtk_source_completion_provider_get_activation ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-activation"/>
335
356
  <keyword type="function" name="gtk_source_completion_provider_match ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-match"/>
@@ -360,6 +381,7 @@
360
381
  <keyword type="function" name="gtk_source_encoding_get_name ()" link="GtkSourceEncoding.html#gtk-source-encoding-get-name" since="3.14"/>
361
382
  <keyword type="function" name="gtk_source_encoding_get_charset ()" link="GtkSourceEncoding.html#gtk-source-encoding-get-charset" since="3.14"/>
362
383
  <keyword type="function" name="gtk_source_encoding_get_all ()" link="GtkSourceEncoding.html#gtk-source-encoding-get-all" since="3.14"/>
384
+ <keyword type="function" name="gtk_source_encoding_get_default_candidates ()" link="GtkSourceEncoding.html#gtk-source-encoding-get-default-candidates" since="3.18"/>
363
385
  <keyword type="function" name="gtk_source_encoding_copy ()" link="GtkSourceEncoding.html#gtk-source-encoding-copy" since="3.14"/>
364
386
  <keyword type="function" name="gtk_source_encoding_free ()" link="GtkSourceEncoding.html#gtk-source-encoding-free" since="3.14"/>
365
387
  <keyword type="struct" name="GtkSourceEncoding" link="GtkSourceEncoding.html#GtkSourceEncoding-struct"/>
@@ -370,6 +392,11 @@
370
392
  <keyword type="function" name="gtk_source_file_get_encoding ()" link="GtkSourceFile.html#gtk-source-file-get-encoding" since="3.14"/>
371
393
  <keyword type="function" name="gtk_source_file_get_newline_type ()" link="GtkSourceFile.html#gtk-source-file-get-newline-type" since="3.14"/>
372
394
  <keyword type="function" name="gtk_source_file_get_compression_type ()" link="GtkSourceFile.html#gtk-source-file-get-compression-type" since="3.14"/>
395
+ <keyword type="function" name="gtk_source_file_check_file_on_disk ()" link="GtkSourceFile.html#gtk-source-file-check-file-on-disk" since="3.18"/>
396
+ <keyword type="function" name="gtk_source_file_is_local ()" link="GtkSourceFile.html#gtk-source-file-is-local" since="3.18"/>
397
+ <keyword type="function" name="gtk_source_file_is_externally_modified ()" link="GtkSourceFile.html#gtk-source-file-is-externally-modified" since="3.18"/>
398
+ <keyword type="function" name="gtk_source_file_is_deleted ()" link="GtkSourceFile.html#gtk-source-file-is-deleted" since="3.18"/>
399
+ <keyword type="function" name="gtk_source_file_is_readonly ()" link="GtkSourceFile.html#gtk-source-file-is-readonly" since="3.18"/>
373
400
  <keyword type="function" name="gtk_source_file_set_mount_operation_factory ()" link="GtkSourceFile.html#gtk-source-file-set-mount-operation-factory" since="3.14"/>
374
401
  <keyword type="struct" name="GtkSourceFile" link="GtkSourceFile.html#GtkSourceFile-struct"/>
375
402
  <keyword type="enum" name="enum GtkSourceNewlineType" link="GtkSourceFile.html#GtkSourceNewlineType" since="3.14"/>
@@ -379,6 +406,7 @@
379
406
  <keyword type="property" name="The “encoding” property" link="GtkSourceFile.html#GtkSourceFile--encoding"/>
380
407
  <keyword type="property" name="The “location” property" link="GtkSourceFile.html#GtkSourceFile--location"/>
381
408
  <keyword type="property" name="The “newline-type” property" link="GtkSourceFile.html#GtkSourceFile--newline-type"/>
409
+ <keyword type="property" name="The “read-only” property" link="GtkSourceFile.html#GtkSourceFile--read-only"/>
382
410
  <keyword type="function" name="gtk_source_file_loader_new ()" link="GtkSourceFileLoader.html#gtk-source-file-loader-new" since="3.14"/>
383
411
  <keyword type="function" name="gtk_source_file_loader_new_from_stream ()" link="GtkSourceFileLoader.html#gtk-source-file-loader-new-from-stream" since="3.14"/>
384
412
  <keyword type="function" name="gtk_source_file_loader_set_candidate_encodings ()" link="GtkSourceFileLoader.html#gtk-source-file-loader-set-candidate-encodings" since="3.14"/>
@@ -621,6 +649,16 @@
621
649
  <keyword type="property" name="The “regex-enabled” property" link="GtkSourceSearchSettings.html#GtkSourceSearchSettings--regex-enabled"/>
622
650
  <keyword type="property" name="The “search-text” property" link="GtkSourceSearchSettings.html#GtkSourceSearchSettings--search-text"/>
623
651
  <keyword type="property" name="The “wrap-around” property" link="GtkSourceSearchSettings.html#GtkSourceSearchSettings--wrap-around"/>
652
+ <keyword type="function" name="gtk_source_map_new ()" link="GtkSourceMap.html#gtk-source-map-new" since="3.18"/>
653
+ <keyword type="function" name="gtk_source_map_set_view ()" link="GtkSourceMap.html#gtk-source-map-set-view" since="3.18"/>
654
+ <keyword type="function" name="gtk_source_map_get_view ()" link="GtkSourceMap.html#gtk-source-map-get-view" since="3.18"/>
655
+ <keyword type="struct" name="struct GtkSourceMap" link="GtkSourceMap.html#GtkSourceMap-struct"/>
656
+ <keyword type="property" name="The “font-desc” property" link="GtkSourceMap.html#GtkSourceMap--font-desc"/>
657
+ <keyword type="property" name="The “view” property" link="GtkSourceMap.html#GtkSourceMap--view"/>
658
+ <keyword type="function" name="gtk_source_tag_new ()" link="GtkSourceTag.html#gtk-source-tag-new" since="3.20"/>
659
+ <keyword type="struct" name="GtkSourceTag" link="GtkSourceTag.html#GtkSourceTag-struct"/>
660
+ <keyword type="property" name="The “draw-spaces” property" link="GtkSourceTag.html#GtkSourceTag--draw-spaces"/>
661
+ <keyword type="property" name="The “draw-spaces-set” property" link="GtkSourceTag.html#GtkSourceTag--draw-spaces-set"/>
624
662
  <keyword type="function" name="gtk_source_undo_manager_can_undo ()" link="GtkSourceUndoManager.html#gtk-source-undo-manager-can-undo" since="2.10"/>
625
663
  <keyword type="function" name="gtk_source_undo_manager_can_redo ()" link="GtkSourceUndoManager.html#gtk-source-undo-manager-can-redo" since="2.10"/>
626
664
  <keyword type="function" name="gtk_source_undo_manager_undo ()" link="GtkSourceUndoManager.html#gtk-source-undo-manager-undo" since="2.10"/>
@@ -634,11 +672,27 @@
634
672
  <keyword type="signal" name="The “can-undo-changed” signal" link="GtkSourceUndoManager.html#GtkSourceUndoManager-can-undo-changed"/>
635
673
  <keyword type="function" name="gtk_source_utils_unescape_search_text ()" link="gtksourceview-3.0-GtkSourceUtils.html#gtk-source-utils-unescape-search-text" since="3.10"/>
636
674
  <keyword type="function" name="gtk_source_utils_escape_search_text ()" link="gtksourceview-3.0-GtkSourceUtils.html#gtk-source-utils-escape-search-text" since="3.10"/>
637
- <keyword type="" name="Simple contexts" link="lang-reference.html#id-1.3.3.14.5"/>
638
- <keyword type="" name="Container contexts" link="lang-reference.html#id-1.3.3.14.6"/>
639
- <keyword type="" name="Sub-pattern contexts" link="lang-reference.html#id-1.3.3.14.7"/>
640
- <keyword type="" name="Reference contexts" link="lang-reference.html#id-1.3.3.14.8"/>
641
- <keyword type="" name="Keyword contexts" link="lang-reference.html#id-1.3.3.14.9"/>
675
+ <keyword type="function" name="gtk_source_get_major_version ()" link="gtksourceview-3.0-Version-Information.html#gtk-source-get-major-version" since="3.20"/>
676
+ <keyword type="function" name="gtk_source_get_minor_version ()" link="gtksourceview-3.0-Version-Information.html#gtk-source-get-minor-version" since="3.20"/>
677
+ <keyword type="function" name="gtk_source_get_micro_version ()" link="gtksourceview-3.0-Version-Information.html#gtk-source-get-micro-version" since="3.20"/>
678
+ <keyword type="function" name="gtk_source_check_version ()" link="gtksourceview-3.0-Version-Information.html#gtk-source-check-version" since="3.20"/>
679
+ <keyword type="macro" name="GTK_SOURCE_CHECK_VERSION()" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-CHECK-VERSION:CAPS" since="3.20"/>
680
+ <keyword type="macro" name="GTK_SOURCE_MAJOR_VERSION" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-MAJOR-VERSION:CAPS" since="3.20"/>
681
+ <keyword type="macro" name="GTK_SOURCE_MINOR_VERSION" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-MINOR-VERSION:CAPS" since="3.20"/>
682
+ <keyword type="macro" name="GTK_SOURCE_MICRO_VERSION" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-MICRO-VERSION:CAPS" since="3.20"/>
683
+ <keyword type="macro" name="GTK_SOURCE_VERSION_3_0" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-0:CAPS" since="3.20"/>
684
+ <keyword type="macro" name="GTK_SOURCE_VERSION_3_2" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-2:CAPS" since="3.20"/>
685
+ <keyword type="macro" name="GTK_SOURCE_VERSION_3_4" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-4:CAPS" since="3.20"/>
686
+ <keyword type="macro" name="GTK_SOURCE_VERSION_3_6" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-6:CAPS" since="3.20"/>
687
+ <keyword type="macro" name="GTK_SOURCE_VERSION_3_8" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-8:CAPS" since="3.20"/>
688
+ <keyword type="macro" name="GTK_SOURCE_VERSION_3_10" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-10:CAPS" since="3.20"/>
689
+ <keyword type="macro" name="GTK_SOURCE_VERSION_3_12" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-12:CAPS" since="3.20"/>
690
+ <keyword type="macro" name="GTK_SOURCE_VERSION_3_14" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-14:CAPS" since="3.20"/>
691
+ <keyword type="macro" name="GTK_SOURCE_VERSION_3_16" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-16:CAPS" since="3.20"/>
692
+ <keyword type="macro" name="GTK_SOURCE_VERSION_3_18" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-18:CAPS" since="3.20"/>
693
+ <keyword type="macro" name="GTK_SOURCE_VERSION_3_20" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-20:CAPS" since="3.20"/>
694
+ <keyword type="macro" name="GTK_SOURCE_VERSION_MIN_REQUIRED" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-MIN-REQUIRED:CAPS" since="3.20"/>
695
+ <keyword type="macro" name="GTK_SOURCE_VERSION_MAX_ALLOWED" link="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-MAX-ALLOWED:CAPS" since="3.20"/>
642
696
  <keyword type="constant" name="GTK_SOURCE_BRACKET_MATCH_NONE" link="GtkSourceBuffer.html#GTK-SOURCE-BRACKET-MATCH-NONE:CAPS"/>
643
697
  <keyword type="constant" name="GTK_SOURCE_BRACKET_MATCH_OUT_OF_RANGE" link="GtkSourceBuffer.html#GTK-SOURCE-BRACKET-MATCH-OUT-OF-RANGE:CAPS"/>
644
698
  <keyword type="constant" name="GTK_SOURCE_BRACKET_MATCH_NOT_FOUND" link="GtkSourceBuffer.html#GTK-SOURCE-BRACKET-MATCH-NOT-FOUND:CAPS"/>
@@ -647,6 +701,10 @@
647
701
  <keyword type="constant" name="GTK_SOURCE_CHANGE_CASE_UPPER" link="GtkSourceBuffer.html#GTK-SOURCE-CHANGE-CASE-UPPER:CAPS"/>
648
702
  <keyword type="constant" name="GTK_SOURCE_CHANGE_CASE_TOGGLE" link="GtkSourceBuffer.html#GTK-SOURCE-CHANGE-CASE-TOGGLE:CAPS"/>
649
703
  <keyword type="constant" name="GTK_SOURCE_CHANGE_CASE_TITLE" link="GtkSourceBuffer.html#GTK-SOURCE-CHANGE-CASE-TITLE:CAPS"/>
704
+ <keyword type="constant" name="GTK_SOURCE_SORT_FLAGS_NONE" link="GtkSourceBuffer.html#GTK-SOURCE-SORT-FLAGS-NONE:CAPS"/>
705
+ <keyword type="constant" name="GTK_SOURCE_SORT_FLAGS_CASE_SENSITIVE" link="GtkSourceBuffer.html#GTK-SOURCE-SORT-FLAGS-CASE-SENSITIVE:CAPS"/>
706
+ <keyword type="constant" name="GTK_SOURCE_SORT_FLAGS_REVERSE_ORDER" link="GtkSourceBuffer.html#GTK-SOURCE-SORT-FLAGS-REVERSE-ORDER:CAPS"/>
707
+ <keyword type="constant" name="GTK_SOURCE_SORT_FLAGS_REMOVE_DUPLICATES" link="GtkSourceBuffer.html#GTK-SOURCE-SORT-FLAGS-REMOVE-DUPLICATES:CAPS"/>
650
708
  <keyword type="constant" name="GTK_SOURCE_SMART_HOME_END_DISABLED" link="GtkSourceView.html#GTK-SOURCE-SMART-HOME-END-DISABLED:CAPS"/>
651
709
  <keyword type="constant" name="GTK_SOURCE_SMART_HOME_END_BEFORE" link="GtkSourceView.html#GTK-SOURCE-SMART-HOME-END-BEFORE:CAPS"/>
652
710
  <keyword type="constant" name="GTK_SOURCE_SMART_HOME_END_AFTER" link="GtkSourceView.html#GTK-SOURCE-SMART-HOME-END-AFTER:CAPS"/>
@@ -689,5 +747,29 @@
689
747
  <keyword type="constant" name="GTK_SOURCE_GUTTER_RENDERER_ALIGNMENT_MODE_CELL" link="GtkSourceGutterRenderer.html#GTK-SOURCE-GUTTER-RENDERER-ALIGNMENT-MODE-CELL:CAPS"/>
690
748
  <keyword type="constant" name="GTK_SOURCE_GUTTER_RENDERER_ALIGNMENT_MODE_FIRST" link="GtkSourceGutterRenderer.html#GTK-SOURCE-GUTTER-RENDERER-ALIGNMENT-MODE-FIRST:CAPS"/>
691
749
  <keyword type="constant" name="GTK_SOURCE_GUTTER_RENDERER_ALIGNMENT_MODE_LAST" link="GtkSourceGutterRenderer.html#GTK-SOURCE-GUTTER-RENDERER-ALIGNMENT-MODE-LAST:CAPS"/>
750
+ <keyword type="member" name="GtkSourceCompletionProposalIface.parent" link="GtkSourceCompletionProposal.html#GtkSourceCompletionProposalIface.parent"/>
751
+ <keyword type="member" name="GtkSourceCompletionProposalIface.get-label" link="GtkSourceCompletionProposal.html#GtkSourceCompletionProposalIface.get-label"/>
752
+ <keyword type="member" name="GtkSourceCompletionProposalIface.get-markup" link="GtkSourceCompletionProposal.html#GtkSourceCompletionProposalIface.get-markup"/>
753
+ <keyword type="member" name="GtkSourceCompletionProposalIface.get-text" link="GtkSourceCompletionProposal.html#GtkSourceCompletionProposalIface.get-text"/>
754
+ <keyword type="member" name="GtkSourceCompletionProposalIface.get-icon" link="GtkSourceCompletionProposal.html#GtkSourceCompletionProposalIface.get-icon"/>
755
+ <keyword type="member" name="GtkSourceCompletionProposalIface.get-icon-name" link="GtkSourceCompletionProposal.html#GtkSourceCompletionProposalIface.get-icon-name"/>
756
+ <keyword type="member" name="GtkSourceCompletionProposalIface.get-gicon" link="GtkSourceCompletionProposal.html#GtkSourceCompletionProposalIface.get-gicon"/>
757
+ <keyword type="member" name="GtkSourceCompletionProposalIface.get-info" link="GtkSourceCompletionProposal.html#GtkSourceCompletionProposalIface.get-info"/>
758
+ <keyword type="member" name="GtkSourceCompletionProposalIface.hash" link="GtkSourceCompletionProposal.html#GtkSourceCompletionProposalIface.hash"/>
759
+ <keyword type="member" name="GtkSourceCompletionProposalIface.equal" link="GtkSourceCompletionProposal.html#GtkSourceCompletionProposalIface.equal"/>
760
+ <keyword type="member" name="GtkSourceCompletionProposalIface.changed" link="GtkSourceCompletionProposal.html#GtkSourceCompletionProposalIface.changed"/>
761
+ <keyword type="member" name="GtkSourceCompletionProviderIface.get-name" link="GtkSourceCompletionProvider.html#GtkSourceCompletionProviderIface.get-name"/>
762
+ <keyword type="member" name="GtkSourceCompletionProviderIface.get-icon" link="GtkSourceCompletionProvider.html#GtkSourceCompletionProviderIface.get-icon"/>
763
+ <keyword type="member" name="GtkSourceCompletionProviderIface.get-icon-name" link="GtkSourceCompletionProvider.html#GtkSourceCompletionProviderIface.get-icon-name"/>
764
+ <keyword type="member" name="GtkSourceCompletionProviderIface.get-gicon" link="GtkSourceCompletionProvider.html#GtkSourceCompletionProviderIface.get-gicon"/>
765
+ <keyword type="member" name="GtkSourceCompletionProviderIface.populate" link="GtkSourceCompletionProvider.html#GtkSourceCompletionProviderIface.populate"/>
766
+ <keyword type="member" name="GtkSourceCompletionProviderIface.match" link="GtkSourceCompletionProvider.html#GtkSourceCompletionProviderIface.match"/>
767
+ <keyword type="member" name="GtkSourceCompletionProviderIface.get-activation" link="GtkSourceCompletionProvider.html#GtkSourceCompletionProviderIface.get-activation"/>
768
+ <keyword type="member" name="GtkSourceCompletionProviderIface.get-info-widget" link="GtkSourceCompletionProvider.html#GtkSourceCompletionProviderIface.get-info-widget"/>
769
+ <keyword type="member" name="GtkSourceCompletionProviderIface.update-info" link="GtkSourceCompletionProvider.html#GtkSourceCompletionProviderIface.update-info"/>
770
+ <keyword type="member" name="GtkSourceCompletionProviderIface.get-start-iter" link="GtkSourceCompletionProvider.html#GtkSourceCompletionProviderIface.get-start-iter"/>
771
+ <keyword type="member" name="GtkSourceCompletionProviderIface.activate-proposal" link="GtkSourceCompletionProvider.html#GtkSourceCompletionProviderIface.activate-proposal"/>
772
+ <keyword type="member" name="GtkSourceCompletionProviderIface.get-interactive-delay" link="GtkSourceCompletionProvider.html#GtkSourceCompletionProviderIface.get-interactive-delay"/>
773
+ <keyword type="member" name="GtkSourceCompletionProviderIface.get-priority" link="GtkSourceCompletionProvider.html#GtkSourceCompletionProviderIface.get-priority"/>
692
774
  </functions>
693
775
  </book>
@@ -6,7 +6,7 @@
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
8
  <link rel="next" href="pt01.html" title="Part I. API reference">
9
- <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
9
+ <meta name="generator" content="GTK-Doc V1.25.1 (XML mode)">
10
10
  <link rel="stylesheet" href="style.css" type="text/css">
11
11
  </head>
12
12
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -14,8 +14,7 @@
14
14
  <div class="titlepage">
15
15
  <div>
16
16
  <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">GtkSourceView 3 Reference Manual</p></th></tr></table></div>
17
- <div><p class="releaseinfo">for GtkSourceView 3.16.1
18
- </p></div>
17
+ <div><p class="releaseinfo">for GtkSourceView 3.20.1</p></div>
19
18
  </div>
20
19
  <hr>
21
20
  </div>
@@ -134,14 +133,23 @@
134
133
  <dt><span class="chapter"><a href="ch08.html">Others</a></span></dt>
135
134
  <dd><dl>
136
135
  <dt>
136
+ <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>
137
+ </dt>
138
+ <dt>
139
+ <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>
140
+ </dt>
141
+ <dt>
137
142
  <span class="refentrytitle"><a href="GtkSourceUndoManager.html">GtkSourceUndoManager</a></span><span class="refpurpose"> — Undo manager interface for GtkSourceView</span>
138
143
  </dt>
139
144
  <dt>
140
145
  <span class="refentrytitle"><a href="gtksourceview-3.0-GtkSourceUtils.html">GtkSourceUtils</a></span><span class="refpurpose"> — Utilities functions</span>
141
146
  </dt>
147
+ <dt>
148
+ <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>
149
+ </dt>
142
150
  </dl></dd>
143
151
  </dl></dd>
144
- <dt><span class="part"><a href="pt02.html">II. Syntax highlighting reference</a></span></dt>
152
+ <dt><span class="chapter"><a href="ch09.html">Syntax highlighting reference</a></span></dt>
145
153
  <dd><dl>
146
154
  <dt>
147
155
  <span class="refentrytitle"><a href="lang-tutorial.html">Language Definition v2.0 Tutorial</a></span><span class="refpurpose"> —
@@ -162,17 +170,24 @@ Reference to the GtkSourceView style scheme definition file format
162
170
  <dt><span class="chapter"><a href="object-tree.html">Object Hierarchy</a></span></dt>
163
171
  <dt><span class="index"><a href="api-index-full.html">Index of all symbols</a></span></dt>
164
172
  <dt><span class="index"><a href="api-index-deprecated.html">Index of deprecated symbols</a></span></dt>
173
+ <dt><span class="index"><a href="api-index-2-0.html">Index of new symbols in 2.0</a></span></dt>
174
+ <dt><span class="index"><a href="api-index-2-2.html">Index of new symbols in 2.2</a></span></dt>
175
+ <dt><span class="index"><a href="api-index-2-4.html">Index of new symbols in 2.4</a></span></dt>
176
+ <dt><span class="index"><a href="api-index-2-8.html">Index of new symbols in 2.8</a></span></dt>
177
+ <dt><span class="index"><a href="api-index-2-10.html">Index of new symbols in 2.10</a></span></dt>
178
+ <dt><span class="index"><a href="api-index-2-12.html">Index of new symbols in 2.12</a></span></dt>
165
179
  <dt><span class="index"><a href="api-index-3-0.html">Index of new symbols in 3.0</a></span></dt>
166
180
  <dt><span class="index"><a href="api-index-3-4.html">Index of new symbols in 3.4</a></span></dt>
167
181
  <dt><span class="index"><a href="api-index-3-10.html">Index of new symbols in 3.10</a></span></dt>
168
182
  <dt><span class="index"><a href="api-index-3-12.html">Index of new symbols in 3.12</a></span></dt>
169
183
  <dt><span class="index"><a href="api-index-3-14.html">Index of new symbols in 3.14</a></span></dt>
170
184
  <dt><span class="index"><a href="api-index-3-16.html">Index of new symbols in 3.16</a></span></dt>
185
+ <dt><span class="index"><a href="api-index-3-18.html">Index of new symbols in 3.18</a></span></dt>
186
+ <dt><span class="index"><a href="api-index-3-20.html">Index of new symbols in 3.20</a></span></dt>
171
187
  <dt><span class="glossary"><a href="annotation-glossary.html">Annotation Glossary</a></span></dt>
172
188
  </dl></div>
173
189
  </div>
174
190
  <div class="footer">
175
- <hr>
176
- Generated by GTK-Doc V1.21.1</div>
191
+ <hr>Generated by GTK-Doc V1.25.1</div>
177
192
  </body>
178
193
  </html>
@@ -5,17 +5,17 @@
5
5
  <title>Language Definition v2.0 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-tutorial.html" title="Language Definition v2.0 Tutorial">
10
10
  <link rel="next" href="style-reference.html" title="Style Scheme Definition Reference">
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-tutorial.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
20
  <td><a accesskey="n" href="style-reference.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
21
  </tr></table>
@@ -432,11 +432,14 @@ default context classes:
432
432
  <span class="emphasis"><em>comment</em></span>: the context delimits a comment;
433
433
  </p></li>
434
434
  <li class="listitem"><p>
435
- <span class="emphasis"><em>string</em></span>: the context delimits a string;
435
+ <span class="emphasis"><em>no-spell-check</em></span>: the context's content should
436
+ not be spell checked;
436
437
  </p></li>
437
438
  <li class="listitem"><p>
438
- <span class="emphasis"><em>no-spell-check</em></span>: the context's content should
439
- not be spell checked.
439
+ <span class="emphasis"><em>path</em></span>: the context delimits a path to a file;
440
+ </p></li>
441
+ <li class="listitem"><p>
442
+ <span class="emphasis"><em>string</em></span>: the context delimits a string.
440
443
  </p></li>
441
444
  </ul></div>
442
445
  <div class="refsect2">
@@ -910,7 +913,6 @@ The id of the context to put in place of the context being replaced. Ex: <code c
910
913
  </div>
911
914
  </div>
912
915
  <div class="footer">
913
- <hr>
914
- Generated by GTK-Doc V1.21.1</div>
916
+ <hr>Generated by GTK-Doc V1.25.1</div>
915
917
  </body>
916
918
  </html>
@@ -5,18 +5,18 @@
5
5
  <title>Language Definition v2.0 Tutorial: 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">
9
- <link rel="prev" href="pt02.html" title="Part II. Syntax highlighting reference">
8
+ <link rel="up" href="ch09.html" title="Syntax highlighting reference">
9
+ <link rel="prev" href="ch09.html" title="Syntax highlighting reference">
10
10
  <link rel="next" href="lang-reference.html" title="Language Definition v2.0 Reference">
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>
19
- <td><a accesskey="p" href="pt02.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></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
+ <td><a accesskey="p" href="ch09.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
20
  <td><a accesskey="n" href="lang-reference.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
21
  </tr></table>
22
22
  <div class="refentry">
@@ -648,7 +648,6 @@ for this tutorial:
648
648
  </div>
649
649
  </div>
650
650
  <div class="footer">
651
- <hr>
652
- Generated by GTK-Doc V1.21.1</div>
651
+ <hr>Generated by GTK-Doc V1.25.1</div>
653
652
  </body>
654
653
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="index.html" title="GtkSourceView 3 Reference Manual">
9
9
  <link rel="prev" href="style-reference.html" title="Style Scheme Definition Reference">
10
10
  <link rel="next" href="api-index-full.html" title="Index of all symbols">
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">
@@ -23,21 +23,22 @@
23
23
  <div class="titlepage"><div><div><h1 class="title">
24
24
  <a name="object-tree"></a>Object Hierarchy</h1></div></div></div>
25
25
  <pre class="screen">
26
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
27
- <span class="lineart">├──</span> <a href="http://developer.gnome.org/gtk2/GtkTextBuffer.html">GtkTextBuffer</a>
26
+ <a href="/usr/share/gtk-doc/html/gobjectgobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
27
+ <span class="lineart">├──</span> <a href="/usr/share/gtk-doc/html/gtk3GtkTextBuffer.html#GtkTextBuffer-struct">GtkTextBuffer</a>
28
28
  <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
29
- <span class="lineart">├──</span> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
29
+ <span class="lineart">├──</span> <a href="/usr/share/gtk-doc/html/gobjectgobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
30
30
  <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GtkSourceCompletionContext.html" title="GtkSourceCompletionContext">GtkSourceCompletionContext</a>
31
- <span class="lineart">│</span> <span class="lineart">├──</span> <a href="http://developer.gnome.org/gtk2/GtkWidget.html">GtkWidget</a>
32
- <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkContainer.html">GtkContainer</a>
33
- <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a href="http://developer.gnome.org/gtk2/GtkBin.html">GtkBin</a>
34
- <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a href="http://developer.gnome.org/gtk2/GtkWindow.html">GtkWindow</a>
31
+ <span class="lineart">│</span> <span class="lineart">├──</span> <a href="/usr/share/gtk-doc/html/gtk3GtkWidget.html#GtkWidget-struct">GtkWidget</a>
32
+ <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk3GtkContainer.html#GtkContainer-struct">GtkContainer</a>
33
+ <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a href="/usr/share/gtk-doc/html/gtk3GtkBin.html#GtkBin-struct">GtkBin</a>
34
+ <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a href="/usr/share/gtk-doc/html/gtk3GtkWindow.html#GtkWindow-struct">GtkWindow</a>
35
35
  <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkSourceCompletionInfo.html" title="GtkSourceCompletionInfo">GtkSourceCompletionInfo</a>
36
- <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a href="http://developer.gnome.org/gtk2/GtkButton.html">GtkButton</a>
36
+ <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a href="/usr/share/gtk-doc/html/gtk3GtkButton.html#GtkButton-struct">GtkButton</a>
37
37
  <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkSourceStyleSchemeChooserButton.html" title="GtkSourceStyleSchemeChooserButton">GtkSourceStyleSchemeChooserButton</a>
38
38
  <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkSourceStyleSchemeChooserWidget.html" title="GtkSourceStyleSchemeChooserWidget">GtkSourceStyleSchemeChooserWidget</a>
39
- <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkTextView.html">GtkTextView</a>
39
+ <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk3GtkTextView.html#GtkTextView-struct">GtkTextView</a>
40
40
  <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
41
+ <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkSourceMap.html" title="GtkSourceMap">GtkSourceMap</a>
41
42
  <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
42
43
  <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
43
44
  <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>
@@ -51,14 +52,16 @@
51
52
  <span class="lineart">├──</span> <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
52
53
  <span class="lineart">├──</span> <a class="link" href="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager">GtkSourceLanguageManager</a>
53
54
  <span class="lineart">├──</span> <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
54
- <span class="lineart">├──</span> <a href="http://developer.gnome.org/gtk2/GtkTextMark.html">GtkTextMark</a>
55
+ <span class="lineart">├──</span> <a href="/usr/share/gtk-doc/html/gtk3GtkTextMark.html#GtkTextMark-struct">GtkTextMark</a>
55
56
  <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkSourceMark.html" title="GtkSourceMark">GtkSourceMark</a>
56
57
  <span class="lineart">├──</span> <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
57
58
  <span class="lineart">├──</span> <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
58
59
  <span class="lineart">├──</span> <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
59
60
  <span class="lineart">├──</span> <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
60
61
  <span class="lineart">├──</span> <a class="link" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>
61
- <span class="lineart">╰──</span> <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>
62
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>
63
+ <span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk3GtkTextTag.html#GtkTextTag-struct">GtkTextTag</a>
64
+ <span class="lineart">╰──</span> <a class="link" href="GtkSourceTag.html" title="GtkSourceTag">GtkSourceTag</a>
62
65
  <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html">GInterface</a>
63
66
  <span class="lineart">├──</span> <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
64
67
  <span class="lineart">├──</span> <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
@@ -69,7 +72,6 @@
69
72
  </pre>
70
73
  </div>
71
74
  <div class="footer">
72
- <hr>
73
- Generated by GTK-Doc V1.21.1</div>
75
+ <hr>Generated by GTK-Doc V1.25.1</div>
74
76
  </body>
75
77
  </html>