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="ch01.html" title="Main Classes">
9
9
  <link rel="prev" href="GtkSourceBuffer.html" title="GtkSourceBuffer">
10
10
  <link rel="next" href="ch02.html" title="Syntax Highlighting">
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">
@@ -45,7 +45,7 @@
45
45
  <tbody>
46
46
  <tr>
47
47
  <td class="function_type">
48
- <a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
48
+ <a href="/usr/share/gtk-doc/html/gtk3GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
49
49
  </td>
50
50
  <td class="function_name">
51
51
  <a class="link" href="GtkSourceView.html#gtk-source-view-new" title="gtk_source_view_new ()">gtk_source_view_new</a> <span class="c_punctuation">()</span>
@@ -53,7 +53,7 @@
53
53
  </tr>
54
54
  <tr>
55
55
  <td class="function_type">
56
- <a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
56
+ <a href="/usr/share/gtk-doc/html/gtk3GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
57
57
  </td>
58
58
  <td class="function_name">
59
59
  <a class="link" href="GtkSourceView.html#gtk-source-view-new-with-buffer" title="gtk_source_view_new_with_buffer ()">gtk_source_view_new_with_buffer</a> <span class="c_punctuation">()</span>
@@ -69,7 +69,7 @@
69
69
  </tr>
70
70
  <tr>
71
71
  <td class="function_type">
72
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
72
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
73
73
  </td>
74
74
  <td class="function_name">
75
75
  <a class="link" href="GtkSourceView.html#gtk-source-view-get-show-line-numbers" title="gtk_source_view_get_show_line_numbers ()">gtk_source_view_get_show_line_numbers</a> <span class="c_punctuation">()</span>
@@ -85,7 +85,7 @@
85
85
  </tr>
86
86
  <tr>
87
87
  <td class="function_type">
88
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
88
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
89
89
  </td>
90
90
  <td class="function_name">
91
91
  <a class="link" href="GtkSourceView.html#gtk-source-view-get-show-right-margin" title="gtk_source_view_get_show_right_margin ()">gtk_source_view_get_show_right_margin</a> <span class="c_punctuation">()</span>
@@ -101,7 +101,7 @@
101
101
  </tr>
102
102
  <tr>
103
103
  <td class="function_type">
104
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
104
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
105
105
  </td>
106
106
  <td class="function_name">
107
107
  <a class="link" href="GtkSourceView.html#gtk-source-view-get-right-margin-position" title="gtk_source_view_get_right_margin_position ()">gtk_source_view_get_right_margin_position</a> <span class="c_punctuation">()</span>
@@ -117,7 +117,7 @@
117
117
  </tr>
118
118
  <tr>
119
119
  <td class="function_type">
120
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
120
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
121
121
  </td>
122
122
  <td class="function_name">
123
123
  <a class="link" href="GtkSourceView.html#gtk-source-view-get-highlight-current-line" title="gtk_source_view_get_highlight_current_line ()">gtk_source_view_get_highlight_current_line</a> <span class="c_punctuation">()</span>
@@ -133,7 +133,7 @@
133
133
  </tr>
134
134
  <tr>
135
135
  <td class="function_type">
136
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
136
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
137
137
  </td>
138
138
  <td class="function_name">
139
139
  <a class="link" href="GtkSourceView.html#gtk-source-view-get-auto-indent" title="gtk_source_view_get_auto_indent ()">gtk_source_view_get_auto_indent</a> <span class="c_punctuation">()</span>
@@ -149,7 +149,7 @@
149
149
  </tr>
150
150
  <tr>
151
151
  <td class="function_type">
152
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
152
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
153
153
  </td>
154
154
  <td class="function_name">
155
155
  <a class="link" href="GtkSourceView.html#gtk-source-view-get-indent-on-tab" title="gtk_source_view_get_indent_on_tab ()">gtk_source_view_get_indent_on_tab</a> <span class="c_punctuation">()</span>
@@ -165,7 +165,7 @@
165
165
  </tr>
166
166
  <tr>
167
167
  <td class="function_type">
168
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
168
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
169
169
  </td>
170
170
  <td class="function_name">
171
171
  <a class="link" href="GtkSourceView.html#gtk-source-view-get-tab-width" title="gtk_source_view_get_tab_width ()">gtk_source_view_get_tab_width</a> <span class="c_punctuation">()</span>
@@ -181,7 +181,7 @@
181
181
  </tr>
182
182
  <tr>
183
183
  <td class="function_type">
184
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
184
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
185
185
  </td>
186
186
  <td class="function_name">
187
187
  <a class="link" href="GtkSourceView.html#gtk-source-view-get-indent-width" title="gtk_source_view_get_indent_width ()">gtk_source_view_get_indent_width</a> <span class="c_punctuation">()</span>
@@ -197,7 +197,7 @@
197
197
  </tr>
198
198
  <tr>
199
199
  <td class="function_type">
200
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
200
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
201
201
  </td>
202
202
  <td class="function_name">
203
203
  <a class="link" href="GtkSourceView.html#gtk-source-view-get-insert-spaces-instead-of-tabs" title="gtk_source_view_get_insert_spaces_instead_of_tabs ()">gtk_source_view_get_insert_spaces_instead_of_tabs</a> <span class="c_punctuation">()</span>
@@ -221,7 +221,7 @@
221
221
  </tr>
222
222
  <tr>
223
223
  <td class="function_type">
224
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
224
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
225
225
  </td>
226
226
  <td class="function_name">
227
227
  <a class="link" href="GtkSourceView.html#gtk-source-view-get-visual-column" title="gtk_source_view_get_visual_column ()">gtk_source_view_get_visual_column</a> <span class="c_punctuation">()</span>
@@ -232,6 +232,22 @@
232
232
  <span class="returnvalue">void</span>
233
233
  </td>
234
234
  <td class="function_name">
235
+ <a class="link" href="GtkSourceView.html#gtk-source-view-set-smart-backspace" title="gtk_source_view_set_smart_backspace ()">gtk_source_view_set_smart_backspace</a> <span class="c_punctuation">()</span>
236
+ </td>
237
+ </tr>
238
+ <tr>
239
+ <td class="function_type">
240
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
241
+ </td>
242
+ <td class="function_name">
243
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-smart-backspace" title="gtk_source_view_get_smart_backspace ()">gtk_source_view_get_smart_backspace</a> <span class="c_punctuation">()</span>
244
+ </td>
245
+ </tr>
246
+ <tr>
247
+ <td class="function_type">
248
+ <span class="returnvalue">void</span>
249
+ </td>
250
+ <td class="function_name">
235
251
  <a class="link" href="GtkSourceView.html#gtk-source-view-set-smart-home-end" title="gtk_source_view_set_smart_home_end ()">gtk_source_view_set_smart_home_end</a> <span class="c_punctuation">()</span>
236
252
  </td>
237
253
  </tr>
@@ -269,7 +285,7 @@
269
285
  </tr>
270
286
  <tr>
271
287
  <td class="function_type">
272
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
288
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
273
289
  </td>
274
290
  <td class="function_name">
275
291
  <a class="link" href="GtkSourceView.html#gtk-source-view-get-show-line-marks" title="gtk_source_view_get_show_line_marks ()">gtk_source_view_get_show_line_marks</a> <span class="c_punctuation">()</span>
@@ -336,7 +352,7 @@
336
352
  </colgroup>
337
353
  <tbody>
338
354
  <tr>
339
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
355
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
340
356
  <td class="property_name"><a class="link" href="GtkSourceView.html#GtkSourceView--auto-indent" title="The “auto-indent” property">auto-indent</a></td>
341
357
  <td class="property_flags">Read / Write</td>
342
358
  </tr>
@@ -357,52 +373,57 @@
357
373
  <td class="property_flags">Read / Write</td>
358
374
  </tr>
359
375
  <tr>
360
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
376
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
361
377
  <td class="property_name"><a class="link" href="GtkSourceView.html#GtkSourceView--highlight-current-line" title="The “highlight-current-line” property">highlight-current-line</a></td>
362
378
  <td class="property_flags">Read / Write</td>
363
379
  </tr>
364
380
  <tr>
365
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
381
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
366
382
  <td class="property_name"><a class="link" href="GtkSourceView.html#GtkSourceView--indent-on-tab" title="The “indent-on-tab” property">indent-on-tab</a></td>
367
383
  <td class="property_flags">Read / Write</td>
368
384
  </tr>
369
385
  <tr>
370
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
386
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
371
387
  <td class="property_name"><a class="link" href="GtkSourceView.html#GtkSourceView--indent-width" title="The “indent-width” property">indent-width</a></td>
372
388
  <td class="property_flags">Read / Write</td>
373
389
  </tr>
374
390
  <tr>
375
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
391
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
376
392
  <td class="property_name"><a class="link" href="GtkSourceView.html#GtkSourceView--insert-spaces-instead-of-tabs" title="The “insert-spaces-instead-of-tabs” property">insert-spaces-instead-of-tabs</a></td>
377
393
  <td class="property_flags">Read / Write</td>
378
394
  </tr>
379
395
  <tr>
380
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td>
396
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#guint"><span class="type">guint</span></a></td>
381
397
  <td class="property_name"><a class="link" href="GtkSourceView.html#GtkSourceView--right-margin-position" title="The “right-margin-position” property">right-margin-position</a></td>
382
398
  <td class="property_flags">Read / Write</td>
383
399
  </tr>
384
400
  <tr>
385
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
401
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
386
402
  <td class="property_name"><a class="link" href="GtkSourceView.html#GtkSourceView--show-line-marks" title="The “show-line-marks” property">show-line-marks</a></td>
387
403
  <td class="property_flags">Read / Write</td>
388
404
  </tr>
389
405
  <tr>
390
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
406
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
391
407
  <td class="property_name"><a class="link" href="GtkSourceView.html#GtkSourceView--show-line-numbers" title="The “show-line-numbers” property">show-line-numbers</a></td>
392
408
  <td class="property_flags">Read / Write</td>
393
409
  </tr>
394
410
  <tr>
395
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
411
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
396
412
  <td class="property_name"><a class="link" href="GtkSourceView.html#GtkSourceView--show-right-margin" title="The “show-right-margin” property">show-right-margin</a></td>
397
413
  <td class="property_flags">Read / Write</td>
398
414
  </tr>
399
415
  <tr>
416
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
417
+ <td class="property_name"><a class="link" href="GtkSourceView.html#GtkSourceView--smart-backspace" title="The “smart-backspace” property">smart-backspace</a></td>
418
+ <td class="property_flags">Read / Write</td>
419
+ </tr>
420
+ <tr>
400
421
  <td class="property_type"><a class="link" href="GtkSourceView.html#GtkSourceSmartHomeEndType" title="enum GtkSourceSmartHomeEndType"><span class="type">GtkSourceSmartHomeEndType</span></a></td>
401
422
  <td class="property_name"><a class="link" href="GtkSourceView.html#GtkSourceView--smart-home-end" title="The “smart-home-end” property">smart-home-end</a></td>
402
423
  <td class="property_flags">Read / Write</td>
403
424
  </tr>
404
425
  <tr>
405
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td>
426
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#guint"><span class="type">guint</span></a></td>
406
427
  <td class="property_name"><a class="link" href="GtkSourceView.html#GtkSourceView--tab-width" title="The “tab-width” property">tab-width</a></td>
407
428
  <td class="property_flags">Read / Write</td>
408
429
  </tr>
@@ -421,57 +442,57 @@
421
442
  <tr>
422
443
  <td class="signal_type"><span class="returnvalue">void</span></td>
423
444
  <td class="signal_name"><a class="link" href="GtkSourceView.html#GtkSourceView-change-case" title="The “change-case” signal">change-case</a></td>
424
- <td class="signal_flags"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
445
+ <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
425
446
  </tr>
426
447
  <tr>
427
448
  <td class="signal_type"><span class="returnvalue">void</span></td>
428
449
  <td class="signal_name"><a class="link" href="GtkSourceView.html#GtkSourceView-change-number" title="The “change-number” signal">change-number</a></td>
429
- <td class="signal_flags"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
450
+ <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
430
451
  </tr>
431
452
  <tr>
432
453
  <td class="signal_type"><span class="returnvalue">void</span></td>
433
454
  <td class="signal_name"><a class="link" href="GtkSourceView.html#GtkSourceView-join-lines" title="The “join-lines” signal">join-lines</a></td>
434
- <td class="signal_flags"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
455
+ <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
435
456
  </tr>
436
457
  <tr>
437
458
  <td class="signal_type"><span class="returnvalue">void</span></td>
438
459
  <td class="signal_name"><a class="link" href="GtkSourceView.html#GtkSourceView-line-mark-activated" title="The “line-mark-activated” signal">line-mark-activated</a></td>
439
- <td class="signal_flags"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS">Run Last</a></td>
460
+ <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS">Run Last</a></td>
440
461
  </tr>
441
462
  <tr>
442
463
  <td class="signal_type"><span class="returnvalue">void</span></td>
