Commit Graph

158 Commits

Author SHA1 Message Date
Dave Halter
f627d541b8 Trying to fix the docs. 2017-02-02 23:39:10 +01:00
Don Jayamanne
85970d25f9 updated as per code review comments 2016-08-25 20:57:35 +10:00
Don Jayamanne
b82687642d update usage.rst
Updated to make reference to VS Code using this library.
2016-08-24 20:27:40 +10:00
Dave Halter
690241332d Add a changelog for 0.10.0. 2016-07-09 02:40:27 +02:00
Dave Halter
67ea9ab9f3 Add Eric IDE to the list of supported plugins. 2016-07-03 16:22:23 +02:00
Dave Halter
447656fd14 Remvoed SynWrite from the Jedi implementations. From now on we only add major editors and projects that are using it. 2016-07-03 16:16:54 +02:00
Dave Halter
a02b07bcb8 Merge remote-tracking branch 'origin/master' into away 2016-07-03 15:46:55 +02:00
Dave Halter
c4ec5caf40 3.2 is not supported anymore. Mention this in docs as well. 2016-07-03 11:38:38 +02:00
kiryph
a9b0af3167 Add vim editor plugin deoplete-jedi 2016-06-20 11:26:25 +02:00
Dave Halter
82c76fa689 Merge with the linter branch (especially the changes of pep484. 2016-06-07 13:51:25 +02:00
Dave Halter
ed152e440e Merge master into the away branch. The merge conflict that was resolved was to get 'debug.py' working again. 2016-06-07 08:55:27 +02:00
İsa Mert Gürbüz
53ca0217dd Add gedit to supported editors list 2016-04-15 14:34:24 +03:00
Travis Bradshaw
ac9133aafc Update unsupported features list with "implicit namespace packages" 2016-03-09 22:37:21 -06:00
Claude
5a555076bb update documentation add python 3.5 and PEP-0484 2016-02-16 10:04:06 +01:00
Christian Hergert
81e07b866f Add GNOME Builder to list of supported editors
Support is provided out of the box as long as python3-jedi is installed.
Additionally, Builder's implementation includes support for GObject
Introspection (and therefore Gtk).
2016-02-11 13:02:27 -08:00
Mariano Reingart
2ec196fa2e Update API doc for completions
At least in jedi version 0.9.0 the API seems to change to:
 * complete method is now completions
 * words attribute is now name

Example:
```
(venv)reingart@S55t-B:~$ python
Python 2.7.6 (default, Jun 22 2015, 17:58:13) [GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import jedi
>>> jedi.__version__
'0.9.0'
>>> source = '''import json; json.l'''
>>> script = jedi.Script(source, 1, 19, '')
>>> script
<Script: ''>
>>> completions = script.completions()
>>> completions
[<Completion: load>, <Completion: loads>]
>>> completions[1].complete
'oads'
>>> completions[1].name
u'loads'
>>> 
```
2015-12-30 06:03:51 -03:00
Dave Halter
7141158484 Merge master into linter. 2015-12-15 12:28:38 +01:00
Dave Halter
317ef333fe Captial letters in SourceLair changed. 2015-09-30 15:01:49 +02:00
Dave Halter
cae88b0f94 Add sourcelair to Jedi usages. 2015-09-30 14:59:21 +02:00
Dave Halter
4180b6590d Move static analysis documentation of the names for nodes_to_execute. 2015-09-21 14:49:36 +02:00
Dmitry Sadovnychyi
81252f0b7d Add link to Atom in docs 2015-06-23 13:49:04 +08:00
Dave Halter
f122c9b5b3 Document the new features better in the next release. 2015-04-08 13:15:21 +02:00
Dave Halter
b106dc25bd Update the README to tell more about Python features. 2015-04-08 12:16:13 +02:00
Dave Halter
8775d90173 Merge the master branch into the dev branch. 2015-02-09 14:41:41 +01:00
felipeacsi
f348aaeab6 Updated Arch Linux installation 2015-01-16 14:38:39 -03:00
Dave Halter
a86cfa2dd7 Merge pull request #453 from alga/dev
Europython2014 davidhalter/jedi#361attempt
2014-07-27 20:58:03 +04:30
Albertas Agejevas
25978cf591 Mentioned framework support in the docs. 2014-07-27 17:35:50 +02:00
Danilo Bargen
605b0c5881 Added note about numpydoc package
Refs #450.
2014-07-27 16:01:11 +02:00
Danilo Bargen
e8f479172a Implemented dynamic superclasses 2014-07-27 14:11:48 +02:00
Danilo Bargen
73637d7e3f Small doc fix 2014-07-27 13:12:26 +02:00
Danilo Bargen
176da139d8 Added docs for numpydoc docstrings (fixes #450) 2014-07-27 13:10:14 +02:00
Pawel Palucki
d359f5d043 Sphinx oneline param type declaration feature
allows for type definition in ":param keyword"
2014-07-26 22:15:56 +02:00
Dave Halter
a01e4c6b37 Merge remote-tracking branch 'origin/master' into dev 2014-07-23 00:47:30 +02:00
Dave Halter
52bbedd4a8 renamed company-jedi to anaconda-mode, cc @proofit404 2014-07-22 10:33:49 +02:00
Danilo Bargen
e66f2d8f4b Docs / changelog formatting 2014-05-06 07:47:59 +02:00
Dave Halter
ef23f7401e specify a deprecation process, see also #395 2014-04-18 15:24:36 +02:00
Dave Halter
9854a42922 add elpy to the list of supported emacs implementations 2014-04-03 11:08:11 +02:00
Dave Halter
28fbdbc0f6 docs were not correct about epydoc docstrings. fixes davidhalter/jedi#245 2014-04-02 16:43:59 +02:00
Dave Halter
60aff6fa9d A kate plugin uses Jedi, fixes #322 2014-03-12 10:39:25 +01:00
Dave Halter
394e2e77de refactored the development docs, which was badly needed especially since evaluate/dynamic.py doesn't contain a lot of functionality anymore. 2014-03-11 17:26:38 +01:00
Dave Halter
5764e760d2 improve internal module links for sphinx documentation 2014-03-11 15:46:08 +01:00
Dave Halter
cffdcd2571 correct developer documentation a little bit 2014-03-11 15:38:46 +01:00
Dave Halter
5abe4e2d57 my stupid english sometimes :-) 2014-03-11 14:32:40 +01:00
Dave Halter
9da09c9058 improve the testing documentation. Add a section about the alternate test runner ./run.py 2014-03-11 14:27:11 +01:00
Dave Halter
90338aa828 fix sphinx documentation issues (call it through the right namespace) 2014-03-11 14:17:21 +01:00
Dave Halter
8aa71d7cd6 fix version string in documentation 2014-03-11 14:07:41 +01:00
Dave Halter
b7a4b543fd exclude deprecated members from documentation (there are just too many), this can be undone once we've removed the old API (also cleaned up docs/conf.py a little bit). fixes #317 2014-03-11 14:01:09 +01:00
Dave Halter
17ecd73df9 fix @Alexey-T's concern of deprecated documentation, see #317 2014-03-11 13:23:25 +01:00
Dave Halter
14aca9708e forgot to change to docs - only changed the readme 2014-03-05 12:36:54 +01:00
Dave Halter
e904031400 start correcting the documentation 2014-01-29 21:34:57 +01:00