VimState constructor

VimState()

Implementation

VimState()
  : mode = VimMode.normal,
    cursor = const CursorPosition(0, 0),
    count = 0,
    register = VimRegister(),
    lastSearch = '',
    lastSearchForward = true,
    lastChange = '',
    commandBuffer = '',
    replaceMode = false;