Answers for "vim set tab length"

6

vim change tab size

set tabstop=4
Posted by: Guest on March-07-2020
4

vim set tab size

:set tabstop=2 shiftwidth=2 expandtab
:retab

# tabstop		-> Indentation width in spaces
# shiftwidth	-> Autoindentation width in spaces
# expandtab		-> Use actual spaces instead of tabs
# retab			-> Convert existing tabs to spaces
Posted by: Guest on December-25-2020

Browse Popular Code Answers by Language