Skip to content

Instantly share code, notes, and snippets.

@Ulv3r
Forked from ericdouglas/super-tip.txt
Created December 17, 2021 18:09
Show Gist options
  • Save Ulv3r/e1be0dda878b6e6854e319841e9b9814 to your computer and use it in GitHub Desktop.
Save Ulv3r/e1be0dda878b6e6854e319841e9b9814 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
Author

Ulv3r commented Dec 17, 2021

:D

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