emacs-jupyter / jupyter

An interface to communicate with Jupyter kernels.
GNU General Public License v3.0
934 stars 92 forks source link

up arrow and down arrow key to navigate code #520

Closed Yousuf28 closed 8 months ago

Yousuf28 commented 9 months ago

Thanks for the package. It really help set up interactive data analysis environment. I have one question. If I start IPyhton on terminal and run some code, I can navigate code history by pressing up and down arrow. When I start Jupyter-run-repl in emacs, which start an IPython terminal. on the IPython terminal, If I press up and down arrow, the cursor itself move up and down. Are there any key binding I can just go to previous code chunk?

Thanks

nnicandro commented 8 months ago

You can use M-n and M-p in the REPL buffer to navigate code chunks in the REPL history.

Yousuf28 commented 7 months ago

thanks @nnicandro