mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 22:44:27 +08:00
merge authors.txt
This commit is contained in:
@@ -21,5 +21,6 @@ Lubos Trilety <ltrilety@redhat.com>
|
|||||||
Akinori Hattori (@hattya)
|
Akinori Hattori (@hattya)
|
||||||
srusskih (@srusskih)
|
srusskih (@srusskih)
|
||||||
Steven Silvester (@blink1073)
|
Steven Silvester (@blink1073)
|
||||||
|
Colin Duquesnoy (@ColinDuquesnoy) <colin.duquesnoy@gmail.com>
|
||||||
|
|
||||||
Note: (@user) means a github user name.
|
Note: (@user) means a github user name.
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ me.
|
|||||||
Jedi can be used with the following editors:
|
Jedi can be used with the following editors:
|
||||||
|
|
||||||
- Vim (jedi-vim_, YouCompleteMe_)
|
- Vim (jedi-vim_, YouCompleteMe_)
|
||||||
- Emacs (Jedi.el_)
|
- Emacs (Jedi.el_, company-jedi_)
|
||||||
- Sublime Text (SublimeJEDI_ [ST2 + ST3], anaconda_ [only ST3])
|
- Sublime Text (SublimeJEDI_ [ST2 + ST3], anaconda_ [only ST3])
|
||||||
- SynWrite_
|
- SynWrite_
|
||||||
|
|
||||||
@@ -137,6 +137,7 @@ For more detailed information visit the `testing documentation
|
|||||||
.. _jedi-vim: https://github.com/davidhalter/jedi-vim
|
.. _jedi-vim: https://github.com/davidhalter/jedi-vim
|
||||||
.. _youcompleteme: http://valloric.github.io/YouCompleteMe/
|
.. _youcompleteme: http://valloric.github.io/YouCompleteMe/
|
||||||
.. _Jedi.el: https://github.com/tkf/emacs-jedi
|
.. _Jedi.el: https://github.com/tkf/emacs-jedi
|
||||||
|
.. _company-jedi: https://github.com/proofit404/company-jedi
|
||||||
.. _sublimejedi: https://github.com/srusskih/SublimeJEDI
|
.. _sublimejedi: https://github.com/srusskih/SublimeJEDI
|
||||||
.. _anaconda: https://github.com/DamnWidget/anaconda
|
.. _anaconda: https://github.com/DamnWidget/anaconda
|
||||||
.. _SynWrite: http://uvviewsoft.com/synjedi/
|
.. _SynWrite: http://uvviewsoft.com/synjedi/
|
||||||
|
|||||||
@@ -19,21 +19,22 @@ Editor Plugins
|
|||||||
|
|
||||||
Vim:
|
Vim:
|
||||||
|
|
||||||
- `jedi-vim <http://github.com/davidhalter/jedi-vim>`_
|
- jedi-vim_
|
||||||
- `YouCompleteMe <http://valloric.github.io/YouCompleteMe/>`_
|
- YouCompleteMe_
|
||||||
|
|
||||||
Emacs:
|
Emacs:
|
||||||
|
|
||||||
- `Jedi.el <https://github.com/tkf/emacs-jedi>`_
|
- Jedi.el_
|
||||||
|
- company-jedi_
|
||||||
|
|
||||||
Sublime Text 2/3:
|
Sublime Text 2/3:
|
||||||
|
|
||||||
- `SublimeJEDI <https://github.com/srusskih/SublimeJEDI>`_ (ST2 & ST3)
|
- SublimeJEDI_ (ST2 & ST3)
|
||||||
- `anaconda <https://github.com/DamnWidget/anaconda>`_ (only ST3)
|
- anaconda_ (only ST3)
|
||||||
|
|
||||||
SynWrite:
|
SynWrite:
|
||||||
|
|
||||||
- `SynJedi <http://uvviewsoft.com/synjedi/>`_
|
- SynJedi_
|
||||||
|
|
||||||
|
|
||||||
.. _other-software:
|
.. _other-software:
|
||||||
@@ -62,3 +63,12 @@ Using a custom ``$HOME/.pythonrc.py``
|
|||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
.. autofunction:: jedi.utils.setup_readline
|
.. autofunction:: jedi.utils.setup_readline
|
||||||
|
|
||||||
|
.. _jedi-vim: https://github.com/davidhalter/jedi-vim
|
||||||
|
.. _youcompleteme: http://valloric.github.io/YouCompleteMe/
|
||||||
|
.. _Jedi.el: https://github.com/tkf/emacs-jedi
|
||||||
|
.. _company-jedi: https://github.com/proofit404/company-jedi
|
||||||
|
.. _sublimejedi: https://github.com/srusskih/SublimeJEDI
|
||||||
|
.. _anaconda: https://github.com/DamnWidget/anaconda
|
||||||
|
.. _SynJedi: http://uvviewsoft.com/synjedi/
|
||||||
|
.. _wdb: https://github.com/Kozea/wdb
|
||||||
|
|||||||
@@ -5,6 +5,8 @@ use its methods.
|
|||||||
Additionally you can add a debug function with :func:`set_debug_function` and
|
Additionally you can add a debug function with :func:`set_debug_function` and
|
||||||
catch :exc:`NotFoundError` which is being raised if your completion is not
|
catch :exc:`NotFoundError` which is being raised if your completion is not
|
||||||
possible.
|
possible.
|
||||||
|
|
||||||
|
.. warning:: Please, note that Jedi is **not thread safe**.
|
||||||
"""
|
"""
|
||||||
from __future__ import with_statement
|
from __future__ import with_statement
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user