DVT
DVT

Reputation: 165

Intellij IDEA does not add end bracket

Before, I used to be able to type if (...) { press enter, and it would add the end bracket like this

if (...) {
    
}

now I press enter, and it does not add the end bracket, instead it leaves me like this

if (...) {
    

How can I enable end bracket completion again?

Upvotes: 1

Views: 123

Answers (1)

CrazyCoder
CrazyCoder

Reputation: 401887

Settings (Preferences on macOS) | Editor | General | Smart Keys | Enter | Insert pair '}'.

Upvotes: 1

Related Questions