Johnny
Johnny

Reputation: 75

How to change IntelliJ tab symbol?

enter image description here

I'm using IntelliJ Ultimate 2020.3 version.

I wonder how to change tab character(symbol)?

func init() {
---- userDao = userDao...
}

// to

func init() {
>    userDao = userDao...
}

Upvotes: 2

Views: 45

Answers (1)

CrazyCoder
CrazyCoder

Reputation: 402125

Please add editor.old.tab.painting=true in Help | Edit Custom Properties and vote for this feature request.

Upvotes: 2

Related Questions