我是Komodo Edit / Python的新手。我想知道为什么 Komodo 有时会给我一个单词列表来自动完成我当前的单词,而在其他时候,它什么也没给我,或者它在不问我的情况下自动完成我的当前单词(即使有多个选择)
有没有办法告诉 Komodo 在按下 Ctrl+Space 时总是给我一个选择列表(比如 Visual Studio 的行为?)
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