If I accidentally closed the scratch buffer in Emacs, how do I create a new scratch buffer?
|
|
|
|
|
|
|
GNU Emacs default bindings:
or, more verbosely
The In general you can create as many "scratch" buffers as you want, and name them however you choose.
switches to a buffer
changes the current buffer's major mode to Text mode. To find all the modes available (that is, without requiring any new packages), you can get a list by typing:
|
||||
|
|
|
I used to use dwj's solution, and I was quite happy about it, until the day I realized that it failed when you actually rename the scratch buffer (for example by saving it). Then I adopted this, which works well for me :
|
||
|
|
|
|
This is what I use - I have this bound to a convenient keystroke. It sends you to the
|
||
|
|
|
|
I add following in my .emacs:
If I don't want to see scratch buffer I press C-x C-k , but it doesn't kill it, just place in the end of buffer list, so then I need it next time I don't have to create new one. |
||
|
|
|
|
I found this years ago when I first started using emacs; I have no idea where now but it has always had a home in my personal .el files. It does pop up in google searches.
|
||
|
|
|
|
to create a new buffer which is in lisp interaction mode also. |
||
|
|
|
C-x b Just C-x b |
||||||||
|
