Every time I add a selector in CSS and I press Enter to define the properties it ends up like this:
#selector {
property: value;
}
(8 tabs)
How can I configure gVim to make it like this:
#selector {
property: value;
}
(4 tabs)
feedback
|
|
Expanding on zoul's answer: If you want to setup Vim to use specific settings when editing a particular filetype, you'll want to use autocommands:
This will make it so that tabs are displayed as 4 spaces. Setting To make a fully educated decision as to how to set things up, you'll need to read Vim docs on
| |||||
feedback
|
This will insert four spaces instead of a tab character. Spaces are a bit more “stable”, meaning that text indented with spaces will show up the same in the browser and any other application. | |||||||
feedback
|