Hi, On Jan 22, 8:45 pm, nariknahom <[email protected]> wrote: > I am newbie to python and spyder. I installed spyder today and tried > some sample programs in the interactive shell. Facing the following > issues > > 1. How does code completion work? It doesn't show any list/popup as I > type. Should I use some short cut key (combination)?
Code completion should open automatically a pop-up combo box when pressing '.' after any valid object. Example: import sys sys. -> triggers code completion If it doesn't behave like that, then it's a bug! In that case, I would need some informations to debug: OS, Python distribution, Python version, PyQt version. > 2. autoindent does not work. Autoindent is only available for the editor. Neither interactive console or external console support this feature. -Pierre -- You received this message because you are subscribed to the Google Groups "spyder" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/spyderlib?hl=en.
