package mew_vi

  1. Overview
  2. Docs
type insert =
  1. | Append of string
  2. | AppendEol of string
  3. | Insert of string
  4. | InsertBol of string
  5. | Newline_below of string
  6. | Newline_above of string
type motion =
  1. | Left of int
  2. | Right of int
  3. | Right_nl of int
  4. | Line_FirstChar of int
  5. | Line_FirstNonBlank of int
  6. | Line_LastChar of int
  7. | Line_LastChar_nl of int
  8. | Line_LastNonBlank of int
  9. | Line_LastNonBlank_nl of int
  10. | Upward of int
  11. | Downward of int
  12. | GotoLine of int
  13. | GotoLine_first
  14. | GotoLine_last
  15. | Word of int
  16. | WORD of int
  17. | Word_end of int
  18. | WORD_end of int
  19. | Word_back of int
  20. | WORD_back of int
  21. | Word_back_end of int
  22. | WORD_back_end of int
  23. | Line
  24. | Occurrence_inline of string
  25. | Occurrence_inline_back of string
  26. | Occurrence_inline_till of string
  27. | Occurrence_inline_till_back of string
  28. | Sentence_backword of int
  29. | Sentence_forward of int
  30. | Paragraph_backward of int
  31. | Paragraph_forward of int
  32. | Word_include of int
  33. | Word_inner of int
  34. | WORD_include of int
  35. | WORD_inner of int
  36. | Sentence_include of int
  37. | Sentence_inner of int
  38. | Paragraph_include of int
  39. | Paragraph_inner of int
  40. | Parenthesis_include of int
  41. | Parenthesis_inner of int
  42. | Bracket_include of int
  43. | Bracket_inner of int
  44. | AngleBracket_include of int
  45. | AngleBracket_inner of int
  46. | Brace_include of int
  47. | Brace_inner of int
  48. | Quote_include of string * int
  49. | Quote_inner of string * int
  50. | Match
type t =
  1. | Insert of insert * int
  2. | Motion of motion * int
  3. | Delete of motion * int
  4. | Change of motion * int
  5. | Join of int
  6. | Undo of int
  7. | Paste_before of int
  8. | Paste_after of int
  9. | Yank of motion * int
  10. | ChangeMode of Mode.Name.t
OCaml

Innovation. Community. Security.