Jackman Li
Jackman Li

Reputation: 65

Code autocompletion 'partially' works in the editor pane of Spyder3

I installed spyder3 through miniconda3 on my win10 PC. Autocompletion works perfectly in the Ipython console pane but not in the editor pane. In the editor pane it only list partial completion options when I use TAB or Ctrl+Space

enter image description here

This is my Editor preferences settings which is almost default.

enter image description here

Should Editor pane's auto completion ability be 'weaker' than that of Ipython pane in Spyder3?

Upvotes: 1

Views: 3134

Answers (1)

Carlos Cordoba
Carlos Cordoba

Reputation: 34136

(Spyder maintainer here) It's a true and sad reality, but our Editor can't show the same completions that are available to the IPython console.

I explained in this other StackOverflow answer why that's the case. Basically, it's not our fault, it's just a limitation of the code completion libraries we use in the Editor (Rope and Jedi).

Upvotes: 5

Related Questions