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.

link|improve this question
feedback

migrated from stackoverflow.com Jun 9 '11 at 19:16

This question came from our site for professional and enthusiast programmers.

3 Answers

At the risk of suggesting the obvious:

/Tab

works fine for me.

link|improve this answer
feedback

Press CtrlV, followed by Tab.

link|improve this answer
feedback

You can search for tabs using /^I (where ^I is Crtl+i).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown