-
Notifications
You must be signed in to change notification settings - Fork 162
Support for IPython 3.0 #119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
IPython 3.0 changed a number of kernel related functionality which require updates. Current commit allow the plugin to find the kernel with the |
It sounds like you're doing a fantastic job, jjhelmus! Thanks so much for taking the time. I'm pretty much dependent on vim-ipython, but I don't have much time to tinker with it. |
The cursor position must be specified in IPython 3 as the kernel does the lexing.
All the features I've tested are working on IPython 3.1.0. Let me know if there is anything I missed. |
Fixed issue where completions that occur not at the end of line where incorrectly completing at the end of the line.
@ivanov Can this be reviewed for possible merging? |
this seems reasonable, thanks for pitching in @jjhelmus |
Support for IPython 3.0, thanks to @jjhelmus
Here vim-ipython does not work for vim compiled for python3 (ArchLinux gvim-python3 package). Maybe it's not supposed to work since has('python') is 0, but has('python3') == 1, which I put into the ipy.vim...
When I used vim compiled with python2, vim-ipython didn't work either for ipython3, telling me that vim and ipython had to be using the same python installation... |
No description provided.