Vim: Making Auto-Completion Smarter

后端 未结 7 693
忘了有多久
忘了有多久 2020-12-22 23:49

I use ctags, taglist, etc., to have auto completion in Vim. However, it is very limited compared to Visual Studio intellisense or Eclipse auto-completion. I am wondering whe

7条回答
  •  情深已故
    2020-12-23 00:10

    I use vim every day, and I'm not aware of any existing script that may do this. This action would require understanding of classes and keeping track of variables. someObject-> means that VIM would know what class the variable someObject is, and then be able to search methods/variables within that class.

    Writing scripts for vim is relatively easy, though like you've commented - no one has answered this yet. Up vote from me.

提交回复
热议问题