blukat29 / vimedu

Learn basics of vim interactively.
MIT License
1 stars 1 forks source link

[Bug] 'c' operator moves to normal mode. #9

Closed blukat29 closed 9 years ago

blukat29 commented 9 years ago

Two cases are involved.

  1. In normal mode, press "cc". This is "change this line" command. So Vim should result in insert mode. CodeMirror seems to work correctly, but the FSM does not.
  2. In visual mode, press "c". This terminates the visual mode and allow changing that part. So again, Vim should end up in insert mode. Both CodeMirror and the FSM arrives in Normal mode.