Skip to content

Instantly share code, notes, and snippets.

@ericdouglas
Last active October 6, 2024 18:28
Show Gist options
  • Save ericdouglas/72621cb47b368297feaa to your computer and use it in GitHub Desktop.
Save ericdouglas/72621cb47b368297feaa to your computer and use it in GitHub Desktop.
Change 4 spaces to 2 spaces indentation and change tab to spaces - Vim tip
// 4 spaces to 2 spaces
%s;^\(\s\+\);\=repeat(' ', len(submatch(0))/2);g
// Tab to 2 spaces
:%s/\t/ /g
@Ulv3r
Copy link

Ulv3r commented Dec 17, 2021

Thanks!

@fakeowl1
Copy link

fakeowl1 commented Mar 9, 2023

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment