vim:config:indentation
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
vim:config:indentation [2022/10/08 13:56] – peter | vim:config:indentation [2022/10/08 17:28] (current) – peter | ||
---|---|---|---|
Line 5: | Line 5: | ||
---- | ---- | ||
- | ---- | + | * [[VIM: |
- | ===== Indentation | + | * [[VIM: |
+ | * [[VIM: | ||
- | To indent with only spaces, and not with tabs. | + | |
- | + | * [[VIM: | |
- | < | + | * [[VIM:Config:Indentation:Indentation with spaces|Indentation |
- | set expandtab | + | |
- | set shiftwidth=2 | + | |
- | set softtabstop=2 | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | <WRAP info> | + | |
- | **NOTE:** These settings will result in spaces being used for all indentation. | + | |
- | + | ||
- | * The principle is to set **expandtab**, | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Indentation purely with hard tabs ===== | + | |
- | + | ||
- | < | + | |
- | set shiftwidth=2 | + | |
- | set tabstop=2 | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | <WRAP info> | + | |
- | **NOTE: | + | |
- | + | ||
- | * The principle is to set **set tabstop** and **set shiftwidth** to the same value, and to leave **expandtab** at its default value (**noexpandtab**), | + | |
- | + | ||
- | </ | + | |
- | + | ||
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Indentation with mixed tabs and spaces | + | |
- | + | ||
- | < | + | |
- | set shiftwidth=2 | + | |
- | set softtabstop=2 | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE: | + | |
- | + | ||
- | * If you want to distinguish between " | + | |
- | + | ||
- | * The principle is to set **set shiftwidth** and **set softtabstop** to the same value, leave **expandtab** at its default (**noexpandtab**). | + | |
- | * Usually, **tabstop** is left at its default value. | + | |
- | + | ||
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | + | ||
- | <file ~/ | + | |
- | :set shiftwidth=2 | + | |
- | :set autoindent | + | |
- | :set smartindent | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE:** | + | |
- | + | ||
- | * **set expandtab** allows to replace the tabs by white spaces | + | |
- | + | ||
- | * **set shiftwidth=2** makes the tabulations be 2 white spaces :h ' | + | |
- | + | ||
- | * **set autoindent**: | + | |
- | * **autoindent** essentially tells vim to apply the indentation of the current line to the next (created by pressing **< | + | |
- | + | ||
- | * **set smartindent**: | + | |
- | * **smartindent** reacts to the syntax/ | + | |
- | * When having it on you also should have autoindent on. | + | |
- | * **:help autoindent** also mentions two alternative settings: | + | |
- | * **cindent** and **indentexpr**, | + | |
- | + | ||
- | * You could also be interested by by :h ' | + | |
- | + | ||
- | * As a bonus see :h ' | + | |
- | + | ||
- | </ | + | |
---- | ---- |
vim/config/indentation.1665237377.txt.gz · Last modified: 2022/10/08 13:56 by peter