-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
Python Language Server | ||
====================== | ||
|
||
A Python 2.7 implementation of the `Language Server Protocol`_ making use of Jedi_, pycodestyle_, Pyflakes_ and YAPF_. | ||
|
||
Features | ||
-------- | ||
|
||
Auto Completion: | ||
|
||
.. image:: resources/auto-complete.gif | ||
|
||
Code Linting with pycodestyle and pyflakes: | ||
|
||
.. image:: resources/linting.gif | ||
|
||
Signature Help: | ||
|
||
.. image:: resources/signature-help.gif | ||
|
||
Go to definition: | ||
|
||
.. image:: resources/goto-definition.gif | ||
|
||
Hover: | ||
|
||
.. image:: resources/hover.gif | ||
|
||
Find References: | ||
|
||
.. image:: resources/references.gif | ||
|
||
Document Symbols: | ||
|
||
.. image:: resources/document-symbols.gif | ||
|
||
Document Formatting: | ||
|
||
.. image:: resources/document-format.gif | ||
|
||
Installation | ||
------------ | ||
|
||
``pip install --process-dependency-links .`` | ||
|
||
Development | ||
----------- | ||
|
||
To run the test suite: | ||
|
||
``pip install --process-dependency-links .[test] && tox`` | ||
|
||
License | ||
------- | ||
|
||
This project is made available under the MIT License. | ||
|
||
.. _Language Server Protocol: https://github.com/Microsoft/language-server-protocol | ||
.. _Jedi: https://github.com/davidhalter/jedi | ||
.. _pycodestyle: https://github.com/PyCQA/pycodestyle | ||
.. _Pyflakes: https://github.com/PyCQA/pyflakes | ||
.. _YAPF: https://github.com/google/yapf |