73 questions
0
votes
1
answer
480
views
Can't add "python.analysis.extraPaths" in nvim for using jedi-ls
I have a python repository, I'm using nvim as my ide and jedi-language-server for writing python files. I want to add a path like I can in my .vscode/settings.json -
{
"python.analysis....
0
votes
0
answers
73
views
Is it possible to add objects and functions manually to Jedi-Vim?
I created with pythonnet a interface for python to my C# project. To work in python I need auto completion for the C# import. I would write out the required objects and functions manually. But how to ...
2
votes
3
answers
316
views
autocompletion for own gobject derived library in python using jedi-vim using gobject introspection
I'm trying to create a shared C library that uses the gobject library as foundation. So my object inherits in GObject speak from GObject. GObject allows bindings to all different scripting languages ...
0
votes
1
answer
852
views
Vim Jedi Initalize
I was trying initalize jedi-vim. But i am getting "Not an editor command: Plugin 'davidhalter/jedi-vim'" error. I tried Plug , plug , Plugin , plugin but still getting the same error. README ...
0
votes
1
answer
251
views
jedi-vim how to close __doc__ window and remove from buffer list?
I love being able to SHIFT-K and get the docstring on a class or function. However, when I am done with the doc split at the top of my screen I have to navigate to it (CTRL-w) and close the split (:q)...
1
vote
1
answer
257
views
Calling PyObject_Call from thread causes stack overflow
I am trying to use Jedi https://github.com/davidhalter/jedi to create a custom python editor and I am using c++, it works perfectly, but it is a bit slow and stalls for a small while, so I am calling ...
2
votes
1
answer
5k
views
Python 3.6.8 - Jedi - ImportError: cannot import name 'traverse_parents'
<TL;DR>
When running import jedi in python 3.6.8 I get the following import error (see end of post for full traceback):
...
from jedi.common import traverse_parents
ImportError: cannot import ...
0
votes
0
answers
3k
views
Error detected while processing InsertEnter Autocommands: E117: Unknown function: jedi#remove_usages
I'm trying to setup vim-jedi on neovim.
Whenever I open a python file and switch to Insert mode I get the following error:
Error detected while processing InsertEnter Autocommands for "<buffer=...
1
vote
1
answer
3k
views
Jedi python is not installing while installing packages from requirements.txt
I have created a virtual environment with python 3.6 on my ubuntu18 system. But while installing requirements.txt file using the command like 'pip install -r requirements.txt' for a project, I have ...
2
votes
0
answers
4k
views
jedi-vim cannot initialize python
I installed jedi-vim with Pathogen. I want it to use my anaconda python which is python 3.6 and not my system python.
I have edited my $PATH variable in my .bashrc file to:
export PATH="/opt/anaconda/...
2
votes
0
answers
307
views
Make Jedi to load some specific library from unusual place (SageMath for example)
I want to make jedi (autocompletion, static analysis and refactoring library for python) to understand SageMath code (which is basically Python code with some minor additions and it is preparsing to ...
0
votes
1
answer
2k
views
Why is Autocomplete not working for vim-jedi
I'm relatively new to Vim so there may be something obvious I'm missing here. I'm usig Neovim and have installed the vim-jedi plugin. When I'm typing, I can see that it's offering autocomplete options:...
1
vote
0
answers
425
views
Refactoring across files in jedi-vim
I know that refactoring within a file is possible via leader-r.
Is it possible to refactor code with jedi-vim across files, i.e. in the whole project?
3
votes
0
answers
2k
views
Omni completion pattern not found for some modules
I've compiled vim 8.1 from this GitHub link, before I was using vim 8.0 and didn't have any issues. Now, for some reason, after importing modules like numpy, pandas, matplotlib and more, it does not ...
0
votes
1
answer
680
views
How to make Jedi-vim navigate to declaration on Ctrl+click?
I'm trying to setup Vim with jedi-vim for Python development. I would like jedi-vim to navigate to declaration on Ctrl+click (like in Pycharm) instead of the default <leader>d. How to achieve ...