Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to view the tabs and spaces and CRLF in python source code in eclipse the same way we could see them in notepad++, Now I have to edit in notepad++ and run in eclipse. Not a neat way but eclipse does regular update of the changes of same file in other editor.

share|improve this question
Just added an extended answer addressing the "space instead of tabs" issue – VonC Jun 9 '09 at 17:41

1 Answer

up vote 17 down vote accepted

This should be cover with the "Show invisible" option

show whitespace

From Eclipse3.3:

It is now possible to see the invisible whitespace characters in textual editors:

This feature can either be controlled via "General > Editors > Text Editors > Show whitespace characters" preference, or via the tool bar button when the Editor Presentation action set is enabled.

I did not tried it with PyDev, but its editor should be a "textual editor", and the option should work.


when I press TAB it creates spaces instead of >> for tabs

Check the option "General > Editors > Text Editors > Insert spaces for tabs":
if unchecked, it will display tabs, not space.

share|improve this answer
It is working in PyDev – Janusz Jun 9 '09 at 17:08
wonderful, it does,thank you, but when i press TAB it creates spaces instead of >> for tabs – dhaval Jun 9 '09 at 17:35
if you have pydev you must also update pydev -> Editor "Replace tabs with spaces when typing" – StiGMaT Jul 9 '12 at 0:06

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.