:right-sidebar: True DeleteType =================================================================== .. currentmodule:: gi.repository.Gtk .. class:: DeleteType :no-contents-entry: Passed to various keybinding signals for deleting text. Fields ------ .. rst-class:: interim-class .. class:: DeleteType :no-index: .. attribute:: CHARS Delete characters. .. attribute:: DISPLAY_LINES Delete display-lines. Display-lines refers to the visible lines, with respect to the current line breaks. As opposed to paragraphs, which are defined by line breaks in the input. .. attribute:: DISPLAY_LINE_ENDS Delete only the portion of the display-line to the left/right of cursor. .. attribute:: PARAGRAPHS Delete entire line. Like C-k in pico. .. attribute:: PARAGRAPH_ENDS Delete to the end of the paragraph. Like C-k in Emacs (or its reverse). .. attribute:: WHITESPACE Delete only whitespace. Like M-\ in Emacs. .. attribute:: WORDS Delete words. .. attribute:: WORD_ENDS Delete only the portion of the word to the left/right of cursor if we’re in the middle of a word.