What are hard and soft tabs?
Asked Answered
L

2

64

I hear the term "hard tabs" and "soft tabs" (often with much debate about which is better), but what do the two terms actually mean? I am looking for a simple definition of "soft tabs" and "hard tabs".

Leahleahey answered 13/10, 2014 at 23:57 Comment(0)
F
75

Hard tabs use the tab character, http://en.wikipedia.org/wiki/Tab_key#Tab_characters

Soft tabs are just spaces. Soft tabs are usually either 2 or 4 spaces, depending on convention.

If you set your editor to use "soft tabs," when you press the Tab key on your keyboard your editor will insert spaces instead of the tab character.

Fuzz answered 14/10, 2014 at 0:9 Comment(0)
S
10

Hard tabs are the equivalent of using the tab key to tab your code while soft tabs are spaces added in to emulate a tab either manually or via a code editor like Sublime Text. There are some who believe that soft tabbing is better for readability for larger teams that use different text editors since some editors will give different spacing for hard tabs, but I think you can use either one as long as you stick to one and use it consistently. In the end, this mostly comes down to personal preference.

Substructure answered 14/10, 2014 at 0:6 Comment(1)
This answer confuses the tab key and the tab character. Soft tabbing also uses the tab key to tab your code.Gristle

© 2022 - 2024 — McMap. All rights reserved.