End the holy war between space and tab indentation...

Indentation not Tabulation People(I) make mistakes often because they mixing the idea of indentation and tabulation.

This is indentation: indentation implies the levels of nested structures.

void f(){
    while (1){
        if (a == b){
            printf("something");
        }
    }
}

This is tabulation: tabulation makes multiple lines aligned wrt. their contents.

int apple           = 1;
int foo             = 3;
int another_brick   = 4;
int in_the_wall     = 42;

End the war once and for all

  • Indentation should always be TABs because one is exactly one level of indentation.
  • Tabulation should always be SPACEs

A handy script:

1
2
3
4
5
6
7
8
9
command! RetabIndents retab!|call RetabIndents()
func! RetabIndents()
    let default_tab = &expandtab
    set et
    let saved_view = winsaveview()
    execute '%s@^\(\ \{'.&ts.'\}\)\+@\=repeat("\t", len(submatch(0))/'.&ts.')@e'
    let &expandtab=default_tab
    call winrestview(saved_view)
endfunc

this script replaces tabs inside of lines with spaces and heading spaces with tabs.

This is a modified version of
https://stackoverflow.com/a/5173322/5704060

edited 15.10.2023
created 13.10.2023
EOF
[+] click to leave a comment [+]
the comment system on this blog works via email. The button
below will generate a mailto: link based on this page's url 
and invoke your email client - please edit the comment there!

[optional] even better, encrypt the email with my public key

- don't modify the subject field
- specify a nickname, otherwise your comment will be shown as   
  anonymous
- your email address will not be disclosed
- you agree that the comment is to be made public.
- to take down a comment, send the request via email.

>> SEND COMMENT <<