File tree 2 files changed +13
-0
lines changed
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
61
61
- [ Rename Current File] ( vim/rename-current-file.md )
62
62
- [ Repeat The Previous Change] ( vim/repeat-the-previous-change.md )
63
63
- [ Split Different] ( vim/split-different.md )
64
+ - [ Tabs To Spaces] ( vim/tabs-to-spaces.md )
64
65
- [ View Commit History of a File] ( vim/view-commit-history-of-a-file.md )
65
66
- [ Wrap With Some Room] ( vim/wrap-with-some-room.md )
66
67
Original file line number Diff line number Diff line change
1
+ # Tabs To Spaces
2
+
3
+ If you prefer spaces over tabs in your files, then opening up a file full of
4
+ tabbed indentation is not ideal. You can quickly convert all tabs in the
5
+ current buffer to spaces using:
6
+
7
+ ```
8
+ :retab
9
+ ```
10
+
11
+ This assumes that you have ` expandtab ` set. See ` :help :retab ` for more
12
+ details.
You can’t perform that action at this time.
0 commit comments