one pretty printer "to rule them all"
Asked Answered
G

5

6

I'm looking for a tool that can pretty-print (AKA tidy or beautify) source code in as many languages as possible. Those I'm particularly keen on include:

  • Java
  • JSP
  • HTML
  • JavaScript
  • SQL
  • JSON
  • XML

Ideally, the tool should be able to update source files in-place and be able to format more than a single file at-a-time. It would be great if it could format files containing multiple languages (e.g. a JSP containing HTML, Java, and JavaScript source code), but that's probably asking for a bit much.

I've already found a commercial tool that seems to cover a lot of languages, but a free one would be even better :)

BTW, I know there is a pretty printer available for most languages, but what I'm looking for is a "one-stop shop".

Cheers, Don

Ganda answered 30/10, 2008 at 20:22 Comment(3)
Free?!, Polystyle is only $1.998 per supported language! ;)Abreu
Too rich for my blood :)Shirring
I tried it out on a file containing JSP code and it seemed to work fine.Shirring
H
5

I use Vim to do this all the time. It doesn't handle HTML very well, but it does the others. It's easy to use the Vim commands to automate running it on a number of files.

Hypogene answered 30/10, 2008 at 20:33 Comment(3)
I use gvim too, though I'm no ninja. How exactly do you get it format the source code, and how do you set the number of tabs/spaces to use for indents?Shirring
Indent spacing is set with: :set ts=4 sw=4 (to set tabstops to 4 and shiftwidth to 4). Include in an .vimrc file or an environment variable.Millen
the autoformatting is done by pressing the = key in command mode. Highlight the entire buffer with ggVG then tap = (you may need to do it twice). You can also do it on smaller selections of the buffer, but sometimes it assumes your selection should start at indent level 0.Hypogene
P
4

Wikipedia has a good-sized list. I'm interested to see what consensus might emerge here, though.

Several handle multiple languages; e.g.

PrettyPrinter, (an Open Source beautifier for every programming language)

UniversalIndentGUI (A graphical user interface for any pretty printer with live preview for the formatting settings)

prettyprinter.de, (an online beautifier for PHP, Java, C++, C, Perl, JavaScript, CSS)

Pacer answered 30/10, 2008 at 20:45 Comment(2)
What I'm looking for is one pretty-printer that can do multiple languages, not one for each language.Shirring
There are several that handle multiple languages.Pacer
A
4

For Haskell, I have this in ~/bin/pp.hs:

#!/usr/bin/env runhaskell
module Main (main) where
import Language.Haskell.Parser
import Language.Haskell.Pretty
import System.Environment
pp f = case parseModule f
        of ParseOk m -> prettyPrint m
           a -> show a
main = do args <- getArgs
          mapM_ (>>= putStrLn . pp) $
            if null args then [getContents] else map readFile args

In Vim, :set equalprg=~/bin/pp.hs, select a region, hit =, and boom, it gets prettified.

Okay, it's not very general. But I figure it has a small chance of helping somebody if I add it here.

Atlanta answered 30/10, 2008 at 21:24 Comment(0)
R
1

Emacs is a personal favorite of mine. There are add-ons that allow for almost every language you can thing of.

Redletter answered 30/10, 2008 at 20:53 Comment(0)
L
0

I use UltraEdit and find it's generally pretty good. It's not free, but it's also not that expensive.

Lindyline answered 30/10, 2008 at 20:37 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.