443
464
  <td class="signal_name"><a class="link" href="GtkSourceView.html#GtkSourceView-move-lines" title="The “move-lines” signal">move-lines</a></td>
444
- <td class="signal_flags"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
465
+ <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
445
466
  </tr>
446
467
  <tr>
447
468
  <td class="signal_type"><span class="returnvalue">void</span></td>
448
469
  <td class="signal_name"><a class="link" href="GtkSourceView.html#GtkSourceView-move-to-matching-bracket" title="The “move-to-matching-bracket” signal">move-to-matching-bracket</a></td>
449
- <td class="signal_flags"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
470
+ <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
450
471
  </tr>
451
472
  <tr>
452
473
  <td class="signal_type"><span class="returnvalue">void</span></td>
453
474
  <td class="signal_name"><a class="link" href="GtkSourceView.html#GtkSourceView-move-words" title="The “move-words” signal">move-words</a></td>
454
- <td class="signal_flags"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
475
+ <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
455
476
  </tr>
456
477
  <tr>
457
478
  <td class="signal_type"><span class="returnvalue">void</span></td>
458
479
  <td class="signal_name"><a class="link" href="GtkSourceView.html#GtkSourceView-redo" title="The “redo” signal">redo</a></td>
459
- <td class="signal_flags"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
480
+ <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
460
481
  </tr>
461
482
  <tr>
462
483
  <td class="signal_type"><span class="returnvalue">void</span></td>
463
484
  <td class="signal_name"><a class="link" href="GtkSourceView.html#GtkSourceView-show-completion" title="The “show-completion” signal">show-completion</a></td>
464
- <td class="signal_flags"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
485
+ <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
465
486
  </tr>
466
487
  <tr>
467
488
  <td class="signal_type"><span class="returnvalue">void</span></td>
468
489
  <td class="signal_name"><a class="link" href="GtkSourceView.html#GtkSourceView-smart-home-end" title="The “smart-home-end” signal">smart-home-end</a></td>
469
- <td class="signal_flags"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS">Run Last</a></td>
490
+ <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS">Run Last</a></td>
470
491
  </tr>
471
492
  <tr>
472
493
  <td class="signal_type"><span class="returnvalue">void</span></td>
473
494
  <td class="signal_name"><a class="link" href="GtkSourceView.html#GtkSourceView-undo" title="The “undo” signal">undo</a></td>
474
- <td class="signal_flags"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
495
+ <td class="signal_flags"><a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td>
475
496
  </tr>
476
497
  </tbody>
477
498
  </table></div>
@@ -509,19 +530,20 @@
509
530
  </div>
510
531
  <div class="refsect1">
511
532
  <a name="GtkSourceView.object-hierarchy"></a><h2>Object Hierarchy</h2>
512
- <pre class="screen"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
513
- <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>
514
- <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkWidget.html">GtkWidget</a>
515
- <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkContainer.html">GtkContainer</a>
516
- <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkTextView.html">GtkTextView</a>
533
+ <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobjectgobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
534
+ <span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gobjectgobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
535
+ <span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk3GtkWidget.html#GtkWidget-struct">GtkWidget</a>
536
+ <span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk3GtkContainer.html#GtkContainer-struct">GtkContainer</a>
537
+ <span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk3GtkTextView.html#GtkTextView-struct">GtkTextView</a>
517
538
  <span class="lineart">╰──</span> GtkSourceView
539
+ <span class="lineart">╰──</span> <a class="link" href="GtkSourceMap.html" title="GtkSourceMap">GtkSourceMap</a>
518
540
  </pre>
519
541
  </div>
520
542
  <div class="refsect1">
521
543
  <a name="GtkSourceView.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
522
544
  <p>
523
545
  GtkSourceView implements
524
- AtkImplementorIface, <a href="http://developer.gnome.org/gtk2/GtkBuildable.html">GtkBuildable</a> and <a href="http://developer.gnome.org/gtk2/GtkScrollable.html">GtkScrollable</a>.</p>
546
+ AtkImplementorIface, <a href="/usr/share/gtk-doc/html/gtk3GtkBuildable.html#GtkBuildable-struct">GtkBuildable</a> and <a href="/usr/share/gtk-doc/html/gtk3GtkScrollable.html#GtkScrollable-struct">GtkScrollable</a>.</p>
525
547
  </div>
526
548
  <div class="refsect1">
527
549
  <a name="GtkSourceView.includes"></a><h2>Includes</h2>
@@ -547,7 +569,7 @@ Use a <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span
547
569
  provided in the GtkSourceView repository, in the tests/ directory.</p>
548
570
  <div class="refsect2">
549
571
  <a name="id-1.2.2.3.10.6"></a><h3>GtkSourceView as GtkBuildable</h3>
550
- <p>The GtkSourceView implementation of the <a href="http://developer.gnome.org/gtk2/GtkBuildable.html"><span class="type">GtkBuildable</span></a> interface exposes the
572
+ <p>The GtkSourceView implementation of the <a href="/usr/share/gtk-doc/html/gtk3GtkBuildable.html#GtkBuildable-struct"><span class="type">GtkBuildable</span></a> interface exposes the
551
573
  <a class="link" href="GtkSourceView.html#GtkSourceView--completion" title="The “completion” property"><span class="type">“completion”</span></a> object with the internal-child "completion".</p>
552
574
  <p>An example of a UI definition fragment with GtkSourceView:</p>
553
575
  <div class="informalexample">
@@ -584,27 +606,26 @@ provided in the GtkSourceView repository, in the tests/ directory.</p>
584
606
  <a name="GtkSourceView.functions_details"></a><h2>Functions</h2>
585
607
  <div class="refsect2">
586
608
  <a name="gtk-source-view-new"></a><h3>gtk_source_view_new ()</h3>
587
- <pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
609
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/gtk3GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
588
610
  gtk_source_view_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
589
611
  <p>Creates a new <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>. An empty default <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a> will be
590
- created for you and can be retrieved with <a href="http://developer.gnome.org/gtk2/GtkTextView.html#gtk-text-view-get-buffer"><code class="function">gtk_text_view_get_buffer()</code></a>. If you
612
+ created for you and can be retrieved with <a href="/usr/share/gtk-doc/html/gtk3GtkTextView.html#gtk-text-view-get-buffer"><code class="function">gtk_text_view_get_buffer()</code></a>. If you
591
613
  want to specify your own buffer, consider <a class="link" href="GtkSourceView.html#gtk-source-view-new-with-buffer" title="gtk_source_view_new_with_buffer ()"><code class="function">gtk_source_view_new_with_buffer()</code></a>.</p>
592
614
  <div class="refsect3">
593
- <a name="id-1.2.2.3.11.2.5"></a><h4>Returns</h4>
615
+ <a name="gtk-source-view-new.returns"></a><h4>Returns</h4>
594
616
  <p> a new <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</p>
595
- <p></p>
596
617
  </div>
597
618
  </div>
598
619
  <hr>
599
620
  <div class="refsect2">
600
621
  <a name="gtk-source-view-new-with-buffer"></a><h3>gtk_source_view_new_with_buffer ()</h3>
601
- <pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
622
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/gtk3GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
602
623
  gtk_source_view_new_with_buffer (<em class="parameter"><code><a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a> *buffer</code></em>);</pre>
603
624
  <p>Creates a new <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> widget displaying the buffer
604
625
  <em class="parameter"><code>buffer</code></em>
605
626
  . One buffer can be shared among many widgets.</p>
606
627
  <div class="refsect3">
607
- <a name="id-1.2.2.3.11.3.5"></a><h4>Parameters</h4>
628
+ <a name="gtk-source-view-new-with-buffer.parameters"></a><h4>Parameters</h4>
608
629
  <div class="informaltable"><table width="100%" border="0">
609
630
  <colgroup>
610
631
  <col width="150px" class="parameters_name">
