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:
|
|||||||
|
|
C-x b Just C-x b |
|||||||||||
|
|
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.
|
|||
|
|
|
This is what I use - I have this bound to a convenient keystroke. It sends you to the
|
|||
|
|
|
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 :
|
|||
|
|
|
There are a whole bunch of tips on this EmacsWiki page. Here's the first one:
|
|||
|
|
|
Like the docstring says, this function will:
This will bring a new scratch buffer up which looks like the initial scratch buffer.
|
|||
|
|
|
I have combined the solutions posted so far into one function:
To apply this function in your .emacs use:
This will make the scratch buffer indestructible in the first place, and if saved it will be recreated. Additionally we can use a shortcut function
In the past it has proven useful to know the original startup-directory from which Emacs was started. This is either the value of
So --startup-directory will always return the base directory of your makefile, TODO-file etc. In case there is no desktop (--no-desktop commandline-switch or no desktop-file) the |
||||
|
|
to create a new buffer which is in lisp interaction mode also. |
|||
|
|