Updated README

This commit is contained in:
Danilo Bargen
2013-02-16 14:22:09 +01:00
parent bfa1aaf183
commit e6b050c681
+10 -5
View File
@@ -14,14 +14,14 @@ Additionaly, Jedi suports two different goto functions and has support for
renaming as well as Pydoc support and some other IDE features. renaming as well as Pydoc support and some other IDE features.
Jedi uses a very simple API to connect with IDE's. There's a reference Jedi uses a very simple API to connect with IDE's. There's a reference
implementation as a `VIM-Plugin <http://github.com/davidhalter/jedi-vim>`_, implementation as a `VIM-Plugin <https://github.com/davidhalter/jedi-vim>`_,
which uses Jedi's autocompletion. I encourage you to use Jedi in your IDEs. which uses Jedi's autocompletion. I encourage you to use Jedi in your IDEs.
It's really easy. If there are any problems (also with licensing), just contact It's really easy. If there are any problems (also with licensing), just contact
me. me.
Jedi can be used with the following plugins/software: Jedi can be used with the following plugins/software:
- `VIM-Plugin <http://github.com/davidhalter/jedi-vim>`_ - `VIM-Plugin <https://github.com/davidhalter/jedi-vim>`_
- `Emacs-Plugin <https://github.com/tkf/emacs-jedi>`_ - `Emacs-Plugin <https://github.com/tkf/emacs-jedi>`_
- `Sublime-Plugin <https://github.com/svaiter/SublimeJEDI>`_ - `Sublime-Plugin <https://github.com/svaiter/SublimeJEDI>`_
- `wdb (web debugger) <https://github.com/Kozea/wdb>`_ - `wdb (web debugger) <https://github.com/Kozea/wdb>`_
@@ -43,7 +43,7 @@ Pydoc support (with highlighting, Shift+k).
There is also support for goto and renaming. There is also support for goto and renaming.
Get the latest version from `github <http://github.com/davidhalter/jedi>`_ Get the latest version from `github <https://github.com/davidhalter/jedi>`_
(master branch should always be kind of stable/working). (master branch should always be kind of stable/working).
Docs are available at `https://jedi.readthedocs.org/ Docs are available at `https://jedi.readthedocs.org/
@@ -52,6 +52,7 @@ and/or fixes are awesome and most welcome.
Jedi uses `semantic versioning <http://semver.org/>`_. Jedi uses `semantic versioning <http://semver.org/>`_.
Installation Installation
============ ============
@@ -65,8 +66,12 @@ corresponding documentation.
Feature Support and Caveats Feature Support and Caveats
=========================== ===========================
Jedi really understands your Python code, for a comprehensive list what Jedi Jedi really understands your Python code. For a comprehensive list what Jedi can
understands, see: https://jedi.readthedocs.org/en/latest/docs/features.html. do, see: https://jedi.readthedocs.org/en/latest/docs/features.html. A list of
caveats can be found on the same page.
Tips on how to use Jedi efficiently can be found here:
https://jedi.readthedocs.org/en/latest/docs/recipes.html
A little history A little history