How do you search for tabs in the linux command less?
How do you search for tabs in the linux command less?
I've tried /\t but that only seems to search for the character t.
3 Answers
At the risk of suggesting the obvious:
/Tab
works fine for me.
Press / then CtrlV, followed by Tab.
0You can search for tabs using /^I (where ^I is Crtl+i).