I'm new to Komodo Edit / Python. I would like to know why Komodo gives me a list of word to autocomplete my current word sometimes while at other times, it gives me nothing or it auto completes my current word without asking me (even if there's multiple choices)
Is there a way to tell Komodo to ALWAYS give me a list of choice when pressing Ctrl+Space (like the Visual Studio's behavior ?)
def TestMethod():
return 1
def TestSecondMethod():
return 2
Test #It doesn't show me the intellisense
TestSecondMethod #When I press Ctrl+Space, it autocomplete
#(without asking me) my word by entering
#the name of the second method