1

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

sevenfourk
  • 463
  • 4
  • 12

1 Answers1

1

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.

Dave Halter
  • 15,556
  • 13
  • 76
  • 103