Reputation: 4859
I want to know if it's possible to update Pycharm intellisense for python which doesn't care about capital or normal letters?
It's a pain in the neck to try both each time.
Currently I'm using pycharm 3.0 and python 2.7.4
An example of what I want:
For example I have a model named: 'MyModel'
I use to type first two letters and then ctrl+space to choose from the list. so if I type 'my' instead of 'My', the pycharm says: 'No suggestion'
Upvotes: 2
Views: 1572
Reputation: 9652
You want to set the Case sensitive completion to None.
In PyCharm 2016.3 this is in Settings > Editor > General > Code Completion.
Upvotes: 5