Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
How to change tab size in VSCodium?
+2
−0
Say I have some code written with 2 space tabbing, and I wish to upstream it to a codebase with 4 space tabbing. I should make my tabbing match with that of the upstream project, but how to do that in VSCodium? (vscode)
It's easy enough to change the setting from the editor window footer, but that only affects new code. Surely there's a way to change the existing tabbing?
1 answer
+1
−0
- Change the tabbing to your desired value from the window footer.
- Execute the
Format Codeaction. This will apply the setting to the project.-
ctr + shift + pto open the runner, and search forFormat Code - Directly with
ctr + shit + i
-

0 comment threads