davidhalter / jedi-vim

Using the jedi autocompletion library for VIM.
MIT License
5.27k stars 370 forks source link

Add option to enable/disable case insensitive completion #1076

Closed jamescherti closed 2 years ago

jamescherti commented 2 years ago

This pull request adds an option to enable/disable case insensitive completion (the Jedi setting: jedi.settings.case_insensitive_completion).

It adds the following options to jedi-vim:

Values:

davidhalter commented 2 years ago

Thanks!

blueyed commented 2 years ago

@davidhalter Is there something like smart-case in Jedi, i.e. use case-sensitivity if there is any upper case character in the input, but otherwise case-insensitivity? (this allows to enable case-sensitivity "on the fly")

davidhalter commented 2 years ago

No there is currently no such thing. One could obviously implement that in Jedi (or here).