Package: gtk
Function gtk:text-buffer-delete
| Lambda Listgtk:text-buffer-delete (buffer start end &key interactive editable) SyntaxArgumentsReturn ValueThe boolean whether some text was actually deleted. Details                        Deletes text between the start and end iterators.    The order of the start and end iterators is not actually relevant.  The gtk:text-buffer-delete function will reorder them. This function  actually emits the "delete-range" signal, and the default
  handler of that signal deletes the text. Because the text buffer is modified,
  all outstanding iterators become invalid after calling this function. However,  the start and end interators will be re-initialized to point to
  the location where text was deleted. If the interactive keyword argument is true deletes all editable text for each editable sub range of [start, end). The start and end iterators are revalidated to point to the location of the last deleted range, or left untouched if no text was deleted. Notes | See also | 
#2025-06-30