Module: Gtk::DeleteType

Defined in:
(unknown)

Constant Summary collapse

CHARS =

Delete characters.

0 or :chars
WORD_ENDS =

Delete only the portion of the word to the

left/right of cursor if we’re in the middle of a word.
1 or :word_ends
WORDS =

Delete words.

2 or :words
DISPLAY_LINES =

Delete display-lines. Display-lines

refers to the visible lines, with respect to to the current line
breaks. As opposed to paragraphs, which are defined by line
breaks in the input.
3 or :display_lines
DISPLAY_LINE_ENDS =

Delete only the portion of the

display-line to the left/right of cursor.
4 or :display_line_ends
PARAGRAPH_ENDS =

Delete to the end of the

paragraph. Like C-k in Emacs (or its reverse).
5 or :paragraph_ends
PARAGRAPHS =

Delete entire line. Like C-k in pico.

6 or :paragraphs
WHITESPACE =

Delete only whitespace. Like M-\ in Emacs.

7 or :whitespace