mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 07:08:01 +00:00
13 lines
298 B
Markdown
13 lines
298 B
Markdown
# Tabs To Spaces
|
|
|
|
If you prefer spaces over tabs in your files, then opening up a file full of
|
|
tabbed indentation is not ideal. You can quickly convert all tabs in the
|
|
current buffer to spaces using:
|
|
|
|
```
|
|
:retab
|
|
```
|
|
|
|
This assumes that you have `expandtab` set. See `:help :retab` for more
|
|
details.
|