We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, Currently indent/clojure.vim indents subforms of (ns ...) with 2-spaces, like this:
indent/clojure.vim
(ns ...)
(ns ncr.nsql.simple (:require [clojure.string :as str] [clojure.core.match :refer [match]]
while the style guide seemingly recommends, and cljfmt indents, the same subforms with 1-space (paren-aligned), like this:
cljfmt
Would you consider accepting a patch that adds optional, off-by-default ability to format those like cljfmt does it?
The text was updated successfully, but these errors were encountered:
I don't have the time right now to add it myself, but I would definitely accept a patch to add this as an option.
Sorry, something went wrong.
Add option for cljfmt-compatible indenting for some forms (#23)
72c1aeb
Resolves: #22
Successfully merging a pull request may close this issue.
Hello,
Currently
indent/clojure.vim
indents subforms of(ns ...)
with 2-spaces, like this:while the style guide seemingly recommends, and
cljfmt
indents, the same subforms with 1-space (paren-aligned), like this:Would you consider accepting a patch that adds optional, off-by-default ability to format those like
cljfmt
does it?The text was updated successfully, but these errors were encountered: