Comment 1 for bug 912967

Revision history for this message
Curtis Hovey (sinzui) wrote :

The GDP completer is not being called with <Control>+Space when I have the completer set to suggest completions. When that suggestion feature is off, the completer is called does find the symbols in the imports. Eg.

import os
from os import path
os.<Control>+space shows all the symbols in os.
path.<Control>+space shows all the symbols in os.path.

path<Control>+space (without the dot) only completes words because I have not indicated I want to see what is inside the namespace.

I think the rule to command rule to show the completer needs to ensure the completer is user_requested, or maybe I can & user_requested and interactive modes together.