https://github.com/isamert/gedi
a python code completion plugin for gedit3+
https://github.com/isamert/gedi
gedi gedit gedit-plugin jedi python
Last synced: 8 months ago
JSON representation
a python code completion plugin for gedit3+
- Host: GitHub
- URL: https://github.com/isamert/gedi
- Owner: isamert
- License: gpl-3.0
- Created: 2016-04-13T19:05:32.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-11-05T04:15:49.000Z (almost 4 years ago)
- Last Synced: 2024-05-01T13:52:58.354Z (over 1 year ago)
- Topics: gedi, gedit, gedit-plugin, jedi, python
- Language: Python
- Size: 39.1 KB
- Stars: 37
- Watchers: 6
- Forks: 9
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gedi
A python code completion plugin for gedit. Built with the Jedi auto completion library by David Halter (https://github.com/davidhalter/jedi).
## Current Features:
- Autocompletion## Planned Features:
- Find Definition
- Some refactoring tools## Using
- Firstly, you need to install jedi. You can install it from your distro's package manager(search for python3-jedi) or you can install it with pip:
```
pip install jedi
```
- Download the project.
- Extract the files to /home/YOUR_USER_NAME/.local/share/gedit/plugins
- If the directory .local/share/gedit/plugins/ is not present, create it.
- Open gedit, go to Preferences > Plugins > Gedi to activate it.
- Restart gedit.Instead of downloading you can just clone the project to your plugin path:
```
$ mkdir -p ~/.local/share/gedit/plugins
$ cd ~/.local/share/gedit/plugins
$ git clone https://github.com/isamert/gedi.git
```
For updating:
```
$ cd ~/.local/share/gedit/plugins/gedi
$ git pull
```