How to fix absent Python autocompletion on object instances in Vim?

后端 未结 3 1729
遥遥无期
遥遥无期 2021-01-30 18:35

I have found a strange behavior in Vim when I attempt to use autocompletion on objects. If I instantiate the objects on a module level, the Vim autocompletion will work on the i

3条回答
  •  滥情空心
    2021-01-30 19:09

    Expanding the @BergmannF answer. If you don't want the rope's completion to select the first entry just append (go to previous entry -> no entry) to the imap command:

    imap  =RopeCodeAssistInsertMode()
    

提交回复
热议问题