You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been using vim-ipython-cell to interface with ipython. Recently, my workflow included driving qtconsole from vim and discovered this plugin after trying a few alternatives. I love this plugin and it has been working to work with. But I miss the navigation features of vim-ipython-cell which drives ipython through vim-slime. I am trying to get it to talk to nvim-ipy instead to drive jupyter console instead.
I was able to get most of the functionality by making a few likes of change to both nvim-ipy and vim-ipython-cell. The main change to nvim-ipy was to create a better interface to IPyRun by adding the following:
This creates a command called IPyRun1 that takes care of all the escaping needed to call it from python environment running within vim. Without this, escaping strings to send to jupyter was extremely problematic.
I think this interface will be generally useful too to be included in nvim-ipy.
Thoughts/suggestions?
The text was updated successfully, but these errors were encountered:
Hi,
I have been using
vim-ipython-cell
to interface withipython
. Recently, my workflow included driving qtconsole from vim and discovered this plugin after trying a few alternatives. I love this plugin and it has been working to work with. But I miss the navigation features ofvim-ipython-cell
which drives ipython through vim-slime. I am trying to get it to talk tonvim-ipy
instead to drivejupyter console
instead.I was able to get most of the functionality by making a few likes of change to both
nvim-ipy
andvim-ipython-cell
. The main change tonvim-ipy
was to create a better interface to IPyRun by adding the following:This creates a command called
IPyRun1
that takes care of all the escaping needed to call it from python environment running within vim. Without this, escaping strings to send tojupyter
was extremely problematic.I think this interface will be generally useful too to be included in
nvim-ipy
.Thoughts/suggestions?
The text was updated successfully, but these errors were encountered: