Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can you show/reveal hidden characters in NetBeans? In other editors, if this feature is turned on, a space might be shown as a small centered dot, and a tab as a right arrow. (This feature is useful to see if a file uses tabs or spaces for indentation, among other things.)

share|improve this question

4 Answers

up vote 18 down vote accepted

As far as I know, NetBeans lacks such basic editing feature (among many others). Their bug tracker suggest that it was requested in 1999 but ten years later it's not implemented yet:

Editor should allow you to view non-visible characters such as tabs, spaces, carriage returns, and EOF


Update #1: This feature was implemented on August 2010. You can enable/disable it at "View → Show Non-printable Characters".

Update #2: As of NetBeans 7.0.1, the definition for "non-printable" seems to include tabs and carriage returns but not regular white space char:

NetBeans 7.0.1

Update #3: NetBeans 7.1.0 finally displays spaces. However, now it has a new bug where consecutive tabs (or tabs & spaces combinations) collapse into one tab:

NetBeans 7.1.0

And there's yet another bug: the end of file is represented with the same symbol as line feeds, thus make it difficult to say whether the file ends with EOL.

These two issues are still present in NetBeans 7.2 and 7.3.

share|improve this answer
This only shows line breaks for me. No white spaces or tabs! (using 7.0.1) – lony Oct 9 '11 at 14:21
@lony - Thanks for noting it. I'll update the answer. – Álvaro G. Vicario Oct 10 '11 at 9:44
With NetBeans 7.1 spaces are also show in that mode. – a_horse_with_no_name Jan 13 '12 at 15:45
@a_horse_with_no_name - Thanks for the news. I've updated the answer accordingly. – Álvaro G. Vicario Jan 13 '12 at 16:40
1  
And if you change the color of the whitespace, only the whitespace NOT present in comments will reflect this new flavor. Whitespace in comments will have whatever color comments is set to have. – Martin Andersson Mar 5 at 14:03

in netbeans 7 you can enable display of spaces, tabs & line feeds like this:

spaces

tabs & line feeds

in netbeans 7 you can enable to see non-printable characters:

  • view > show non-printable characters

in netbeans 6 only the spaces part works

share|improve this answer
Great tip! Seems to work in linux (Ubuntu 12.04) as well too! – chrisjlee Aug 24 '12 at 14:36

This feature has finally been added and is available in NetBeans 6.10. Since this has not been released yet, you can try out 6.10 MileStone 1: http://bits.netbeans.org/netbeans/6.10/m1/. I look forward to the final release!

share|improve this answer

Ubuntu 11.10 => Netbeans 7.0.1

The "View → Show Non-printable Characters" mode really not shows whitespaces while font was not installed by me.

Thanks!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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