TAB grep
$ grep ‘’ your_file
remember, vim would expand the tab to spaces we input, so the grep will fail us.
$ grep expandtab ~/.vimrc
“set noexpandtab
in vim,
if the character is a tab, the cursor would stop once;
if they are spaces, the cursor will stop for a “tabstop” times.
$ grep tabstop .vimrc
“set tabstop=4
with hexedit, or hexdump, or any hex editor,
we can see the TAB is ascii 09,
while we know space is ascii 20.