Questions tagged [jedi-vim]

jedi-vim is a is a VIM binding to the autocompletion library Jedi.

74 questions
1
vote
4 answers

Something goes wrong when adding jedi-vim

I followed mbrochh's instruction https://github.com/mbrochh/vim-as-a-python-ide to build my vim as a python IDE. But things go wrong when openning the vim after I put jedi-vim into ~/.vim/bundle. The following is the warnings Error detected while…
progmDong
  • 29
  • 4
0
votes
1 answer

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.extraPaths": [ "./" ] }⏎ This allows the…
0
votes
0 answers

Why jedi-vim automatically works only after a dot?

By default jedi-vim is working only after a dot or we have to trigger it manually using Ctrl+Space. I need automatically autocompletion of variables and all keywords used in python. I need autocompletion at all the time like lsp instead of only…
adward
  • 1
0
votes
0 answers

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 import these to Jedi-Vim?
Jules_96
  • 81
  • 8
0
votes
1 answer

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 of jedi-vim repository says: Add the following line in…
Hapalua
  • 13
  • 4
0
votes
1 answer

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). And it is still in my buffer list, which is a…
Carl
  • 695
  • 8
  • 21
0
votes
0 answers

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 "": E117: Unknown function: jedi#remove_usages I'm…
Harsh Parekh
  • 33
  • 1
  • 8
0
votes
1 answer

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: I can scroll down to this option (using the…
Chris J Harris
  • 1,597
  • 2
  • 14
  • 26
0
votes
1 answer

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 d. How to achieve this?
planetp
  • 14,248
  • 20
  • 86
  • 160
0
votes
2 answers

showing structure view for python files using jedi-vim

Does jedi vim support anything like intellijs https://www.jetbrains.com/help/idea/structure-tool-window-file-structure-popup.html ?
0
votes
1 answer

Vim UltiSnips for python not working

Maybe it's a stupid question, but I can't figure it out. I have installed the UltiSnips plugin [UltiSnips plugin][1]. I followed all the instructions on setting it up. I added this into my .vimrc file but it's not working: " Track the engine. Plugin…
Nurjan
  • 5,889
  • 5
  • 34
  • 54
0
votes
1 answer

the docstring popup from Jedi-vim gets written to my doc instead of just popping up and disappearing

the docstring popup from Jedi-vim gets written to my doc instead of just popping up and disappearing. I have the same flavor of VIM and JEDI on another box, works fine. Any ideas? Versions jedi-vim: latest as of this post Vim / Neovim: VIM - Vi…
D3l_Gato
  • 1,297
  • 2
  • 17
  • 25
0
votes
1 answer

Jedi-vim + YCM issue

I have a issue with hints showed by Jedi VIM. Here is how it looks like: Image Here are my .vimrc settings: let g:ycm_global_ycm_extra_conf = "~/.vim/.ycm_extra_conf.py" let g:ycm_python_binary_path =…
0
votes
5 answers

Autocompletion with Jedi-vim gives Error

-- Omni completion (^O^N^P) Pattern not found This is the error that I am getting when I look into the :messages in Vim. Please install Jedi if you want to use jedi-vim. The error was:…
0
votes
1 answer

Python jedi code completion: how to get the doc string

I have this snippet of Python code. In the Case A, I don't get the doc string, but in the Case B, I get it. Please advise me to get it to work in the Case A. Thanks. from jedi import Script, Interpreter import math # Case A completions =…
Developer
  • 31
  • 5