Why does Emacs Jedi always insert “elif” after I type “else:”?

316 Views Asked by At

I have installed “Jedi” mode in Emacs but am finding that it auto-inserts the word elif every time I create a new line and then type e l s e : Enter because the colon character apparently kicks off Jedi’s completion logic with elif suggested as the top suggestion, and my pressing Enter apparently selects it. So I always, every time I try to type an else clause, have to backspace over the extraneous elif before continuing.

Is this problem unique to me? I activate Jedi by closely following the documentation:

(add-hook 'python-mode-hook 'jedi:setup)                                        
(setq jedi:complete-on-dot t)                                                   
(setq jedi:get-in-function-call-delay 200)                                      
(setq jedi:tooltip-method nil)                                                  

You can find my entire .emacs.d/init.el under version control on GitHub:

https://github.com/brandon-rhodes/dot-emacs

The current version of Jedi and its associated tools on my system is:

(:emacs-version "24.3.1" :jedi-version "0.2.0alpha2")
((:version "3.4.0 |Continuum Analytics, Inc.| (default, Mar 17 2014, 16:13:08) \n[GCC 4.1.2 20080704 (Red Hat 4.1.2-52)]" :file nil :name "sys")
 (:version "0.8.0-final0" :file "/home/brandon/.v/fopnp-py3/lib/python3.4/site-packages/jedi/__init__.py" :name "jedi")
 (:version "0.0.5" :file "/home/brandon/.v/fopnp-py3/lib/python3.4/site-packages/epc/__init__.py" :name "epc")
 (:version "0.0.3" :file "/home/brandon/.v/fopnp-py3/lib/python3.4/site-packages/sexpdata.py" :name "sexpdata"))

I note that the : character is bound to the Emacs function python-indent-electric-colon but I am not sure how to determine whether that function is somehow setting off Jedi’s completion logic without meaning to.

1

There are 1 best solutions below

0
On

I think this is a bug with the python-mode: tab-always-indent value is true but the behavior is the same that it was before.

https://www.gnu.org/software/emacs/manual/html_node/emacs/Indent-Convenience.html

My solution:

(add-hook 'python-mode-hook
    (lambda ()
        (setq-local electric-indent-chars (remq ?: electric-indent-chars))
    )
)