vote up 6 vote down star
1

How do I find a tab character in emacs?

flag

75% accept rate

4 Answers

vote up 14 vote down check
C-s C-q <TAB>

C-s starts an incremental search, and then C-q runs quoted-insert, which inserts the next character you type literally. Then, pressing the TAB key will insert a tab character. Continue hitting C-s to go to the next tab character.

link|flag
5  
Thanks. Emacs newbies asking this question will want to know that <TAB> means "hit the tab key". – chernevik Jun 1 at 17:35
vote up 4 vote down

C-s TAB works for me

link|flag
Why the downvote? I just tested this in various modes in Windows emacs v22.3.1 and linux v 23.0.92.1 You don't need the C-q – justinhj Jun 1 at 17:18
I'm speculating (and didn't downvote), but maybe because people didn't think it would work, or that they figured that if chernevik were having problems, then the unquoted TAB wasn't working for him? – Blair Conrad Jun 1 at 17:38
All of C-s TAB, C-s C-q TAB, and C-s C-q C-i work for me. Maybe somebody could explain when/why C-s TAB doesn't work? – Chris Conway Jun 1 at 18:42
vote up 1 vote down

Hit C-s to start an incremental search, then type C-q C-i to search for a literal tab character.

If you want to visualize tab characters, you can add the following to your ~/.emacs file to colorize tabs:

; Draw tabs with the same color as trailing whitespace
(add-hook 'font-lock-mode-hook
  '(lambda ()
     (font-lock-add-keywords
       nil
        '(("\t" 0 'trailing-whitespace prepend))
     )
   )
)
link|flag
vote up 0 vote down

I use whitespace mode to highlight all tabs with the following in my .emacs file:

;whitespace http://www.emacswiki.org/emacs/WhiteSpace 
(require 'whitespace)
(setq whitespace-style '(tabs tab-mark)) ;turns on white space mode only for tabs
(global-whitespace-mode 1)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.