sevenfourk
sevenfourk

Reputation: 463

jedi-vim autocompletion. complete by grep-style searching

I'm comparing PyCharm autocomplete search and jedi-vim in Vim.

In PyCharm I'm able to see the list of methods. where the search pattern might in the beginning/middle/end.

In VIM I can only see methods, which starting at the beginning of the search pattern.

I wonder if it's my configuration or it's as expected? If not what suggestion can you propose. Thanks.

PyCharm example: enter image description here

Vim example: enter image description here

Ivan

Upvotes: 1

Views: 100

Answers (1)

Dave Halter
Dave Halter

Reputation: 16325

It's currently not a feature of jedi-vim to search for strings in names (not that this would be hard, but it's not a Jedi feature).

If you really want this, please try out YouCompleteMe. It also uses Jedi and has support for generic substring searching.

Upvotes: 1

Related Questions