diff --git a/README.rst b/README.rst index 397c56f..5969799 100644 --- a/README.rst +++ b/README.rst @@ -37,12 +37,23 @@ it up `on github `_. You can read the Jedi library documentation `here `_. -Support -======= +Features +======== -The Jedi library supports most of Python's core features. From decorators to +The Jedi library understands most of Python's core features. From decorators to generators, there is broad support. +Apart from that, jedi-vim supports the following commands + +- Completion ```` +- Goto assignments ``g`` (typical goto function) +- Goto definitions ``d`` (follow identifier as far as possible, includes + imports and statements) +- Show Documentation/Pydoc ``K`` (shows a popup with assignments) +- Renaming ``r`` +- Usages ``n`` (shows all the usages of a name) +- Open module, e.g. ``:Pyimport os`` (opens the ``os`` module) + Installation ============