I usually play with elisp code on my buffer from scratch. I find it difficult to play with elisp code that moves cursors this way because I donβt know how to separate the buffer for editing the code and the buffer for testing the code.
For example, if I want to play with the following code:
(backward-up-list 1) (backward-sexp 1) (kill-sexp 2)
From a search using the elsc count , I would like to run one line at a time and see what each line does. But the code moves the cursor in the buffer itself from scratch, which I inserted into this code, and I already use this caret to edit or run the code. Another problem is that this code needs to be tested on a TeX document, and my zero buffer is not a TeX document.
It all comes down to how to separate the artist and the picture.
Although in this example, just looking at the Ch f manual will be enough to understand what is going on. But this is only because this sample code is quite simple.
source share