2

I cannot exit Vim, I hit escape and tried :q :x :qx

None of the other questions are working, I am running windows 8.

AncientSwordRage
  • 7,086
  • 19
  • 90
  • 173

2 Answers2

13

To escape from Vim

  1. ctrl+c to interrupt current task and return to the command mode
  2. :q![ENTER] to quit, bypassing save prompt
Community
  • 1
  • 1
folkol
  • 4,752
  • 22
  • 25
-1

:q! then Enter to quit without saving

:wq then Enter to save and quit

cppprog
  • 804
  • 3
  • 12
  • 22