{"id":13682935,"url":"https://github.com/deoplete-plugins/deoplete-jedi","last_synced_at":"2025-04-30T09:35:11.546Z","repository":{"id":49742719,"uuid":"50264464","full_name":"deoplete-plugins/deoplete-jedi","owner":"deoplete-plugins","description":"deoplete.nvim source for Python","archived":false,"fork":false,"pushed_at":"2022-11-15T05:08:11.000Z","size":474,"stargazers_count":590,"open_issues_count":8,"forks_count":39,"subscribers_count":16,"default_branch":"master","last_synced_at":"2024-08-02T13:34:43.143Z","etag":null,"topics":["deoplete","deoplete-source","jedi","neovim","neovim-plugin","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deoplete-plugins.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-01-23T23:54:25.000Z","updated_at":"2024-07-08T23:46:07.000Z","dependencies_parsed_at":"2022-09-15T16:10:20.578Z","dependency_job_id":null,"html_url":"https://github.com/deoplete-plugins/deoplete-jedi","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deoplete-plugins%2Fdeoplete-jedi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deoplete-plugins%2Fdeoplete-jedi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deoplete-plugins%2Fdeoplete-jedi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deoplete-plugins%2Fdeoplete-jedi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deoplete-plugins","download_url":"https://codeload.github.com/deoplete-plugins/deoplete-jedi/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224206319,"owners_count":17273437,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["deoplete","deoplete-source","jedi","neovim","neovim-plugin","python"],"created_at":"2024-08-02T13:01:55.919Z","updated_at":"2024-11-12T02:32:34.779Z","avatar_url":"https://github.com/deoplete-plugins.png","language":"Python","readme":"# deoplete-jedi\n\n\n[deoplete.nvim](https://github.com/Shougo/deoplete.nvim) source for [jedi](https://github.com/davidhalter/jedi).\n\n|| **Status** |\n|:---:|:---:|\n| **Travis CI** |[![Build Status](https://travis-ci.org/zchee/deoplete-jedi.svg?branch=master)](https://travis-ci.org/zchee/deoplete-jedi)|\n| **Gitter** |[![Join the chat at https://gitter.im/zchee/deoplete-jedi](https://badges.gitter.im/zchee/deoplete-jedi.svg)](https://gitter.im/zchee/deoplete-jedi?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)|\n\n\n## Required\n\n- Neovim and neovim/python-client\n  - https://github.com/neovim/neovim\n  - https://github.com/neovim/python-client\n\n- deoplete.nvim\n  - https://github.com/Shougo/deoplete.nvim\n\n- jedi (the latest is recommended)\n  - https://github.com/davidhalter/jedi\n\n\n## Install\n\n```sh\npip3 install --user jedi --upgrade\n```\n\nAnd\n\n```vim\nNeoBundle 'deoplete-plugins/deoplete-jedi'\n# or\nPlug 'deoplete-plugins/deoplete-jedi'\n```\n\n**Note:** If you don't want to use a plugin manager, you will need to clone\nthis repo recursively:\n\n```\ngit clone --recursive https://github.com/deoplete-plugins/deoplete-jedi\n```\n\nWhen updating the plugin, you will want to be sure that the Jedi submodule is\nkept up to date with:\n\n```\ngit submodule update --init\n```\n\n\n## Options\n\n- `g:deoplete#sources#jedi#statement_length`: Sets the maximum length of\n  completion description text.  If this is exceeded, a simple description is\n  used instead.\n  Default: `50`\n- `g:deoplete#sources#jedi#enable_typeinfo`: Enables type information of\n  completions.  If you disable it, you will get the faster results.\n  Default: `1`\n- `g:deoplete#sources#jedi#enable_short_types`: Enables short completion types.\n  Default: `0`\n- `g:deoplete#sources#jedi#short_types_map`: Short types mapping dictionary.\n  Default: `{\n    'import': 'imprt',\n    'function': 'def',\n    'globalstmt': 'var',\n    'instance': 'var',\n    'statement': 'var',\n    'keyword': 'keywd',\n    'module': 'mod',\n    'param': 'arg',\n    'property': 'prop',\n    'bytes': 'byte',\n    'complex': 'cmplx',\n    'object': 'obj',\n    'mappingproxy': 'dict',\n    'member_descriptor': 'cattr',\n    'getset_descriptor': 'cprop',\n    'method_descriptor': 'cdef',\n}`\n- `g:deoplete#sources#jedi#show_docstring`: Shows docstring in preview window.\n  Default: `0`\n- `g:deoplete#sources#jedi#python_path`: Set the Python interpreter path to use\n  for the completion server.  It defaults to \"python\", i.e. the first available\n  `python` in `$PATH`.\n  **Note**: This is different from Neovim's Python (`:python`) in general.\n- `g:deoplete#sources#jedi#extra_path`: A list of extra paths to add to\n  `sys.path` when performing completions.\n- `g:deoplete#sources#jedi#ignore_errors`: Ignore jedi errors for completions.\n  Default: `1`\n- `g:deoplete#sources#jedi#ignore_private_members`: Ignore private members from\n  completions.\n  Default: `0`\n\n\n## Virtual Environments\n\nIf you are using virtualenv, it is recommended that you create environments\nspecifically for Neovim.  This way, you will not need to install the neovim\npackage in each virtualenv.  Once you have created them, add the following to\nyour vimrc file:\n\n```vim\nlet g:python_host_prog = '/full/path/to/neovim2/bin/python'\nlet g:python3_host_prog = '/full/path/to/neovim3/bin/python'\n```\n\nDeoplete only requires Python 3.  See `:help provider-python` for more\ninformation.\n","funding_links":[],"categories":["Python"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeoplete-plugins%2Fdeoplete-jedi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeoplete-plugins%2Fdeoplete-jedi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeoplete-plugins%2Fdeoplete-jedi/lists"}