-
Notifications
You must be signed in to change notification settings - Fork 0
Python Completion
Iury O. G. Figueiredo edited this page Feb 19, 2026
·
1 revision
Python completion is made through the jedi library. In order to have Python completion using jedi library just make sure it is installed with.
pip install jedi
Then make sure it has the following lines in the escsrc file.
from cspkg.plugins import jedi
load_module(jedi)
After that just use the following keystroke in Extra mode to do completion in Python code.
First get in Extra mode with.
<Alt-v>
Then get the completions with.
<Alt-period>
For viewing documentationi for a given word just press the keystroke below when having a given word highlighed in the completions box.
<Alt-h>
Note: Make sure you aren't using ycmd or other completion plugin when using jedi or vice versa.