gtksourceview2-0.11.1: Binding to the GtkSourceView library.

Portabilityportable (depends on GHC)
Stabilityprovisional
Maintainergtk2hs-users@lists.sourceforge.net

Graphics.UI.Gtk.SourceView.SourceIter

Description

Adds extra useful methods for TextIter for searching forwards and backwards within a region in the buffer and matching brackets.

  • There is no SourceIter object, just extra methods for TextIter

Synopsis

Documentation

sourceIterForwardSearch :: TextIter -> String -> [SourceSearchFlags] -> Maybe TextIter -> IO (Maybe (TextIter, TextIter))Source

same as textIterForwardSearch but allows case insensitive search and possibly in the future regular expressions.

sourceIterBackwardSearch :: TextIter -> String -> [SourceSearchFlags] -> Maybe TextIter -> IO (Maybe (TextIter, TextIter))Source

same as textIterForwardSearch but allows case insensitive search and possibly in the future regular expressions.