Tagged Questions
The tab-size tag has no wiki summary.
1
vote
1answer
33 views
How to change tab size on GitHub?
When I view files on GitHub, tabs appears as 8 spaces (example here).
Is that possible to change this configuration to 2 or 4 spaces?
1
vote
1answer
106 views
Mixing tabs and spaces without mixing tabs and spaces
I'm a Vim user who (due to my Python background) has grown accustomed to spaces instead of tabs. I'm working on a PHP project with another developer who uses Windows IDEs and really wants to use ...
1
vote
2answers
2k views
Change the tab size on an element with word-wrap: pre?
I have an element that is similar to a tag (because it has word-wrap: pre;) to display code on a website. The only problem is that the tab size is too large and causes the element to horizontally ...
0
votes
1answer
709 views
Setting tab size in Emacs
I'm using Emacs as an editor. I want to set the tab size to four spaces. In my .emacs file I have the following:
(setq default-tab-width 4)
I've also tried:
(set-default tab-width 4)
Either ...