What is the key sequence for closing the current buffer in Emacs?

Viewed 51880

If I click on File -> Close, it closes the buffer like I want, but doesn't list a key mapping. What is the key mapping?

5 Answers

BKB has already given correct answer. Just wanted to add that C-h b lists the key bindings applicable in current buffer

  1. C-x k to kill the current buffer.
  2. C-x 0 to close the current window.
  3. C-x 1 to close every other window.
Related