WestCoastProjects
WestCoastProjects

Reputation: 63231

How to disable automatic insertion of matching braces in Pycharm

pycharm likes to do some extra typing for me: I put in [ it puts in ] : similarly for (, { (depending on context) and even = . It is not helpful to me: usually there is something different intended.

I looked high and low through Preferences|Editor to see how to disable this but could not find that option. Pointers?

Update I do have Settings/Preferences -> Editor -> General -> Smart Keys->Insert Paired Brackets and Quote unchecked already

enter image description here

Upvotes: 0

Views: 130

Answers (1)

jure
jure

Reputation: 621

You'll find what you're looking for in Settings/Preferences -> Editor -> General -> Smart Keys. There's a whole bunch of settings there from smart indent to insertions, and what you're probably looking for is the Insert paired brackets (), [], {}, <> or something similar.

Here is the link to their documentation on the matter

Upvotes: 1

Related Questions