Skip to content

Instantly share code, notes, and snippets.

@Ulv3r
Ulv3r / super-tip.txt
Created December 17, 2021 18:09 — forked from ericdouglas/super-tip.txt
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