vim:config:indentation:indentation_with_spaces
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
vim:config:indentation:indentation_with_spaces [2022/10/08 13:57] – created peter | vim:config:indentation:indentation_with_spaces [2022/10/08 14:02] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== VIM - Config - Indentation - Indentation with spaces ====== | ====== VIM - Config - Indentation - Indentation with spaces ====== | ||
+ | |||
+ | To indent with only spaces, and not with tabs. | ||
+ | |||
+ | < | ||
+ | set expandtab | ||
+ | set shiftwidth=2 | ||
+ | set softtabstop=2 | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * The principle is to set **expandtab**, | ||
+ | |||
+ | * **expandtab** affects what happens when you press the **< | ||
+ | * If **expandtab** is set, pressing the **< | ||
+ | * Otherwise, the amount of spaces inserted is minimized by using TAB characters. | ||
+ | |||
+ | * **shiftwidth** affects what happens when you press **>> | ||
+ | * It also affects how automatic indentation works. | ||
+ | |||
+ | * **softtabstop** affects what happens when you press the **< | ||
+ | * Its default value is the same as the value of **tabstop**, | ||
+ | * If **expandtab** is unset, and **tabstop** is different from **softtabstop**, | ||
+ | * For instance, if **tabstop** is 8, and the amount of consecutive space inserted is 20, two TAB characters and four spaces will be used. | ||
+ | </ | ||
+ | |||
vim/config/indentation/indentation_with_spaces.1665237423.txt.gz · Last modified: 2022/10/08 13:57 by peter