Buffer.createSourceMark

gtksource.mark.Mark createSourceMark(string name, string category, gtk.text_iter.TextIter where)

Creates a source mark in the buffer of category category.

A source mark is a [gtk.text_mark.TextMark] but organized into categories. Depending on the category a pixbuf can be specified that will be displayed along the line of the mark.

Like a [gtk.text_mark.TextMark], a classMark can be anonymous if the passed name is null. Also, the buffer owns the marks so you shouldn't unreference it.

Marks always have left gravity and are moved to the beginning of the line when the user deletes the line they were in.

Typical uses for a source mark are bookmarks, breakpoints, current executing instruction indication in a source file, etc..

Parameters

namethe name of the mark, or null.
categorya string defining the mark category.
wherelocation to place the mark.

Returns

a new classMark, owned by the buffer.