@@ -619,9 +640,8 @@ gtk_source_view_new_with_buffer (<em class="parameter"><code><a class="link" hre
619
640
  </table></div>
620
641
  </div>
621
642
  <div class="refsect3">
622
- <a name="id-1.2.2.3.11.3.6"></a><h4>Returns</h4>
643
+ <a name="gtk-source-view-new-with-buffer.returns"></a><h4>Returns</h4>
623
644
  <p> a new <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</p>
624
- <p></p>
625
645
  </div>
626
646
  </div>
627
647
  <hr>
@@ -629,10 +649,10 @@ gtk_source_view_new_with_buffer (<em class="parameter"><code><a class="link" hre
629
649
  <a name="gtk-source-view-set-show-line-numbers"></a><h3>gtk_source_view_set_show_line_numbers ()</h3>
630
650
  <pre class="programlisting"><span class="returnvalue">void</span>
631
651
  gtk_source_view_set_show_line_numbers (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
632
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> show</code></em>);</pre>
633
- <p>If <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> line numbers will be displayed beside the text.</p>
652
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> show</code></em>);</pre>
653
+ <p>If <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> line numbers will be displayed beside the text.</p>
634
654
  <div class="refsect3">
635
- <a name="id-1.2.2.3.11.4.5"></a><h4>Parameters</h4>
655
+ <a name="gtk-source-view-set-show-line-numbers.parameters"></a><h4>Parameters</h4>
636
656
  <div class="informaltable"><table width="100%" border="0">
637
657
  <colgroup>
638
658
  <col width="150px" class="parameters_name">
@@ -657,11 +677,11 @@ gtk_source_view_set_show_line_numbers (<em class="parameter"><code><a class="lin
657
677
  <hr>
658
678
  <div class="refsect2">
659
679
  <a name="gtk-source-view-get-show-line-numbers"></a><h3>gtk_source_view_get_show_line_numbers ()</h3>
660
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
680
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
661
681
  gtk_source_view_get_show_line_numbers (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
662
682
  <p>Returns whether line numbers are displayed beside the text.</p>
663
683
  <div class="refsect3">
664
- <a name="id-1.2.2.3.11.5.5"></a><h4>Parameters</h4>
684
+ <a name="gtk-source-view-get-show-line-numbers.parameters"></a><h4>Parameters</h4>
665
685
  <div class="informaltable"><table width="100%" border="0">
666
686
  <colgroup>
667
687
  <col width="150px" class="parameters_name">
@@ -676,9 +696,8 @@ gtk_source_view_get_show_line_numbers (<em class="parameter"><code><a class="lin
676
696
  </table></div>
677
697
  </div>
678
698
  <div class="refsect3">
679
- <a name="id-1.2.2.3.11.5.6"></a><h4>Returns</h4>
680
- <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the line numbers are displayed.</p>
681
- <p></p>
699
+ <a name="gtk-source-view-get-show-line-numbers.returns"></a><h4>Returns</h4>
700
+ <p> <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the line numbers are displayed.</p>
682
701
  </div>
683
702
  </div>
684
703
  <hr>
@@ -686,10 +705,10 @@ gtk_source_view_get_show_line_numbers (<em class="parameter"><code><a class="lin
686
705
  <a name="gtk-source-view-set-show-right-margin"></a><h3>gtk_source_view_set_show_right_margin ()</h3>
687
706
  <pre class="programlisting"><span class="returnvalue">void</span>
688
707
  gtk_source_view_set_show_right_margin (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
689
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> show</code></em>);</pre>
690
- <p>If <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> a right margin is displayed.</p>
708
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> show</code></em>);</pre>
709
+ <p>If <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> a right margin is displayed.</p>
691
710
  <div class="refsect3">
692
- <a name="id-1.2.2.3.11.6.5"></a><h4>Parameters</h4>
711
+ <a name="gtk-source-view-set-show-right-margin.parameters"></a><h4>Parameters</h4>
693
712
  <div class="informaltable"><table width="100%" border="0">
694
713
  <colgroup>
695
714
  <col width="150px" class="parameters_name">
@@ -714,11 +733,11 @@ gtk_source_view_set_show_right_margin (<em class="parameter"><code><a class="lin
714
733
  <hr>
715
734
  <div class="refsect2">
716
735
  <a name="gtk-source-view-get-show-right-margin"></a><h3>gtk_source_view_get_show_right_margin ()</h3>
717
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
736
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
718
737
  gtk_source_view_get_show_right_margin (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
719
738
  <p>Returns whether a right margin is displayed.</p>
720
739
  <div class="refsect3">
721
- <a name="id-1.2.2.3.11.7.5"></a><h4>Parameters</h4>
740
+ <a name="gtk-source-view-get-show-right-margin.parameters"></a><h4>Parameters</h4>
722
741
  <div class="informaltable"><table width="100%" border="0">
723
742
  <colgroup>
724
743
  <col width="150px" class="parameters_name">
@@ -733,9 +752,8 @@ gtk_source_view_get_show_right_margin (<em class="parameter"><code><a class="lin
733
752
  </table></div>
734
753
  </div>
735
754
  <div class="refsect3">
736
- <a name="id-1.2.2.3.11.7.6"></a><h4>Returns</h4>
737
- <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the right margin is shown.</p>
738
- <p></p>
755
+ <a name="gtk-source-view-get-show-right-margin.returns"></a><h4>Returns</h4>
756
+ <p> <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the right margin is shown.</p>
739
757
  </div>
740
758
  </div>
741
759
  <hr>
@@ -744,11 +762,11 @@ gtk_source_view_get_show_right_margin (<em class="parameter"><code><a class="lin
744
762
  <pre class="programlisting"><span class="returnvalue">void</span>
745
763
  gtk_source_view_set_right_margin_position
746
764
  (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
747
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> pos</code></em>);</pre>
765
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#guint"><span class="type">guint</span></a> pos</code></em>);</pre>
748
766
  <p>Sets the position of the right margin in the given <em class="parameter"><code>view</code></em>
749
767
  .</p>
750
768
  <div class="refsect3">
751
- <a name="id-1.2.2.3.11.8.5"></a><h4>Parameters</h4>
769
+ <a name="gtk-source-view-set-right-margin-position.parameters"></a><h4>Parameters</h4>
752
770
  <div class="informaltable"><table width="100%" border="0">
753
771
  <colgroup>
754
772
  <col width="150px" class="parameters_name">
@@ -773,13 +791,13 @@ gtk_source_view_set_right_margin_position
773
791
  <hr>
774
792
  <div class="refsect2">
775
793
  <a name="gtk-source-view-get-right-margin-position"></a><h3>gtk_source_view_get_right_margin_position ()</h3>
776
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
794
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
777
795
  gtk_source_view_get_right_margin_position
778
796
  (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
779
797
  <p>Gets the position of the right margin in the given <em class="parameter"><code>view</code></em>
780
798
  .</p>
781
799
  <div class="refsect3">
782
- <a name="id-1.2.2.3.11.9.5"></a><h4>Parameters</h4>
800
+ <a name="gtk-source-view-get-right-margin-position.parameters"></a><h4>Parameters</h4>
783
801
  <div class="informaltable"><table width="100%" border="0">
784
802
  <colgroup>
785
803
  <col width="150px" class="parameters_name">
@@ -794,9 +812,8 @@ gtk_source_view_get_right_margin_position
794
812
  </table></div>
795
813
  </div>
796
814
  <div class="refsect3">
797
- <a name="id-1.2.2.3.11.9.6"></a><h4>Returns</h4>
815
+ <a name="gtk-source-view-get-right-margin-position.returns"></a><h4>Returns</h4>
798
816
  <p> the position of the right margin.</p>
799
- <p></p>
800
817
  </div>
801
818
  </div>
802
819
  <hr>
@@ -805,11 +822,11 @@ gtk_source_view_get_right_margin_position
805
822
  <pre class="programlisting"><span class="returnvalue">void</span>
806
823
  gtk_source_view_set_highlight_current_line
807
824
  (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
808
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> highlight</code></em>);</pre>
825
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> highlight</code></em>);</pre>
809
826
  <p>If <em class="parameter"><code>highlight</code></em>
810
- is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> the current line will be highlighted.</p>
827
+ is <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> the current line will be highlighted.</p>
811
828
  <div class="refsect3">
812
- <a name="id-1.2.2.3.11.10.5"></a><h4>Parameters</h4>
829
+ <a name="gtk-source-view-set-highlight-current-line.parameters"></a><h4>Parameters</h4>
813
830
  <div class="informaltable"><table width="100%" border="0">
814
831
  <colgroup>
815
832
  <col width="150px" class="parameters_name">
@@ -834,12 +851,12 @@ gtk_source_view_set_highlight_current_line
834
851
  <hr>
835
852
  <div class="refsect2">
836
853
  <a name="gtk-source-view-get-highlight-current-line"></a><h3>gtk_source_view_get_highlight_current_line ()</h3>
837
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
854
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
838
855
  gtk_source_view_get_highlight_current_line
839
856
  (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
840
857
  <p>Returns whether the current line is highlighted.</p>
841
858
  <div class="refsect3">
842
- <a name="id-1.2.2.3.11.11.5"></a><h4>Parameters</h4>
859
+ <a name="gtk-source-view-get-highlight-current-line.parameters"></a><h4>Parameters</h4>
843
860
  <div class="informaltable"><table width="100%" border="0">
844
861
  <colgroup>
845
862
  <col width="150px" class="parameters_name">
@@ -854,9 +871,8 @@ gtk_source_view_get_highlight_current_line
854
871
  </table></div>
855
872
  </div>
856
873
  <div class="refsect3">
857
- <a name="id-1.2.2.3.11.11.6"></a><h4>Returns</h4>
858
- <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the current line is highlighted.</p>
859
- <p></p>
874
+ <a name="gtk-source-view-get-highlight-current-line.returns"></a><h4>Returns</h4>
875
+ <p> <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the current line is highlighted.</p>
860
876
  </div>
861
877
  </div>
862
878
  <hr>
@@ -864,14 +880,14 @@ gtk_source_view_get_highlight_current_line
864
880
  <a name="gtk-source-view-set-auto-indent"></a><h3>gtk_source_view_set_auto_indent ()</h3>
865
881
  <pre class="programlisting"><span class="returnvalue">void</span>
866
882
  gtk_source_view_set_auto_indent (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
867
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> enable</code></em>);</pre>
868
- <p>If <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> auto-indentation of text is enabled.</p>
883
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> enable</code></em>);</pre>
884
+ <p>If <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> auto-indentation of text is enabled.</p>
869
885
  <p>When Enter is pressed to create a new line, the auto-indentation inserts the
870
886
  same indentation as the previous line. This is <span class="emphasis"><em>not</em></span> a
871
887
  "smart indentation" where an indentation level is added or removed depending
872
888
  on the context.</p>
873
889
  <div class="refsect3">
874
- <a name="id-1.2.2.3.11.12.6"></a><h4>Parameters</h4>
890
+ <a name="gtk-source-view-set-auto-indent.parameters"></a><h4>Parameters</h4>
875
891
  <div class="informaltable"><table width="100%" border="0">
876
892
  <colgroup>
877
893
  <col width="150px" class="parameters_name">
@@ -896,11 +912,11 @@ on the context.</p>
896
912
  <hr>
897
913
  <div class="refsect2">
898
914
  <a name="gtk-source-view-get-auto-indent"></a><h3>gtk_source_view_get_auto_indent ()</h3>
899
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
915
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
900
916
  gtk_source_view_get_auto_indent (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
901
917
  <p>Returns whether auto-indentation of text is enabled.</p>
902
918
  <div class="refsect3">
903
- <a name="id-1.2.2.3.11.13.5"></a><h4>Parameters</h4>
919
+ <a name="gtk-source-view-get-auto-indent.parameters"></a><h4>Parameters</h4>
904
920
  <div class="informaltable"><table width="100%" border="0">
905
921
  <colgroup>
906
922
  <col width="150px" class="parameters_name">
@@ -915,9 +931,8 @@ gtk_source_view_get_auto_indent (<em class="parameter"><code><a class="link" hre
915
931
  </table></div>
916
932
  </div>
917
933
  <div class="refsect3">
918
- <a name="id-1.2.2.3.11.13.6"></a><h4>Returns</h4>
919
- <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if auto indentation is enabled.</p>
920
- <p></p>
934
+ <a name="gtk-source-view-get-auto-indent.returns"></a><h4>Returns</h4>
935
+ <p> <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if auto indentation is enabled.</p>
921
936
  </div>
922
937
  </div>
923
938
  <hr>
@@ -925,8 +940,8 @@ gtk_source_view_get_auto_indent (<em class="parameter"><code><a class="link" hre
925
940
  <a name="gtk-source-view-set-indent-on-tab"></a><h3>gtk_source_view_set_indent_on_tab ()</h3>
926
941
  <pre class="programlisting"><span class="returnvalue">void</span>
927
942
  gtk_source_view_set_indent_on_tab (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
928
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> enable</code></em>);</pre>
929
- <p>If <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, when the tab key is pressed when several lines are selected, the
943
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> enable</code></em>);</pre>
944
+ <p>If <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, when the tab key is pressed when several lines are selected, the
930
945
  selected lines are indented of one level instead of being replaced with a \t
931
946
  character. Shift+Tab unindents the selection.</p>
932
947
  <p>If the first or last line is not selected completely, it is also indented or
@@ -934,7 +949,7 @@ unindented.</p>
934
949
  <p>When the selection doesn't span several lines, the tab key always replaces
935
950
  the selection with a normal \t character.</p>
936
951
  <div class="refsect3">
937
- <a name="id-1.2.2.3.11.14.7"></a><h4>Parameters</h4>
952
+ <a name="gtk-source-view-set-indent-on-tab.parameters"></a><h4>Parameters</h4>
938
953
  <div class="informaltable"><table width="100%" border="0">
939
954
  <colgroup>
940
955
  <col width="150px" class="parameters_name">
@@ -955,17 +970,16 @@ the selection with a normal \t character.</p>
955
970
  </tbody>
956
971
  </table></div>
957
972
  </div>
958
- <p class="since">Since 1.8</p>
959
973
  </div>
960
974
  <hr>
961
975
  <div class="refsect2">
962
976
  <a name="gtk-source-view-get-indent-on-tab"></a><h3>gtk_source_view_get_indent_on_tab ()</h3>
963
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
977
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
964
978
  gtk_source_view_get_indent_on_tab (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
965
979
  <p>Returns whether when the tab key is pressed the current selection
966
980
  should get indented instead of replaced with the \t character.</p>
967
981
  <div class="refsect3">
968
- <a name="id-1.2.2.3.11.15.5"></a><h4>Parameters</h4>
982
+ <a name="gtk-source-view-get-indent-on-tab.parameters"></a><h4>Parameters</h4>
969
983
  <div class="informaltable"><table width="100%" border="0">
970
984
  <colgroup>
971
985
  <col width="150px" class="parameters_name">
@@ -980,23 +994,21 @@ should get indented instead of replaced with the \t character.</p>
980
994
  </table></div>
981
995
  </div>
982
996
  <div class="refsect3">
983
- <a name="id-1.2.2.3.11.15.6"></a><h4>Returns</h4>
984
- <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the selection is indented when tab is pressed.</p>
985
- <p></p>
997
+ <a name="gtk-source-view-get-indent-on-tab.returns"></a><h4>Returns</h4>
998
+ <p> <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the selection is indented when tab is pressed.</p>
986
999
  </div>
987
- <p class="since">Since 1.8</p>
988
1000
  </div>
989
1001
  <hr>
990
1002
  <div class="refsect2">
991
1003
  <a name="gtk-source-view-set-tab-width"></a><h3>gtk_source_view_set_tab_width ()</h3>
992
1004
  <pre class="programlisting"><span class="returnvalue">void</span>
993
1005
  gtk_source_view_set_tab_width (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
994
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> width</code></em>);</pre>
995
- <p>Sets the width of tabulation in characters. The <a href="http://developer.gnome.org/gtk2/GtkTextBuffer.html"><span class="type">GtkTextBuffer</span></a> still contains
1006
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#guint"><span class="type">guint</span></a> width</code></em>);</pre>
1007
+ <p>Sets the width of tabulation in characters. The <a href="/usr/share/gtk-doc/html/gtk3GtkTextBuffer.html#GtkTextBuffer-struct"><span class="type">GtkTextBuffer</span></a> still contains
996
1008
  \t characters, but they can take a different visual width in a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>
997
1009
  widget.</p>
998
1010
  <div class="refsect3">
999
- <a name="id-1.2.2.3.11.16.5"></a><h4>Parameters</h4>
1011
+ <a name="gtk-source-view-set-tab-width.parameters"></a><h4>Parameters</h4>
1000
1012
  <div class="informaltable"><table width="100%" border="0">
1001
1013
  <colgroup>
1002
1014
  <col width="150px" class="parameters_name">
@@ -1021,11 +1033,11 @@ widget.</p>
1021
1033
  <hr>
1022
1034
  <div class="refsect2">
1023
1035
  <a name="gtk-source-view-get-tab-width"></a><h3>gtk_source_view_get_tab_width ()</h3>
1024
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
1036
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
1025
1037
  gtk_source_view_get_tab_width (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
1026
1038
  <p>Returns the width of tabulation in characters.</p>
1027
1039
  <div class="refsect3">
1028
- <a name="id-1.2.2.3.11.17.5"></a><h4>Parameters</h4>
1040
+ <a name="gtk-source-view-get-tab-width.parameters"></a><h4>Parameters</h4>
1029
1041
  <div class="informaltable"><table width="100%" border="0">
1030
1042
  <colgroup>
1031
1043
  <col width="150px" class="parameters_name">
@@ -1040,9 +1052,8 @@ gtk_source_view_get_tab_width (<em class="parameter"><code><a class="link" href=
1040
1052
  </table></div>
1041
1053
  </div>
1042
1054
  <div class="refsect3">
1043
- <a name="id-1.2.2.3.11.17.6"></a><h4>Returns</h4>
1055
+ <a name="gtk-source-view-get-tab-width.returns"></a><h4>Returns</h4>
1044
1056
  <p> width of tab.</p>
1045
- <p></p>
1046
1057
  </div>
1047
1058
  </div>
1048
1059
  <hr>
@@ -1050,7 +1061,7 @@ gtk_source_view_get_tab_width (<em class="parameter"><code><a class="link" href=
1050
1061
  <a name="gtk-source-view-set-indent-width"></a><h3>gtk_source_view_set_indent_width ()</h3>
1051
1062
  <pre class="programlisting"><span class="returnvalue">void</span>
1052
1063
  gtk_source_view_set_indent_width (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
1053
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> width</code></em>);</pre>
1064
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="type">gint</span></a> width</code></em>);</pre>
1054
1065
  <p>Sets the number of spaces to use for each step of indent when the tab key is
1055
1066
  pressed. If <em class="parameter"><code>width</code></em>
1056
1067
  is -1, the value of the <a class="link" href="GtkSourceView.html#GtkSourceView--tab-width" title="The “tab-width” property"><span class="type">“tab-width”</span></a> property
@@ -1060,18 +1071,18 @@ will be used.</p>
1060
1071
  <a class="link" href="GtkSourceView.html#GtkSourceView--tab-width" title="The “tab-width” property"><span class="type">“tab-width”</span></a>. An example will be clearer: if the
1061
1072
  <a class="link" href="GtkSourceView.html#GtkSourceView--indent-width" title="The “indent-width” property"><span class="type">“indent-width”</span></a> is 4 and
1062
1073
  <a class="link" href="GtkSourceView.html#GtkSourceView--tab-width" title="The “tab-width” property"><span class="type">“tab-width”</span></a> is 8 and
1063
- <a class="link" href="GtkSourceView.html#GtkSourceView--insert-spaces-instead-of-tabs" title="The “insert-spaces-instead-of-tabs” property"><span class="type">“insert-spaces-instead-of-tabs”</span></a> is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, then pressing the tab
1074
+ <a class="link" href="GtkSourceView.html#GtkSourceView--insert-spaces-instead-of-tabs" title="The “insert-spaces-instead-of-tabs” property"><span class="type">“insert-spaces-instead-of-tabs”</span></a> is <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, then pressing the tab
1064
1075
  key at the beginning of a line will insert 4 spaces. So far so good. Pressing
1065
1076
  the tab key a second time will remove the 4 spaces and insert a \t character
1066
1077
  instead (since <a class="link" href="GtkSourceView.html#GtkSourceView--tab-width" title="The “tab-width” property"><span class="type">“tab-width”</span></a> is 8). On the other hand, if
1067
- <a class="link" href="GtkSourceView.html#GtkSourceView--insert-spaces-instead-of-tabs" title="The “insert-spaces-instead-of-tabs” property"><span class="type">“insert-spaces-instead-of-tabs”</span></a> is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, the second tab key
1078
+ <a class="link" href="GtkSourceView.html#GtkSourceView--insert-spaces-instead-of-tabs" title="The “insert-spaces-instead-of-tabs” property"><span class="type">“insert-spaces-instead-of-tabs”</span></a> is <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, the second tab key
1068
1079
  pressed will insert 4 more spaces for a total of 8 spaces in the
1069
- <a href="http://developer.gnome.org/gtk2/GtkTextBuffer.html"><span class="type">GtkTextBuffer</span></a>.</p>
1080
+ <a href="/usr/share/gtk-doc/html/gtk3GtkTextBuffer.html#GtkTextBuffer-struct"><span class="type">GtkTextBuffer</span></a>.</p>
1070
1081
  <p>The test-widget program (available in the GtkSourceView repository) may be
1071
1082
  useful to better understand the indentation settings (enable the space
1072
1083
  drawing!).</p>
1073
1084
  <div class="refsect3">
1074
- <a name="id-1.2.2.3.11.18.7"></a><h4>Parameters</h4>
1085
+ <a name="gtk-source-view-set-indent-width.parameters"></a><h4>Parameters</h4>
1075
1086
  <div class="informaltable"><table width="100%" border="0">
1076
1087
  <colgroup>
1077
1088
  <col width="150px" class="parameters_name">
@@ -1096,12 +1107,12 @@ drawing!).</p>
1096
1107
  <hr>
1097
1108
  <div class="refsect2">
1098
1109
  <a name="gtk-source-view-get-indent-width"></a><h3>gtk_source_view_get_indent_width ()</h3>
1099
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
1110
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
1100
1111
  gtk_source_view_get_indent_width (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
1101
1112
  <p>Returns the number of spaces to use for each step of indent.
1102
1113
  See <a class="link" href="GtkSourceView.html#gtk-source-view-set-indent-width" title="gtk_source_view_set_indent_width ()"><code class="function">gtk_source_view_set_indent_width()</code></a> for details.</p>
1103
1114
  <div class="refsect3">
1104
- <a name="id-1.2.2.3.11.19.5"></a><h4>Parameters</h4>
1115
+ <a name="gtk-source-view-get-indent-width.parameters"></a><h4>Parameters</h4>
1105
1116
  <div class="informaltable"><table width="100%" border="0">
1106
1117
  <colgroup>
1107
1118
  <col width="150px" class="parameters_name">
@@ -1116,9 +1127,8 @@ See <a class="link" href="GtkSourceView.html#gtk-source-view-set-indent-width" t
1116
1127
  </table></div>
1117
1128
  </div>
1118
1129
  <div class="refsect3">
1119
- <a name="id-1.2.2.3.11.19.6"></a><h4>Returns</h4>
1130
+ <a name="gtk-source-view-get-indent-width.returns"></a><h4>Returns</h4>
1120
1131
  <p> indent width.</p>
1121
- <p></p>
1122
1132
  </div>
1123
1133
  </div>
1124
1134
  <hr>
@@ -1127,12 +1137,12 @@ See <a class="link" href="GtkSourceView.html#gtk-source-view-set-indent-width" t
1127
1137
  <pre class="programlisting"><span class="returnvalue">void</span>
1128
1138
  gtk_source_view_set_insert_spaces_instead_of_tabs
1129
1139
  (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
1130
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> enable</code></em>);</pre>
1131
- <p>If <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> a tab key pressed is replaced by a group of space characters. Of
1140
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> enable</code></em>);</pre>
1141
+ <p>If <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> a tab key pressed is replaced by a group of space characters. Of
1132
1142
  course it is still possible to insert a real \t programmatically with the
1133
- <a href="http://developer.gnome.org/gtk2/GtkTextBuffer.html"><span class="type">GtkTextBuffer</span></a> API.</p>
1143
+ <a href="/usr/share/gtk-doc/html/gtk3GtkTextBuffer.html#GtkTextBuffer-struct"><span class="type">GtkTextBuffer</span></a> API.</p>
1134
1144
  <div class="refsect3">
1135
- <a name="id-1.2.2.3.11.20.5"></a><h4>Parameters</h4>
1145
+ <a name="gtk-source-view-set-insert-spaces-instead-of-tabs.parameters"></a><h4>Parameters</h4>
1136
1146
  <div class="informaltable"><table width="100%" border="0">
1137
1147
  <colgroup>
1138
1148
  <col width="150px" class="parameters_name">
@@ -1157,13 +1167,13 @@ course it is still possible to insert a real \t programmatically with the
1157
1167
  <hr>
1158
1168
  <div class="refsect2">
1159
1169
  <a name="gtk-source-view-get-insert-spaces-instead-of-tabs"></a><h3>gtk_source_view_get_insert_spaces_instead_of_tabs ()</h3>
1160
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1170
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1161
1171
  gtk_source_view_get_insert_spaces_instead_of_tabs
1162
1172
  (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
1163
1173
  <p>Returns whether when inserting a tabulator character it should
1164
1174
  be replaced by a group of space characters.</p>
1165
1175
  <div class="refsect3">
1166
- <a name="id-1.2.2.3.11.21.5"></a><h4>Parameters</h4>
1176
+ <a name="gtk-source-view-get-insert-spaces-instead-of-tabs.parameters"></a><h4>Parameters</h4>
1167
1177
  <div class="informaltable"><table width="100%" border="0">
1168
1178
  <colgroup>
1169
1179
  <col width="150px" class="parameters_name">
@@ -1178,9 +1188,8 @@ be replaced by a group of space characters.</p>
1178
1188
  </table></div>
1179
1189
  </div>
1180
1190
  <div class="refsect3">
1181
- <a name="id-1.2.2.3.11.21.6"></a><h4>Returns</h4>
1182
- <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if spaces are inserted instead of tabs.</p>
1183
- <p></p>
1191
+ <a name="gtk-source-view-get-insert-spaces-instead-of-tabs.returns"></a><h4>Returns</h4>
1192
+ <p> <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if spaces are inserted instead of tabs.</p>
1184
1193
  </div>
1185
1194
  </div>
1186
1195
  <hr>
@@ -1188,12 +1197,12 @@ be replaced by a group of space characters.</p>
1188
1197
  <a name="gtk-source-view-indent-lines"></a><h3>gtk_source_view_indent_lines ()</h3>
1189
1198
  <pre class="programlisting"><span class="returnvalue">void</span>
1190
1199
  gtk_source_view_indent_lines (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
1191
- <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *start</code></em>,
1192
- <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
1200
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *start</code></em>,
1201
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
1193
1202
  <p>Insert one indentation level at the beginning of the
1194
1203
  specified lines.</p>
1195
1204
  <div class="refsect3">
1196
- <a name="id-1.2.2.3.11.22.5"></a><h4>Parameters</h4>
1205
+ <a name="gtk-source-view-indent-lines.parameters"></a><h4>Parameters</h4>
1197
1206
  <div class="informaltable"><table width="100%" border="0">
1198
1207
  <colgroup>
1199
1208
  <col width="150px" class="parameters_name">
@@ -1208,30 +1217,30 @@ specified lines.</p>
1208
1217
  </tr>
1209
1218
  <tr>
1210
1219
  <td class="parameter_name"><p>start</p></td>
1211
- <td class="parameter_description"><p><a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> of the first line to indent</p></td>
1220
+ <td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> of the first line to indent</p></td>
1212
1221
  <td class="parameter_annotations"> </td>
1213
1222
  </tr>
1214
1223
  <tr>
1215
1224
  <td class="parameter_name"><p>end</p></td>
1216
- <td class="parameter_description"><p><a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> of the last line to indent</p></td>
1225
+ <td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> of the last line to indent</p></td>
1217
1226
  <td class="parameter_annotations"> </td>
1218
1227
  </tr>
1219
1228
  </tbody>
1220
1229
  </table></div>
1221
1230
  </div>
1222
- <p class="since">Since 3.16</p>
1231
+ <p class="since">Since: <a class="link" href="api-index-3-16.html#api-index-3.16">3.16</a></p>
1223
1232
  </div>
1224
1233
  <hr>
1225
1234
  <div class="refsect2">
1226
1235
  <a name="gtk-source-view-unindent-lines"></a><h3>gtk_source_view_unindent_lines ()</h3>
1227
1236
  <pre class="programlisting"><span class="returnvalue">void</span>
1228
1237
  gtk_source_view_unindent_lines (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
1229
- <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *start</code></em>,
1230
- <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
1238
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *start</code></em>,
1239
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
1231
1240
  <p>Removes one indentation level at the beginning of the
1232
1241
  specified lines.</p>
1233
1242
  <div class="refsect3">
1234
- <a name="id-1.2.2.3.11.23.5"></a><h4>Parameters</h4>
1243
+ <a name="gtk-source-view-unindent-lines.parameters"></a><h4>Parameters</h4>
1235
1244
  <div class="informaltable"><table width="100%" border="0">
1236
1245
  <colgroup>
1237
1246
  <col width="150px" class="parameters_name">
@@ -1246,31 +1255,31 @@ specified lines.</p>
1246
1255
  </tr>
1247
1256
  <tr>
1248
1257
  <td class="parameter_name"><p>start</p></td>
1249
- <td class="parameter_description"><p><a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> of the first line to indent</p></td>
1258
+ <td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> of the first line to indent</p></td>
1250
1259
  <td class="parameter_annotations"> </td>
1251
1260
  </tr>
1252
1261
  <tr>
1253
1262
  <td class="parameter_name"><p>end</p></td>
1254
- <td class="parameter_description"><p><a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> of the last line to indent</p></td>
1263
+ <td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> of the last line to indent</p></td>
1255
1264
  <td class="parameter_annotations"> </td>
1256
1265
  </tr>
1257
1266
  </tbody>
1258
1267
  </table></div>
1259
1268
  </div>
1260
- <p class="since">Since 3.16</p>
1269
+ <p class="since">Since: <a class="link" href="api-index-3-16.html#api-index-3.16">3.16</a></p>
1261
1270
  </div>
1262
1271
  <hr>
1263
1272
  <div class="refsect2">
1264
1273
  <a name="gtk-source-view-get-visual-column"></a><h3>gtk_source_view_get_visual_column ()</h3>
1265
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
1274
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
1266
1275
  gtk_source_view_get_visual_column (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
1267
- <em class="parameter"><code>const <a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1276
+ <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1268
1277
  <p>Determines the visual column at <em class="parameter"><code>iter</code></em>
1269
1278
  taking into consideration the
1270
1279
  <a class="link" href="GtkSourceView.html#GtkSourceView--tab-width" title="The “tab-width” property"><span class="type">“tab-width”</span></a> of <em class="parameter"><code>view</code></em>
1271
1280
  .</p>
1272
1281
  <div class="refsect3">
1273
- <a name="id-1.2.2.3.11.24.5"></a><h4>Parameters</h4>
1282
+ <a name="gtk-source-view-get-visual-column.parameters"></a><h4>Parameters</h4>
1274
1283
  <div class="informaltable"><table width="100%" border="0">
1275
1284
  <colgroup>
1276
1285
  <col width="150px" class="parameters_name">
@@ -1293,14 +1302,73 @@ gtk_source_view_get_visual_column (<em class="parameter"><code><a class="link" h
1293
1302
  </table></div>
1294
1303
  </div>
1295
1304
  <div class="refsect3">
1296
- <a name="id-1.2.2.3.11.24.6"></a><h4>Returns</h4>
1305
+ <a name="gtk-source-view-get-visual-column.returns"></a><h4>Returns</h4>
1297
1306
  <p> the visual column at <em class="parameter"><code>iter</code></em>
1298
1307
  .</p>
1299
- <p></p>
1300
1308
  </div>
1301
1309
  </div>
1302
1310
  <hr>
1303
1311
  <div class="refsect2">
1312
+ <a name="gtk-source-view-set-smart-backspace"></a><h3>gtk_source_view_set_smart_backspace ()</h3>
1313
+ <pre class="programlisting"><span class="returnvalue">void</span>
1314
+ gtk_source_view_set_smart_backspace (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
1315
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> smart_backspace</code></em>);</pre>
1316
+ <p>When set to <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, pressing the Backspace key will try to delete spaces
1317
+ up to the previous tab stop.</p>
1318
+ <div class="refsect3">
1319
+ <a name="gtk-source-view-set-smart-backspace.parameters"></a><h4>Parameters</h4>
1320
+ <div class="informaltable"><table width="100%" border="0">
1321
+ <colgroup>
1322
+ <col width="150px" class="parameters_name">
1323
+ <col class="parameters_description">
1324
+ <col width="200px" class="parameters_annotations">
1325
+ </colgroup>
1326
+ <tbody>
1327
+ <tr>
1328
+ <td class="parameter_name"><p>view</p></td>
1329
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</p></td>
1330
+ <td class="parameter_annotations"> </td>
1331
+ </tr>
1332
+ <tr>
1333
+ <td class="parameter_name"><p>smart_backspace</p></td>
1334
+ <td class="parameter_description"><p>whether to enable smart Backspace handling.</p></td>
1335
+ <td class="parameter_annotations"> </td>
1336
+ </tr>
1337
+ </tbody>
1338
+ </table></div>
1339
+ </div>
1340
+ <p class="since">Since: <a class="link" href="api-index-3-18.html#api-index-3.18">3.18</a></p>
1341
+ </div>
1342
+ <hr>
1343
+ <div class="refsect2">
1344
+ <a name="gtk-source-view-get-smart-backspace"></a><h3>gtk_source_view_get_smart_backspace ()</h3>
1345
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1346
+ gtk_source_view_get_smart_backspace (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
1347
+ <p>Returns <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if pressing the Backspace key will try to delete spaces
1348
+ up to the previous tab stop.</p>
1349
+ <div class="refsect3">
1350
+ <a name="gtk-source-view-get-smart-backspace.parameters"></a><h4>Parameters</h4>
1351
+ <div class="informaltable"><table width="100%" border="0">
1352
+ <colgroup>
1353
+ <col width="150px" class="parameters_name">
1354
+ <col class="parameters_description">
1355
+ <col width="200px" class="parameters_annotations">
1356
+ </colgroup>
1357
+ <tbody><tr>
1358
+ <td class="parameter_name"><p>view</p></td>
1359
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</p></td>
1360
+ <td class="parameter_annotations"> </td>
1361
+ </tr></tbody>
1362
+ </table></div>
1363
+ </div>
1364
+ <div class="refsect3">
1365
+ <a name="gtk-source-view-get-smart-backspace.returns"></a><h4>Returns</h4>
1366
+ <p> <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if smart Backspace handling is enabled.</p>
1367
+ </div>
1368
+ <p class="since">Since: <a class="link" href="api-index-3-18.html#api-index-3.18">3.18</a></p>
1369
+ </div>
1370
+ <hr>
1371
+ <div class="refsect2">
1304
1372
  <a name="gtk-source-view-set-smart-home-end"></a><h3>gtk_source_view_set_smart_home_end ()</h3>
1305
1373
  <pre class="programlisting"><span class="returnvalue">void</span>
1306
1374
  gtk_source_view_set_smart_home_end (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
@@ -1308,7 +1376,7 @@ gtk_source_view_set_smart_home_end (<em class="parameter"><code><a class="link"
1308
1376
  <p>Set the desired movement of the cursor when HOME and END keys
1309
1377
  are pressed.</p>
1310
1378
  <div class="refsect3">
1311
- <a name="id-1.2.2.3.11.25.5"></a><h4>Parameters</h4>
1379
+ <a name="gtk-source-view-set-smart-home-end.parameters"></a><h4>Parameters</h4>
1312
1380
  <div class="informaltable"><table width="100%" border="0">
1313
1381
  <colgroup>
1314
1382
  <col width="150px" class="parameters_name">
@@ -1338,7 +1406,7 @@ gtk_source_view_get_smart_home_end (<em class="parameter"><code><a class="link"
1338
1406
  <p>Returns a <a class="link" href="GtkSourceView.html#GtkSourceSmartHomeEndType" title="enum GtkSourceSmartHomeEndType"><span class="type">GtkSourceSmartHomeEndType</span></a> end value specifying
1339
1407
  how the cursor will move when HOME and END keys are pressed.</p>
1340
1408
  <div class="refsect3">
1341
- <a name="id-1.2.2.3.11.26.5"></a><h4>Parameters</h4>
1409
+ <a name="gtk-source-view-get-smart-home-end.parameters"></a><h4>Parameters</h4>
1342
1410
  <div class="informaltable"><table width="100%" border="0">
1343
1411
  <colgroup>
1344
1412
  <col width="150px" class="parameters_name">
@@ -1353,9 +1421,8 @@ how the cursor will move when HOME and END keys are pressed.</p>
1353
1421
  </table></div>
1354
1422
  </div>
1355
1423
  <div class="refsect3">
1356
- <a name="id-1.2.2.3.11.26.6"></a><h4>Returns</h4>
1424
+ <a name="gtk-source-view-get-smart-home-end.returns"></a><h4>Returns</h4>
1357
1425
  <p> a <a class="link" href="GtkSourceView.html#GtkSourceSmartHomeEndType" title="enum GtkSourceSmartHomeEndType"><span class="type">GtkSourceSmartHomeEndType</span></a> value.</p>
1358
- <p></p>
1359
1426
  </div>
1360
1427
  </div>
1361
1428
  <hr>
@@ -1363,13 +1430,13 @@ how the cursor will move when HOME and END keys are pressed.</p>
1363
1430
  <a name="gtk-source-view-set-mark-attributes"></a><h3>gtk_source_view_set_mark_attributes ()</h3>
1364
1431
  <pre class="programlisting"><span class="returnvalue">void</span>
1365
1432
  gtk_source_view_set_mark_attributes (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
1366
- <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *category</code></em>,
1433
+ <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *category</code></em>,
1367
1434
  <em class="parameter"><code><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes</code></em>,
1368
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> priority</code></em>);</pre>
1435
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="type">gint</span></a> priority</code></em>);</pre>
1369
1436
  <p>Sets attributes and priority for the <em class="parameter"><code>category</code></em>
1370
1437
  .</p>
1371
1438
  <div class="refsect3">
1372
- <a name="id-1.2.2.3.11.27.5"></a><h4>Parameters</h4>
1439
+ <a name="gtk-source-view-set-mark-attributes.parameters"></a><h4>Parameters</h4>
1373
1440
  <div class="informaltable"><table width="100%" border="0">
1374
1441
  <colgroup>
1375
1442
  <col width="150px" class="parameters_name">
@@ -1406,12 +1473,12 @@ gtk_source_view_set_mark_attributes (<em class="parameter"><code><a class="link"
1406
1473
  <a name="gtk-source-view-get-mark-attributes"></a><h3>gtk_source_view_get_mark_attributes ()</h3>
1407
1474
  <pre class="programlisting"><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="returnvalue">GtkSourceMarkAttributes</span></a> *
1408
1475
  gtk_source_view_get_mark_attributes (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
1409
- <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *category</code></em>,
1410
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *priority</code></em>);</pre>
1476
+ <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *category</code></em>,
1477
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="type">gint</span></a> *priority</code></em>);</pre>
1411
1478
  <p>Gets attributes and priority for the <em class="parameter"><code>category</code></em>
1412
1479
  .</p>
1413
1480
  <div class="refsect3">
1414
- <a name="id-1.2.2.3.11.28.5"></a><h4>Parameters</h4>
1481
+ <a name="gtk-source-view-get-mark-attributes.parameters"></a><h4>Parameters</h4>
1415
1482
  <div class="informaltable"><table width="100%" border="0">
1416
1483
  <colgroup>
1417
1484
  <col width="150px" class="parameters_name">
@@ -1438,7 +1505,7 @@ gtk_source_view_get_mark_attributes (<em class="parameter"><code><a class="link"
1438
1505
  </table></div>
1439
1506
  </div>
1440
1507
  <div class="refsect3">
1441
- <a name="id-1.2.2.3.11.28.6"></a><h4>Returns</h4>
1508
+ <a name="gtk-source-view-get-mark-attributes.returns"></a><h4>Returns</h4>
1442
1509
  <p> <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> for the <em class="parameter"><code>category</code></em>
1443
1510
  .
1444
1511
  The object belongs to <em class="parameter"><code>view</code></em>
@@ -1451,10 +1518,10 @@ The object belongs to <em class="parameter"><code>view</code></em>
1451
1518
  <a name="gtk-source-view-set-show-line-marks"></a><h3>gtk_source_view_set_show_line_marks ()</h3>
1452
1519
  <pre class="programlisting"><span class="returnvalue">void</span>
1453
1520
  gtk_source_view_set_show_line_marks (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
1454
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> show</code></em>);</pre>
1455
- <p>If <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> line marks will be displayed beside the text.</p>
1521
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> show</code></em>);</pre>
1522
+ <p>If <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> line marks will be displayed beside the text.</p>
1456
1523
  <div class="refsect3">
1457
- <a name="id-1.2.2.3.11.29.5"></a><h4>Parameters</h4>
1524
+ <a name="gtk-source-view-set-show-line-marks.parameters"></a><h4>Parameters</h4>
1458
1525
  <div class="informaltable"><table width="100%" border="0">
1459
1526
  <colgroup>
1460
1527
  <col width="150px" class="parameters_name">
@@ -1475,16 +1542,16 @@ gtk_source_view_set_show_line_marks (<em class="parameter"><code><a class="link"
1475
1542
  </tbody>
1476
1543
  </table></div>
1477
1544
  </div>
1478
- <p class="since">Since 2.2</p>
1545
+ <p class="since">Since: <a class="link" href="api-index-2-2.html#api-index-2.2">2.2</a></p>
1479
1546
  </div>
1480
1547
  <hr>
1481
1548
  <div class="refsect2">
1482
1549
  <a name="gtk-source-view-get-show-line-marks"></a><h3>gtk_source_view_get_show_line_marks ()</h3>
1483
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1550
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1484
1551
  gtk_source_view_get_show_line_marks (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
1485
1552
  <p>Returns whether line marks are displayed beside the text.</p>
1486
1553
  <div class="refsect3">
1487
- <a name="id-1.2.2.3.11.30.5"></a><h4>Parameters</h4>
1554
+ <a name="gtk-source-view-get-show-line-marks.parameters"></a><h4>Parameters</h4>
1488
1555
  <div class="informaltable"><table width="100%" border="0">
1489
1556
  <colgroup>
1490
1557
  <col width="150px" class="parameters_name">
@@ -1499,11 +1566,10 @@ gtk_source_view_get_show_line_marks (<em class="parameter"><code><a class="link"
1499
1566
  </table></div>
1500
1567
  </div>
1501
1568
  <div class="refsect3">
1502
- <a name="id-1.2.2.3.11.30.6"></a><h4>Returns</h4>
1503
- <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the line marks are displayed.</p>
1504
- <p></p>
1569
+ <a name="gtk-source-view-get-show-line-marks.returns"></a><h4>Returns</h4>
1570
+ <p> <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the line marks are displayed.</p>
1505
1571
  </div>
1506
- <p class="since">Since 2.2</p>
1572
+ <p class="since">Since: <a class="link" href="api-index-2-2.html#api-index-2.2">2.2</a></p>
1507
1573
  </div>
1508
1574
  <hr>
1509
1575
  <div class="refsect2">
@@ -1514,8 +1580,10 @@ gtk_source_view_set_draw_spaces (<em class="parameter"><code><a class="link" hre
1514
1580
  <p>Set if and how the spaces should be visualized. Specifying <em class="parameter"><code>flags</code></em>
1515
1581
  as 0 will
1516
1582
  disable display of spaces.</p>
1583
+ <p>For a finer-grained method, there is also the GtkSourceTag's
1584
+ <a class="link" href="GtkSourceTag.html#GtkSourceTag--draw-spaces" title="The “draw-spaces” property"><span class="type">“draw-spaces”</span></a> property.</p>
1517
1585
  <div class="refsect3">
1518
- <a name="id-1.2.2.3.11.31.5"></a><h4>Parameters</h4>
1586
+ <a name="gtk-source-view-set-draw-spaces.parameters"></a><h4>Parameters</h4>
1519
1587
  <div class="informaltable"><table width="100%" border="0">
1520
1588
  <colgroup>
1521
1589
  <col width="150px" class="parameters_name">
@@ -1547,7 +1615,7 @@ gtk_source_view_get_draw_spaces (<em class="parameter"><code><a class="link" hre
1547
1615
  should be displayed for this <em class="parameter"><code>view</code></em>
1548
1616
  .</p>
1549
1617
  <div class="refsect3">
1550
- <a name="id-1.2.2.3.11.32.5"></a><h4>Parameters</h4>
1618
+ <a name="gtk-source-view-get-draw-spaces.parameters"></a><h4>Parameters</h4>
1551
1619
  <div class="informaltable"><table width="100%" border="0">
1552
1620
  <colgroup>
1553
1621
  <col width="150px" class="parameters_name">
@@ -1562,9 +1630,8 @@ should be displayed for this <em class="parameter"><code>view</code></em>
1562
1630
  </table></div>
1563
1631
  </div>
1564
1632
  <div class="refsect3">
1565
- <a name="id-1.2.2.3.11.32.6"></a><h4>Returns</h4>
1633
+ <a name="gtk-source-view-get-draw-spaces.returns"></a><h4>Returns</h4>
1566
1634
  <p> the <a class="link" href="GtkSourceView.html#GtkSourceDrawSpacesFlags" title="enum GtkSourceDrawSpacesFlags"><span class="type">GtkSourceDrawSpacesFlags</span></a>, 0 if no spaces should be drawn.</p>
1567
- <p></p>
1568
1635
  </div>
1569
1636
  </div>
1570
1637
  <hr>
@@ -1575,7 +1642,7 @@ gtk_source_view_get_completion (<em class="parameter"><code><a class="link" href
1575
1642
  <p>Gets the <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion"><span class="type">GtkSourceCompletion</span></a> associated with <em class="parameter"><code>view</code></em>
1576
1643
  .</p>
1577
1644
  <div class="refsect3">
1578
- <a name="id-1.2.2.3.11.33.5"></a><h4>Parameters</h4>
1645
+ <a name="gtk-source-view-get-completion.parameters"></a><h4>Parameters</h4>
1579
1646
  <div class="informaltable"><table width="100%" border="0">
1580
1647
  <colgroup>
1581
1648
  <col width="150px" class="parameters_name">
@@ -1590,7 +1657,7 @@ gtk_source_view_get_completion (<em class="parameter"><code><a class="link" href
1590
1657
  </table></div>
1591
1658
  </div>
1592
1659
  <div class="refsect3">
1593
- <a name="id-1.2.2.3.11.33.6"></a><h4>Returns</h4>
1660
+ <a name="gtk-source-view-get-completion.returns"></a><h4>Returns</h4>
1594
1661
  <p>the <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion"><span class="type">GtkSourceCompletion</span></a> associated with <em class="parameter"><code>view</code></em>
1595
1662
  . </p>
1596
1663
  <p><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GtkSource.Completion][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
@@ -1601,7 +1668,7 @@ gtk_source_view_get_completion (<em class="parameter"><code><a class="link" href
1601
1668
  <a name="gtk-source-view-get-gutter"></a><h3>gtk_source_view_get_gutter ()</h3>
1602
1669
  <pre class="programlisting"><a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter"><span class="returnvalue">GtkSourceGutter</span></a> *
1603
1670
  gtk_source_view_get_gutter (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
1604
- <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkTextView.html#GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> window_type</code></em>);</pre>
1671
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk3GtkTextView.html#GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> window_type</code></em>);</pre>
1605
1672
  <p>Returns the <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter"><span class="type">GtkSourceGutter</span></a> object associated with <em class="parameter"><code>window_type</code></em>
1606
1673
  for <em class="parameter"><code>view</code></em>
1607
1674
  .
@@ -1609,7 +1676,7 @@ Only GTK_TEXT_WINDOW_LEFT and GTK_TEXT_WINDOW_RIGHT are supported,
1609
1676
  respectively corresponding to the left and right gutter. The line numbers
1610
1677
  and mark category icons are rendered in the left gutter.</p>
1611
1678
  <div class="refsect3">
1612
- <a name="id-1.2.2.3.11.34.5"></a><h4>Parameters</h4>
1679
+ <a name="gtk-source-view-get-gutter.parameters"></a><h4>Parameters</h4>
1613
1680
  <div class="informaltable"><table width="100%" border="0">
1614
1681
  <colgroup>
1615
1682
  <col width="150px" class="parameters_name">
@@ -1631,11 +1698,11 @@ and mark category icons are rendered in the left gutter.</p>
1631
1698
  </table></div>
1632
1699
  </div>
1633
1700
  <div class="refsect3">
1634
- <a name="id-1.2.2.3.11.34.6"></a><h4>Returns</h4>
1701
+ <a name="gtk-source-view-get-gutter.returns"></a><h4>Returns</h4>
1635
1702
  <p> the <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter"><span class="type">GtkSourceGutter</span></a>. </p>
1636
1703
  <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1637
1704
  </div>
1638
- <p class="since">Since 2.8</p>
1705
+ <p class="since">Since: <a class="link" href="api-index-2-8.html#api-index-2.8">2.8</a></p>
1639
1706
  </div>
1640
1707
  <hr>
1641
1708
  <div class="refsect2">
@@ -1646,7 +1713,7 @@ gtk_source_view_set_background_pattern
1646
1713
  <em class="parameter"><code><a class="link" href="GtkSourceView.html#GtkSourceBackgroundPatternType" title="enum GtkSourceBackgroundPatternType"><span class="type">GtkSourceBackgroundPatternType</span></a> background_pattern</code></em>);</pre>
1647
1714
  <p>Set if and how the background pattern should be displayed.</p>
1648
1715
  <div class="refsect3">
1649
- <a name="id-1.2.2.3.11.35.5"></a><h4>Parameters</h4>
1716
+ <a name="gtk-source-view-set-background-pattern.parameters"></a><h4>Parameters</h4>
1650
1717
  <div class="informaltable"><table width="100%" border="0">
1651
1718
  <colgroup>
1652
1719
  <col width="150px" class="parameters_name">
@@ -1667,7 +1734,7 @@ gtk_source_view_set_background_pattern
1667
1734
  </tbody>
1668
1735
  </table></div>
1669
1736
  </div>
1670
- <p class="since">Since 3.16</p>
1737
+ <p class="since">Since: <a class="link" href="api-index-3-16.html#api-index-3.16">3.16</a></p>
1671
1738
  </div>
1672
1739
  <hr>
1673
1740
  <div class="refsect2">
@@ -1679,7 +1746,7 @@ gtk_source_view_get_background_pattern
1679
1746
  the background pattern should be displayed for this <em class="parameter"><code>view</code></em>
1680
1747
  .</p>
1681
1748
  <div class="refsect3">
1682
- <a name="id-1.2.2.3.11.36.5"></a><h4>Parameters</h4>
1749
+ <a name="gtk-source-view-get-background-pattern.parameters"></a><h4>Parameters</h4>
1683
1750
  <div class="informaltable"><table width="100%" border="0">
1684
1751
  <colgroup>
1685
1752
  <col width="150px" class="parameters_name">
@@ -1694,11 +1761,10 @@ the background pattern should be displayed for this <em class="parameter"><code>
1694
1761
  </table></div>
1695
1762
  </div>
1696
1763
  <div class="refsect3">
1697
- <a name="id-1.2.2.3.11.36.6"></a><h4>Returns</h4>
1764
+ <a name="gtk-source-view-get-background-pattern.returns"></a><h4>Returns</h4>
1698
1765
  <p> the <a class="link" href="GtkSourceView.html#GtkSourceBackgroundPatternType" title="enum GtkSourceBackgroundPatternType"><span class="type">GtkSourceBackgroundPatternType</span></a>.</p>
1699
- <p></p>
1700
1766
  </div>
1701
- <p class="since">Since 3.16</p>
1767
+ <p class="since">Since: <a class="link" href="api-index-3-16.html#api-index-3.16">3.16</a></p>
1702
1768
  </div>
1703
1769
  </div>
1704
1770
  <div class="refsect1">
@@ -1711,7 +1777,7 @@ the background pattern should be displayed for this <em class="parameter"><code>
1711
1777
  <div class="refsect2">
1712
1778
  <a name="GtkSourceSmartHomeEndType"></a><h3>enum GtkSourceSmartHomeEndType</h3>
1713
1779
  <div class="refsect3">
1714
- <a name="id-1.2.2.3.12.3.3"></a><h4>Members</h4>
1780
+ <a name="GtkSourceSmartHomeEndType.members"></a><h4>Members</h4>
1715
1781
  <div class="informaltable"><table width="100%" border="0">
1716
1782
  <colgroup>
1717
1783
  <col width="300px" class="enum_members_name">
@@ -1764,7 +1830,7 @@ of GTK_SOURCE_DRAW_SPACES_LEADING, GTK_SOURCE_DRAW_SPACES_TEXT or
1764
1830
  GTK_SOURCE_DRAW_SPACES_TRAILING is specified, whitespaces at any position in
1765
1831
  the line will be drawn (i.e. it has the same effect as specifying all of them).</p>
1766
1832
  <div class="refsect3">
1767
- <a name="id-1.2.2.3.12.4.4"></a><h4>Members</h4>
1833
+ <a name="GtkSourceDrawSpacesFlags.members"></a><h4>Members</h4>
1768
1834
  <div class="informaltable"><table width="100%" border="0">
1769
1835
  <colgroup>
1770
1836
  <col width="300px" class="enum_members_name">
@@ -1836,7 +1902,7 @@ the line will be drawn (i.e. it has the same effect as specifying all of them).<
1836
1902
  <div class="refsect2">
1837
1903
  <a name="GtkSourceViewGutterPosition"></a><h3>enum GtkSourceViewGutterPosition</h3>
1838
1904
  <div class="refsect3">
1839
- <a name="id-1.2.2.3.12.5.3"></a><h4>Members</h4>
1905
+ <a name="GtkSourceViewGutterPosition.members"></a><h4>Members</h4>
1840
1906
  <div class="informaltable"><table width="100%" border="0">
1841
1907
  <colgroup>
1842
1908
  <col width="300px" class="enum_members_name">
@@ -1868,7 +1934,7 @@ renderer</p>
1868
1934
  <div class="refsect2">
1869
1935
  <a name="GtkSourceBackgroundPatternType"></a><h3>enum GtkSourceBackgroundPatternType</h3>
1870
1936
  <div class="refsect3">
1871
- <a name="id-1.2.2.3.12.6.3"></a><h4>Members</h4>
1937
+ <a name="GtkSourceBackgroundPatternType.members"></a><h4>Members</h4>
1872
1938
  <div class="informaltable"><table width="100%" border="0">
1873
1939
  <colgroup>
1874
1940
  <col width="300px" class="enum_members_name">
@@ -1893,14 +1959,14 @@ renderer</p>
1893
1959
  </tbody>
1894
1960
  </table></div>
1895
1961
  </div>
1896
- <p class="since">Since 3.16</p>
1962
+ <p class="since">Since: <a class="link" href="api-index-3-16.html#api-index-3.16">3.16</a></p>
1897
1963
  </div>
1898
1964
  </div>
1899
1965
  <div class="refsect1">
1900
1966
  <a name="GtkSourceView.property-details"></a><h2>Property Details</h2>
1901
1967
  <div class="refsect2">
1902
1968
  <a name="GtkSourceView--auto-indent"></a><h3>The <code class="literal">“auto-indent”</code> property</h3>
1903
- <pre class="programlisting"> “auto-indent” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
1969
+ <pre class="programlisting"> “auto-indent” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
1904
1970
  <p>Whether to enable auto indentation.</p>
1905
1971
  <p>Flags: Read / Write</p>
1906
1972
  <p>Default value: FALSE</p>
@@ -1912,7 +1978,7 @@ renderer</p>
1912
1978
  <p>Draw a specific background pattern on the view.</p>
1913
1979
  <p>Flags: Read / Write</p>
1914
1980
  <p>Default value: GTK_SOURCE_BACKGROUND_PATTERN_TYPE_NONE</p>
1915
- <p class="since">Since 3.16</p>
1981
+ <p class="since">Since: <a class="link" href="api-index-3-16.html#api-index-3.16">3.16</a></p>
1916
1982
  </div>
1917
1983
  <hr>
1918
1984
  <div class="refsect2">
@@ -1926,13 +1992,15 @@ renderer</p>
1926
1992
  <a name="GtkSourceView--draw-spaces"></a><h3>The <code class="literal">“draw-spaces”</code> property</h3>
1927
1993
  <pre class="programlisting"> “draw-spaces” <a class="link" href="GtkSourceView.html#GtkSourceDrawSpacesFlags" title="enum GtkSourceDrawSpacesFlags"><span class="type">GtkSourceDrawSpacesFlags</span></a></pre>
1928
1994
  <p>Set if and how the spaces should be visualized.</p>
1995
+ <p>For a finer-grained method, there is also the GtkSourceTag's
1996
+ <a class="link" href="GtkSourceTag.html#GtkSourceTag--draw-spaces" title="The “draw-spaces” property"><span class="type">“draw-spaces”</span></a> property.</p>
1929
1997
  <p>Flags: Read / Write</p>
1930
- <p class="since">Since 2.4</p>
1998
+ <p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
1931
1999
  </div>
1932
2000
  <hr>
1933
2001
  <div class="refsect2">
1934
2002
  <a name="GtkSourceView--highlight-current-line"></a><h3>The <code class="literal">“highlight-current-line”</code> property</h3>
1935
- <pre class="programlisting"> “highlight-current-line” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
2003
+ <pre class="programlisting"> “highlight-current-line” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
1936
2004
  <p>Whether to highlight the current line.</p>
1937
2005
  <p>Flags: Read / Write</p>
1938
2006
  <p>Default value: FALSE</p>
@@ -1940,7 +2008,7 @@ renderer</p>
1940
2008
  <hr>
1941
2009
  <div class="refsect2">
1942
2010
  <a name="GtkSourceView--indent-on-tab"></a><h3>The <code class="literal">“indent-on-tab”</code> property</h3>
1943
- <pre class="programlisting"> “indent-on-tab” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
2011
+ <pre class="programlisting"> “indent-on-tab” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
1944
2012
  <p>Whether to indent the selected text when the tab key is pressed.</p>
1945
2013
  <p>Flags: Read / Write</p>
1946
2014
  <p>Default value: TRUE</p>
@@ -1948,7 +2016,7 @@ renderer</p>
1948
2016
  <hr>
1949
2017
  <div class="refsect2">
1950
2018
  <a name="GtkSourceView--indent-width"></a><h3>The <code class="literal">“indent-width”</code> property</h3>
1951
- <pre class="programlisting"> “indent-width” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
2019
+ <pre class="programlisting"> “indent-width” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
1952
2020
  <p>Width of an indentation step expressed in number of spaces.</p>
1953
2021
  <p>Flags: Read / Write</p>
1954
2022
  <p>Allowed values: [-1,32]</p>
@@ -1957,7 +2025,7 @@ renderer</p>
1957
2025
  <hr>
1958
2026
  <div class="refsect2">
1959
2027
  <a name="GtkSourceView--insert-spaces-instead-of-tabs"></a><h3>The <code class="literal">“insert-spaces-instead-of-tabs”</code> property</h3>
1960
- <pre class="programlisting"> “insert-spaces-instead-of-tabs” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
2028
+ <pre class="programlisting"> “insert-spaces-instead-of-tabs” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
1961
2029
  <p>Whether to insert spaces instead of tabs.</p>
1962
2030
  <p>Flags: Read / Write</p>
1963
2031
  <p>Default value: FALSE</p>
@@ -1965,7 +2033,7 @@ renderer</p>
1965
2033
  <hr>
1966
2034
  <div class="refsect2">
1967
2035
  <a name="GtkSourceView--right-margin-position"></a><h3>The <code class="literal">“right-margin-position”</code> property</h3>
1968
- <pre class="programlisting"> “right-margin-position” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre>
2036
+ <pre class="programlisting"> “right-margin-position” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#guint"><span class="type">guint</span></a></pre>
1969
2037
  <p>Position of the right margin.</p>
1970
2038
  <p>Flags: Read / Write</p>
1971
2039
  <p>Allowed values: [1,1000]</p>
@@ -1974,7 +2042,7 @@ renderer</p>
1974
2042
  <hr>
1975
2043
  <div class="refsect2">
1976
2044
  <a name="GtkSourceView--show-line-marks"></a><h3>The <code class="literal">“show-line-marks”</code> property</h3>
1977
- <pre class="programlisting"> “show-line-marks” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
2045
+ <pre class="programlisting"> “show-line-marks” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
1978
2046
  <p>Whether to display line mark pixbufs</p>
1979
2047
  <p>Flags: Read / Write</p>
1980
2048
  <p>Default value: FALSE</p>
@@ -1982,7 +2050,7 @@ renderer</p>
1982
2050
  <hr>
1983
2051
  <div class="refsect2">
1984
2052
  <a name="GtkSourceView--show-line-numbers"></a><h3>The <code class="literal">“show-line-numbers”</code> property</h3>
1985
- <pre class="programlisting"> “show-line-numbers” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
2053
+ <pre class="programlisting"> “show-line-numbers” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
1986
2054
  <p>Whether to display line numbers</p>
1987
2055
  <p>Flags: Read / Write</p>
1988
2056
  <p>Default value: FALSE</p>
@@ -1990,24 +2058,33 @@ renderer</p>
1990
2058
  <hr>
1991
2059
  <div class="refsect2">
1992
2060
  <a name="GtkSourceView--show-right-margin"></a><h3>The <code class="literal">“show-right-margin”</code> property</h3>
1993
- <pre class="programlisting"> “show-right-margin” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
2061
+ <pre class="programlisting"> “show-right-margin” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
1994
2062
  <p>Whether to display the right margin.</p>
1995
2063
  <p>Flags: Read / Write</p>
1996
2064
  <p>Default value: FALSE</p>
1997
2065
  </div>
1998
2066
  <hr>
1999
2067
  <div class="refsect2">
2068
+ <a name="GtkSourceView--smart-backspace"></a><h3>The <code class="literal">“smart-backspace”</code> property</h3>
2069
+ <pre class="programlisting"> “smart-backspace” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
2070
+ <p>Whether smart Backspace should be used.</p>
2071
+ <p>Flags: Read / Write</p>
2072
+ <p>Default value: FALSE</p>
2073
+ <p class="since">Since: <a class="link" href="api-index-3-18.html#api-index-3.18">3.18</a></p>
2074
+ </div>
2075
+ <hr>
2076
+ <div class="refsect2">
2000
2077
  <a name="GtkSourceView--smart-home-end"></a><h3>The <code class="literal">“smart-home-end”</code> property</h3>
2001
2078
  <pre class="programlisting"> “smart-home-end” <a class="link" href="GtkSourceView.html#GtkSourceSmartHomeEndType" title="enum GtkSourceSmartHomeEndType"><span class="type">GtkSourceSmartHomeEndType</span></a></pre>
2002
2079
  <p>Set the behavior of the HOME and END keys.</p>
2003
2080
  <p>Flags: Read / Write</p>
2004
2081
  <p>Default value: GTK_SOURCE_SMART_HOME_END_DISABLED</p>
2005
- <p class="since">Since 2.0</p>
2082
+ <p class="since">Since: <a class="link" href="api-index-2-0.html#api-index-2.0">2.0</a></p>
2006
2083
  </div>
2007
2084
  <hr>
2008
2085
  <div class="refsect2">
2009
2086
  <a name="GtkSourceView--tab-width"></a><h3>The <code class="literal">“tab-width”</code> property</h3>
2010
- <pre class="programlisting"> “tab-width” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre>
2087
+ <pre class="programlisting"> “tab-width” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#guint"><span class="type">guint</span></a></pre>
2011
2088
  <p>Width of a tab character expressed in number of spaces.</p>
2012
2089
  <p>Flags: Read / Write</p>
2013
2090
  <p>Allowed values: [1,32]</p>
@@ -2021,10 +2098,10 @@ renderer</p>
2021
2098
  <pre class="programlisting"><span class="returnvalue">void</span>
2022
2099
  user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view,
2023
2100
  <a class="link" href="GtkSourceBuffer.html#GtkSourceChangeCaseType" title="enum GtkSourceChangeCaseType"><span class="type">GtkSourceChangeCaseType</span></a> case_type,
2024
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2101
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2025
2102
  <p>Keybinding signal to change case of the text at the current cursor position.</p>
2026
2103
  <div class="refsect3">
2027
- <a name="id-1.2.2.3.14.2.5"></a><h4>Parameters</h4>
2104
+ <a name="GtkSourceView-change-case.parameters"></a><h4>Parameters</h4>
2028
2105
  <div class="informaltable"><table width="100%" border="0">
2029
2106
  <colgroup>
2030
2107
  <col width="150px" class="parameters_name">
@@ -2050,19 +2127,19 @@ user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><
2050
2127
  </tbody>
2051
2128
  </table></div>
2052
2129
  </div>
2053
- <p>Flags: <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2054
- <p class="since">Since 3.16</p>
2130
+ <p>Flags: <a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2131
+ <p class="since">Since: <a class="link" href="api-index-3-16.html#api-index-3.16">3.16</a></p>
2055
2132
  </div>
2056
2133
  <hr>
2057
2134
  <div class="refsect2">
2058
2135
  <a name="GtkSourceView-change-number"></a><h3>The <code class="literal">“change-number”</code> signal</h3>
2059
2136
  <pre class="programlisting"><span class="returnvalue">void</span>
2060
2137
  user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view,
2061
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
2062
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2138
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
2139
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2063
2140
  <p>Keybinding signal to edit a number at the current cursor position.</p>
2064
2141
  <div class="refsect3">
2065
- <a name="id-1.2.2.3.14.3.5"></a><h4>Parameters</h4>
2142
+ <a name="GtkSourceView-change-number.parameters"></a><h4>Parameters</h4>
2066
2143
  <div class="informaltable"><table width="100%" border="0">
2067
2144
  <colgroup>
2068
2145
  <col width="150px" class="parameters_name">
@@ -2088,18 +2165,18 @@ user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><
2088
2165
  </tbody>
2089
2166
  </table></div>
2090
2167
  </div>
2091
- <p>Flags: <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2092
- <p class="since">Since 3.16</p>
2168
+ <p>Flags: <a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2169
+ <p class="since">Since: <a class="link" href="api-index-3-16.html#api-index-3.16">3.16</a></p>
2093
2170
  </div>
2094
2171
  <hr>
2095
2172
  <div class="refsect2">
2096
2173
  <a name="GtkSourceView-join-lines"></a><h3>The <code class="literal">“join-lines”</code> signal</h3>
2097
2174
  <pre class="programlisting"><span class="returnvalue">void</span>
2098
2175
  user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view,
2099
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2176
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2100
2177
  <p>Keybinding signal to join the lines currently selected.</p>
2101
2178
  <div class="refsect3">
2102
- <a name="id-1.2.2.3.14.4.5"></a><h4>Parameters</h4>
2179
+ <a name="GtkSourceView-join-lines.parameters"></a><h4>Parameters</h4>
2103
2180
  <div class="informaltable"><table width="100%" border="0">
2104
2181
  <colgroup>
2105
2182
  <col width="150px" class="parameters_name">
@@ -2120,23 +2197,23 @@ user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><
2120
2197
  </tbody>
2121
2198
  </table></div>
2122
2199
  </div>
2123
- <p>Flags: <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2124
- <p class="since">Since 3.16</p>
2200
+ <p>Flags: <a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2201
+ <p class="since">Since: <a class="link" href="api-index-3-16.html#api-index-3.16">3.16</a></p>
2125
2202
  </div>
2126
2203
  <hr>
2127
2204
  <div class="refsect2">
2128
2205
  <a name="GtkSourceView-line-mark-activated"></a><h3>The <code class="literal">“line-mark-activated”</code> signal</h3>
2129
2206
  <pre class="programlisting"><span class="returnvalue">void</span>
2130
2207
  user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view,
2131
- <a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *iter,
2132
- <a href="http://developer.gnome.org/gdk2/gdk3-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event,
2133
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2208
+ <a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *iter,
2209
+ <a href="/usr/share/gtk-doc/html/gdk3gdk3-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event,
2210
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2134
2211
  <p>Emitted when a line mark has been activated (for instance when there
2135
2212
  was a button press in the line marks gutter). You can use <em class="parameter"><code>iter</code></em>
2136
2213
  to
2137
2214
  determine on which line the activation took place.</p>
2138
2215
  <div class="refsect3">
2139
- <a name="id-1.2.2.3.14.5.5"></a><h4>Parameters</h4>
2216
+ <a name="GtkSourceView-line-mark-activated.parameters"></a><h4>Parameters</h4>
2140
2217
  <div class="informaltable"><table width="100%" border="0">
2141
2218
  <colgroup>
2142
2219
  <col width="150px" class="parameters_name">
@@ -2151,12 +2228,12 @@ determine on which line the activation took place.</p>
2151
2228
  </tr>
2152
2229
  <tr>
2153
2230
  <td class="parameter_name"><p>iter</p></td>
2154
- <td class="parameter_description"><p>a <a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a></p></td>
2231
+ <td class="parameter_description"><p>a <a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a></p></td>
2155
2232
  <td class="parameter_annotations"> </td>
2156
2233
  </tr>
2157
2234
  <tr>
2158
2235
  <td class="parameter_name"><p>event</p></td>
2159
- <td class="parameter_description"><p>the <a href="http://developer.gnome.org/gdk2/gdk3-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> that activated the event</p></td>
2236
+ <td class="parameter_description"><p>the <a href="/usr/share/gtk-doc/html/gdk3gdk3-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> that activated the event</p></td>
2160
2237
  <td class="parameter_annotations"> </td>
2161
2238
  </tr>
2162
2239
  <tr>
@@ -2167,16 +2244,16 @@ determine on which line the activation took place.</p>
2167
2244
  </tbody>
2168
2245
  </table></div>
2169
2246
  </div>
2170
- <p>Flags: <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS">Run Last</a></p>
2247
+ <p>Flags: <a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS">Run Last</a></p>
2171
2248
  </div>
2172
2249
  <hr>
2173
2250
  <div class="refsect2">
2174
2251
  <a name="GtkSourceView-move-lines"></a><h3>The <code class="literal">“move-lines”</code> signal</h3>
2175
2252
  <pre class="programlisting"><span class="returnvalue">void</span>
2176
2253
  user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view,
2177
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> copy,
2178
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
2179
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2254
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> copy,
2255
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
2256
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2180
2257
  <p>The ::move-lines signal is a keybinding which gets emitted
2181
2258
  when the user initiates moving a line. The default binding key
2182
2259
  is Alt+Up/Down arrow. And moves the currently selected lines,
@@ -2185,7 +2262,7 @@ or the current line by <em class="parameter"><code>count</code></em>
2185
2262
  <em class="parameter"><code>count</code></em>
2186
2263
  of -1 or 1 is valid.</p>
2187
2264
  <div class="refsect3">
2188
- <a name="id-1.2.2.3.14.6.5"></a><h4>Parameters</h4>
2265
+ <a name="GtkSourceView-move-lines.parameters"></a><h4>Parameters</h4>
2189
2266
  <div class="informaltable"><table width="100%" border="0">
2190
2267
  <colgroup>
2191
2268
  <col width="150px" class="parameters_name">
@@ -2200,8 +2277,8 @@ or the current line by <em class="parameter"><code>count</code></em>
2200
2277
  </tr>
2201
2278
  <tr>
2202
2279
  <td class="parameter_name"><p>copy</p></td>
2203
- <td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the line should be copied,
2204
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if it should be moved</p></td>
2280
+ <td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the line should be copied,
2281
+ <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if it should be moved</p></td>
2205
2282
  <td class="parameter_annotations"> </td>
2206
2283
  </tr>
2207
2284
  <tr>
@@ -2217,19 +2294,19 @@ or the current line by <em class="parameter"><code>count</code></em>
2217
2294
  </tbody>
2218
2295
  </table></div>
2219
2296
  </div>
2220
- <p>Flags: <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2221
- <p class="since">Since 2.10</p>
2297
+ <p>Flags: <a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2298
+ <p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
2222
2299
  </div>
2223
2300
  <hr>
2224
2301
  <div class="refsect2">
2225
2302
  <a name="GtkSourceView-move-to-matching-bracket"></a><h3>The <code class="literal">“move-to-matching-bracket”</code> signal</h3>
2226
2303
  <pre class="programlisting"><span class="returnvalue">void</span>
2227
2304
  user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view,
2228
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> extend_selection,
2229
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2305
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> extend_selection,
2306
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2230
2307
  <p>Keybinding signal to move the cursor to the matching bracket.</p>
2231
2308
  <div class="refsect3">
2232
- <a name="id-1.2.2.3.14.7.5"></a><h4>Parameters</h4>
2309
+ <a name="GtkSourceView-move-to-matching-bracket.parameters"></a><h4>Parameters</h4>
2233
2310
  <div class="informaltable"><table width="100%" border="0">
2234
2311
  <colgroup>
2235
2312
  <col width="150px" class="parameters_name">
@@ -2244,7 +2321,7 @@ user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><
2244
2321
  </tr>
2245
2322
  <tr>
2246
2323
  <td class="parameter_name"><p>extend_selection</p></td>
2247
- <td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the move should extend the selection</p></td>
2324
+ <td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the move should extend the selection</p></td>
2248
2325
  <td class="parameter_annotations"> </td>
2249
2326
  </tr>
2250
2327
  <tr>
@@ -2255,22 +2332,22 @@ user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><
2255
2332
  </tbody>
2256
2333
  </table></div>
2257
2334
  </div>
2258
- <p>Flags: <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2259
- <p class="since">Since 3.16</p>
2335
+ <p>Flags: <a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2336
+ <p class="since">Since: <a class="link" href="api-index-3-16.html#api-index-3.16">3.16</a></p>
2260
2337
  </div>
2261
2338
  <hr>
2262
2339
  <div class="refsect2">
2263
2340
  <a name="GtkSourceView-move-words"></a><h3>The <code class="literal">“move-words”</code> signal</h3>
2264
2341
  <pre class="programlisting"><span class="returnvalue">void</span>
2265
2342
  user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view,
2266
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
2267
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2343
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
2344
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2268
2345
  <p>The ::move-words signal is a keybinding which gets emitted
2269
2346
  when the user initiates moving a word. The default binding key
2270
2347
  is Alt+Left/Right Arrow and moves the current selection, or the current
2271
2348
  word by one word.</p>
2272
2349
  <div class="refsect3">
2273
- <a name="id-1.2.2.3.14.8.5"></a><h4>Parameters</h4>
2350
+ <a name="GtkSourceView-move-words.parameters"></a><h4>Parameters</h4>
2274
2351
  <div class="informaltable"><table width="100%" border="0">
2275
2352
  <colgroup>
2276
2353
  <col width="150px" class="parameters_name">
@@ -2296,33 +2373,33 @@ word by one word.</p>
2296
2373
  </tbody>
2297
2374
  </table></div>
2298
2375
  </div>
2299
- <p>Flags: <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2300
- <p class="since">Since 3.0</p>
2376
+ <p>Flags: <a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2377
+ <p class="since">Since: <a class="link" href="api-index-3-0.html#api-index-3.0">3.0</a></p>
2301
2378
  </div>
2302
2379
  <hr>
2303
2380
  <div class="refsect2">
2304
2381
  <a name="GtkSourceView-redo"></a><h3>The <code class="literal">“redo”</code> signal</h3>
2305
2382
  <pre class="programlisting"><span class="returnvalue">void</span>
2306
2383
  user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *sourceview,
2307
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2308
- <p>Flags: <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2384
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2385
+ <p>Flags: <a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2309
2386
  </div>
2310
2387
  <hr>
2311
2388
  <div class="refsect2">
2312
2389
  <a name="GtkSourceView-show-completion"></a><h3>The <code class="literal">“show-completion”</code> signal</h3>
2313
2390
  <pre class="programlisting"><span class="returnvalue">void</span>
2314
2391
  user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view,
2315
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2392
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2316
2393
  <p>The ::show-completion signal is a key binding signal which gets
2317
2394
  emitted when the user requests a completion, by pressing</p>
2318
2395
  <span class="keycap"><strong>Control</strong></span>+<span class="keycap"><strong>space</strong></span>.
2319
2396
  <p>This will create a <a class="link" href="GtkSourceCompletionContext.html" title="GtkSourceCompletionContext"><span class="type">GtkSourceCompletionContext</span></a> with the activation
2320
2397
  type as <a class="link" href="GtkSourceCompletionContext.html#GTK-SOURCE-COMPLETION-ACTIVATION-USER-REQUESTED:CAPS"><code class="literal">GTK_SOURCE_COMPLETION_ACTIVATION_USER_REQUESTED</code></a>.</p>
2321
2398
  <p>Applications should not connect to it, but may emit it with
2322
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to activate the completion by
2399
+ <a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to activate the completion by
2323
2400
  another means, for example with another key binding or a menu entry.</p>
2324
2401
  <div class="refsect3">
2325
- <a name="id-1.2.2.3.14.10.8"></a><h4>Parameters</h4>
2402
+ <a name="GtkSourceView-show-completion.parameters"></a><h4>Parameters</h4>
2326
2403
  <div class="informaltable"><table width="100%" border="0">
2327
2404
  <colgroup>
2328
2405
  <col width="150px" class="parameters_name">
@@ -2343,23 +2420,23 @@ another means, for example with another key binding or a menu entry.</p>
2343
2420
  </tbody>
2344
2421
  </table></div>
2345
2422
  </div>
2346
- <p>Flags: <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2423
+ <p>Flags: <a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2347
2424
  </div>
2348
2425
  <hr>
2349
2426
  <div class="refsect2">
2350
2427
  <a name="GtkSourceView-smart-home-end"></a><h3>The <code class="literal">“smart-home-end”</code> signal</h3>
2351
2428
  <pre class="programlisting"><span class="returnvalue">void</span>
2352
2429
  user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view,
2353
- <a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *iter,
2354
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
2355
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2430
+ <a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *iter,
2431
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
2432
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2356
2433
  <p>Emitted when a the cursor was moved according to the smart home
2357
2434
  end setting. The signal is emitted after the cursor is moved, but
2358
2435
  during the GtkTextView::move-cursor action. This can be used to find
2359
2436
  out whether the cursor was moved by a normal home/end or by a smart
2360
2437
  home/end.</p>
2361
2438
  <div class="refsect3">
2362
- <a name="id-1.2.2.3.14.11.5"></a><h4>Parameters</h4>
2439
+ <a name="GtkSourceView-smart-home-end.parameters"></a><h4>Parameters</h4>
2363
2440
  <div class="informaltable"><table width="100%" border="0">
2364
2441
  <colgroup>
2365
2442
  <col width="150px" class="parameters_name">
@@ -2374,7 +2451,7 @@ home/end.</p>
2374
2451
  </tr>
2375
2452
  <tr>
2376
2453
  <td class="parameter_name"><p>iter</p></td>
2377
- <td class="parameter_description"><p>a <a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a></p></td>
2454
+ <td class="parameter_description"><p>a <a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a></p></td>
2378
2455
  <td class="parameter_annotations"> </td>
2379
2456
  </tr>
2380
2457
  <tr>
@@ -2390,25 +2467,24 @@ home/end.</p>
2390
2467
  </tbody>
2391
2468
  </table></div>
2392
2469
  </div>
2393
- <p>Flags: <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS">Run Last</a></p>
2394
- <p class="since">Since 3.0</p>
2470
+ <p>Flags: <a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS">Run Last</a></p>
2471
+ <p class="since">Since: <a class="link" href="api-index-3-0.html#api-index-3.0">3.0</a></p>
2395
2472
  </div>
2396
2473
  <hr>
2397
2474
  <div class="refsect2">
2398
2475
  <a name="GtkSourceView-undo"></a><h3>The <code class="literal">“undo”</code> signal</h3>
2399
2476
  <pre class="programlisting"><span class="returnvalue">void</span>
2400
2477
  user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *sourceview,
2401
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2402
- <p>Flags: <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2478
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2479
+ <p>Flags: <a href="/usr/share/gtk-doc/html/gobjectgobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p>
2403
2480
  </div>
2404
2481
  </div>
2405
2482
  <div class="refsect1">
2406
2483
  <a name="GtkSourceView.see-also"></a><h2>See Also</h2>
2407
- <p><a href="http://developer.gnome.org/gtk2/GtkTextView.html"><span class="type">GtkTextView</span></a>, <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a></p>
2484
+ <p><a href="/usr/share/gtk-doc/html/gtk3GtkTextView.html#GtkTextView-struct"><span class="type">GtkTextView</span></a>, <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a></p>
2408
2485
  </div>
2409
2486
  </div>
2410
2487
  <div class="footer">
2411
- <hr>
2412
- Generated by GTK-Doc V1.21.1</div>
2488
+ <hr>Generated by GTK-Doc V1.25.1</div>
2413
2489
  </body>
2414
2490
  </html>