I am stuck and cannot escape. It says:
type :quit<Enter> to quit VIM
But when I type that it simply appears in the object body.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Hit the Esc key to enter "Normal mode". Then you can type
:to enter "Command-line mode". A colon (:) will appear at the bottom of the screen and you can type in one of the following commands. To execute a command, press the Enter key.:qto quit (short for:quit):q!to quit without saving (short for:quit!):wqto write and quit:wq!to write and quit, attempting to force the write if the file lacks write permission:xto write and quit; like:wqbut writes only if modified (short for:exit):qato quit all (short for:quitall):cqto quit, without saving, with a nonzero exit code to indicate failure (short for:cquit)You can also quit Vim directly from "Normal mode" by typing
ZZto save and quit (same as:x) orZQto just quit (same as:q!). (Note that case is important here.ZZandzzdo not mean the same thing.)Vim has extensive help – that you can access with the
:helpcommand – where you can find answers to all your questions and a tutorial for beginners.