3

When I save my file, I can see output of some commands in the echo area. The thing is, that it's very fast and the next message will overwrite the previous one. So I just see the message Wrote FILE. Is there a way, how can I look on the previous messages?

Drew
  • 75,699
  • 9
  • 109
  • 225
ryskajakub
  • 133
  • 3
  • 1
    The minibuffer and the echo area are in the same location. The former is for input; the latter is for output. Messages are typically written to the echo area. – Drew Jan 05 '17 at 15:59

1 Answers1

7

M-x view-echo-area-messages RET or C-h e will open the *Messages* buffer.

(This buffer can even contain some stuff that's not shown in the minibuffer, see inhibit-message.)

unhammer
  • 1,127
  • 8
  • 22