When making separate cells in order to make separate computations to better see the result of each one before going to the next cell to do the next computation (which is a good way of doing things), it will be very useful and more efficient if the cursor would jump to the start of next input cell automatically.
This allows one to keep the hand on the ENTER
key, and just hit ENTER
again, without having to reach to the downarrow
key to reposition the cursor to the next cell, and move the hand again to the ENTER
key. This can get tiring if one has many cells to process one by one. (This is btw how Maple does it, it automatically jumps to start of next command)
Here is an example
Is it possible to make the notebook do this?
Answer
You can setup CellEpilog
to automatically advance a cell after evaluating the current one. That way, you don't need to press the down arrow after evaluating a cell.
SetOptions[EvaluationNotebook[],
CellEpilog :> SelectionMove[EvaluationNotebook[], Next, Cell]]
Comments
Post a Comment