Interface DeleteType


public interface DeleteType
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Delete characters.
    static final int
    Delete only the portion of the
    display-line to the left/right of cursor.
    static final int
    Delete display-lines.
    static final int
    Delete to the end of the
    paragraph.
    static final int
    Delete entire line.
    static final int
    Delete only whitespace.
    static final int
    Delete only the portion of the word to the
    left/right of cursor if we’re in the middle of a word.
    static final int
    Delete words.
  • Field Details

    • CHARS

      static final int CHARS
      Delete characters.
      See Also:
    • WORD_ENDS

      static final int WORD_ENDS
      Delete only the portion of the word to the
      left/right of cursor if we’re in the middle of a word.
      See Also:
    • WORDS

      static final int WORDS
      Delete words.
      See Also:
    • DISPLAY_LINES

      static final int 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.
      See Also:
    • DISPLAY_LINE_ENDS

      static final int DISPLAY_LINE_ENDS
      Delete only the portion of the
      display-line to the left/right of cursor.
      See Also:
    • PARAGRAPH_ENDS

      static final int PARAGRAPH_ENDS
      Delete to the end of the
      paragraph. Like C-k in Emacs (or its reverse).
      See Also:
    • PARAGRAPHS

      static final int PARAGRAPHS
      Delete entire line. Like C-k in pico.
      See Also:
    • WHITESPACE

      static final int WHITESPACE
      Delete only whitespace. Like M-\ in Emacs.
      See Also: