Reputation: 103
How to enable code completion in PhpStorm only with Tab key, and other keys (e.g. Enter) should be disabled? Can't find this option in settings.
The problem is in the conflict between code completion and live templates. They both use the same shortcuts('tab' and 'enter'). I don't know why. How to separate them?
Upvotes: 1
Views: 595
Reputation: 986
Completing code items can be configured via "Choose Lookup Item" actions in Settings\Preferences | Keymap:
Change or remove the assigned shortcut as @LazyOne suggested.
You can also change the key to expand live templates with:
So you can eventually configure this in any way you want.
Upvotes: 5