uwhpsc-2016 / syllabus

Spring 2016 Course Syllabus and Information
15 stars 20 forks source link

How do I quit emacs or vim session #9

Open fengx4 opened 8 years ago

fengx4 commented 8 years ago

Seems like I am stuck there? I tried control + c(x) but it does not help

cswiercz commented 8 years ago

In emacs it is

Ctrl-x Ctrl-c

In vi/vim it is

:q or :q!

(The latter is to quit without saving.)

hughkf commented 8 years ago

In vim, to save and quit, it's "ZZ".

On Fri, Apr 1, 2016 at 11:49 AM, Chris Swierczewski < notifications@github.com> wrote:

In emacs it is

Ctrl-x Ctrl-c

In vi/vim it is

:q or :q!

(The latter is to quit without saving.)

— You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub https://github.com/uwhpsc-2016/syllabus/issues/9#issuecomment-204518518

fengx4 commented 8 years ago

Thanks!!