The entab-detab tag has no wiki summary.
1
vote
3answers
598 views
Entab / Detab in VIM
In normal text editors, you select the block of text and then press Tab to entab and Shift + Tab to detab.
How do I entab or detab a selected block of text in VIM?
-2
votes
2answers
110 views
how to modify detab to accept list of arguments
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#define TAB_STOP 8
/* replaces tabs from input with the proper amount of blank spots */
int Detab()
{
int c, x;
...