add a faq section to readme, fixes #168

This commit is contained in:
David Halter
2013-08-25 21:00:58 +04:30
parent 8adc9d1eda
commit fa405c2e3d

View File

@@ -139,6 +139,19 @@ Finally, if you don't want completion, but all the other features, use:
let g:jedi#completions_enabled = 0
FAQ
===
I don't want the docstring window to popup during completion
------------------------------------------------------------
This depends on the ``completeopt`` option. Jedi initializes it in its
``ftplugin``. Add the following line to your ``.vimrc`` to disable it:
.. code-block:: vim
autocmd FileType Python setlocal completeopt-=preview
Testing
=======