From fa405c2e3dee5c9ebf05c943ef2f3a3e6a58e7a7 Mon Sep 17 00:00:00 2001 From: David Halter Date: Sun, 25 Aug 2013 21:00:58 +0430 Subject: [PATCH] add a faq section to readme, fixes #168 --- README.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.rst b/README.rst index 0e65e13..c392c82 100644 --- a/README.rst +++ b/README.rst @@ -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 =======