Git Product home page Git Product logo

zprint's Introduction

zprint

zprint is a library and command line tool providing a variety of pretty printing capabilities for both Clojure code and Clojure/EDN structures. It can meet almost anyone's needs. As such, it supports a number of major source code formattng approaches.

cljdoc badge

Recent Additions!

  • The library is now thread-safe (only if you format all strings or all structures. You can't intermix them simultaneously.)
  • Tests now also run in babaska (thanks to @borkdude)
  • Tested with Clojure 1.11.1, Clojurescript 1.11.4
  • Implemented {:output {:range? true}} to ease integration with IDE's.
  • New version of rewrite-clj now used for both .clj and .cljs. Many thanks to @lread for picking up support and extensions for rewrite-clj and merging rewrite-cljs with it to create a unified Clojure parsing library. This will fix a number of bugs that were parser related.
  • You can now format values in maps differently, based on the key with which a value is associated. {:map {:key-value-options {key-1 options-map-1 key-2 options-map-2 ...}} lets you specify an options map to be used for formatting the value of any specific key in any map.
  • A number of new styles: :ns-justify, which will nicely format ns macros. :quote-wrap which will cause a quoted list to wrap, and not format each item running down the page, to mention a few.
  • A more nuanced approach to justification, based on the variance of the lengths of the left-hand elements in a binding vector, map, or cond. If the variance is too great, up to two pairs are left out of the justification. If that doesn't bring the variance into line, none of the pairs are justified. {:style :justified} to try it out!
  • The are macro is now formatted readably by default.
  • In-place formatting by file name, $ zprint -w file.clj and $ zprint -w *.clj
  • Check formatting of files without altering them, using -c or --check: $ zprint -c *.clj.
  • Functions in options maps now safely supported in all .zprintrc files using any distributed binaries, using sci.
  • You can now define a style and use it in the same .zprintrc. You can also define one style in terms of another.
  • Output colorized, formatted source to terminal: $ zprint '{:color? true}' <file.clj
  • Format babashka scripts
  • Format ranges of lines in files
  • {:style :dark-color-map} when using dark terminals
  • All changes

See zprint:

  • classic zprint -- ignores whitespace in function definitions and formats code with a variety of heuristics to look as good as hand-formatted code (see examples)
  • respect blank lines -- similar to classic zprint, but blank lines inside of function defintions are retained, while code is otherwise formatted to look beautiful (see examples)
  • indent only -- very different from classic zprint -- no code ever changes lines, it is only correctly indented on whatever line it was already on (see examples)

In addition, zprint is very handy to use at the REPL.

Use zprint:

Get zprint:

Get something other than the default formatting:

Without learning how to configure zprint:

Maybe one of the existing "styles" will meet your needs. All you have to do is put {:style ...} on the command line or as the third argument to a zprint call. For example, {:style :community} or {:style :respect-bl}.

Some commonly used styles:

Learn how to alter zprint's formatting behavior:

I want to change...

Usage

cljdoc badge

Clojure 1.9, 1.10, 1.10.3, 1.11.1:

Leiningen (via Clojars)

Clojars Project

Clojurescript:

zprint has been tested in each of the following environments:

  • figwheel-main 0.2.16 (Clojurescript 1.11.4)
  • shadow-cljs 2.18.0
  • planck 2.26.0 (Clojurescript 1.10.914)

It requires tools.reader at least 1.0.5, which all of the environments above contain.

Clojure 1.8:

The last zprint release built with Clojure 1.8 was [zprint "0.4.15"].

In addition to the zprint dependency, you also need to include the following library when using Clojure 1.8:

[clojure-future-spec "1.9.0-alpha17"]

The zprint Reference

Testing and Development

Information on testing and development can be found here.

Contributors

A number of folks have contributed to zprint, not all of whom show up on GitHub because I have integrated the code or suggestions manually. Thanks for all of the great contributions!

  • Tests running in babashka: @borkdude
  • Additional colors and color-map entries: @RingMan
  • Updated rewrite-cljs dependency to 0.4.5 @rundis/
  • Readme updates: @mathiasn, @Quezion, @vemv, @arichiardi, @bhurlow, @kommen.
  • --url and --url-only: @coltnz
  • Use UTF-8 locale to build the native image: @mynomoto
  • Suggestion/encouragement to implement :respect-bl: @griffis
  • Thread safety suggestions: @fazzone
  • :option-fn and :fn-format for enhanced vector formatting: @milankinen
  • Fixed missing require in spec.cljc: @Quezion
  • Corrected readme: @griffis
  • Fixed nested reader conditional: @rgould1
  • Clarified and added useful example for clj usage: @bherrmann7
  • Sublime text plugin instructions: @ekinnear
  • Use body indentation for the ns macro: @pesterhazy
  • Suggested fix for international chars and graalVM native image: @huahaiy

Thanks to everyone who has contributed fixes as well as everyone who has reported an issue. I really appreciate all of the help making zprint better for everybody!

Acknowledgements

At the core of zprint is the rewrite-clj library originally created by Yannick Scherer, ported to Clojurescript by Magnus Rundberget, and recently merged into a single, supported, documented, and updated library by Lee Read. This is a great library! I would not have attempted zprint if rewrite-clj didn't exist to build upon.

License

Copyright © 2016-2022 Kim Kinnear

Distributed under the MIT License. See the file LICENSE for details.

zprint's People

Contributors

arichiardi avatar bhurlow avatar borkdude avatar coltnz avatar ekinnear avatar kkinnear avatar kwrooijen avatar martinklepsch avatar milankinen avatar mynomoto avatar pesterhazy avatar quezion avatar ringman avatar robhanlon22 avatar rundis avatar vemv avatar vise890 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.