Module Mew_vi__.Vi_action
type insert
=
|
Append of string
|
AppendEol of string
|
Insert of string
|
InsertBol of string
|
Newline_below of string
|
Newline_above of string
type motion
=
type register
= string
type t
=
|
Insert of insert * int
|
Motion of motion * int
|
Delete of register * motion * int
|
Change of register * motion * int
|
Join of int
|
Undo of int
|
Paste_before of register * int
|
Paste_after of register * int
|
Yank of register * motion * int
|
DeleteSelected of register
|
YankSelected of register
|
ChangeMode of Mew_vi.Mode.Name.t