https://github.com/enthought/supplement
Default Repo description from terraform module
https://github.com/enthought/supplement
Last synced: 11 months ago
JSON representation
Default Repo description from terraform module
- Host: GitHub
- URL: https://github.com/enthought/supplement
- Owner: enthought
- License: mit
- Created: 2012-02-21T04:50:11.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2016-08-29T08:52:42.000Z (almost 10 years ago)
- Last Synced: 2025-05-17T01:11:11.985Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 837 KB
- Stars: 0
- Watchers: 22
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
Supplement is a python completion framework built from scratch with speed and
flexibility top priority goals. It provides high level API for plugin developers
to allow them concentrate on editing capabilities while supplement take all
dirty work: monitor file changes, multiple interpreters/virtual
environments/projects support and assist context resolving.
`Documentation `_
Features
--------
* Zeroconf. Library tries to be smart enough to don't disturb users with silly
questions.
* Instant start. There are no any various indexes need to be build. You create
project and momentously ready to code.
* Fast. Supplement resolves only needed objects to fulfill user request.
* Use maximum information from runtime.
* Hooks to allow one to override supplement behavior. For example, pygtk builtin
hook provides docstrings and type info based on pygtk docbook documentation
and glade file content.
* Easy way to solve simple type resolving issues through module overrides.
* Complex static evaluator with call info collector.
* Completion server and client to work with it. Supplement server part can be
run under python2.6-3.2 and also first versions known to work with PyPy. One
server instance can operate with multiple projects.
* Monitor file changes to allow transparent work with external project edits,
e.g. branch switching through vcs cli.
* Simple API. You need to pass only source and cursor position in most cases.