1
vote
6answers
4k views

indent python file (with pydev) in eclipse

I'm a newbie in eclipse. I want to indent all the lines of my code and formatting the open file by pressing a shortcut or something like that... I know the CTRL+SHIFT+F (as it actually doesn't work in ...
0
votes
1answer
227 views

Is there any short cuts for Xcode to tidy up the code?

for example, I have something like this: aVarible = 123; bIndex = 234; cSomethingVerylong = 456; And I would like to intent the code like this: aVarible = 123; bIndex = ...
3
votes
1answer
1k views

How to fix broken automatic indentation in vim

I am trying to use vim 7.2 (on Windows XP) to automatically indent and format some VHDL and Matlab code. To do so I am trying to use the "gg=G" command. However this does not work properly. The code ...
8
votes
3answers
5k views

editing the NetBeans source formatting standard

Is there any way of changing the standard by which NetBeans automatically formats the code when doing "Source->Format"? I seem to remember seeing this option somewhere, but I can't find anything about ...
0
votes
1answer
247 views

Code/Function/Library to intent/format/prettify JavaScript/QtScript code for readablity within the application?

Greetings, in one of my applications I provide a simple code editor based on a QTextEdit widget and the QSyntaxHighlighter. I was wondering if there is function, library or generally a way to allow ...