-
Is there any way to customize tab size just as Documentation suggest setting
By playing some time found out the BTW by setting |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 15 replies
-
|
Beta Was this translation helpful? Give feedback.
-
How to set tab behavior globally? |
Beta Was this translation helpful? Give feedback.
tab-width
changes the size of the rendered tab (\t
), whileunit
is what is inserted when you try to indent.e.g.
unit = "\t"
will insert a tabunit = " "
will insert 4 spaces (github is rendering it weird, but there are four space characters inside the quotes)