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
Metadata forms ^:foo / ^{:foo 123} should not affect indentation of the following forms
^:foo
^{:foo 123}
[a b [c ^:foo d e]]
;; with clojure-ts-indent-style = 'semantic [a b [c ^:foo d e]] ;; with clojure-ts-indent-style = 'fixed [a b [c ^:foo d e]]
Some font-locking of the following form also appears to be affected:
Typing a closing delimiter with Paredit (paredit-close-curly) can also cause the point to jump to the wrong position:
paredit-close-curly
;; ↓with point here, type "}" [a ^{ } (b) c] ;; | | ;; | actual ;; expected
The text was updated successfully, but these errors were encountered:
Likely the metadata is not considered in the existing TS queries. I'll take a look when I can.
Sorry, something went wrong.
(The Paredit navigation issue is probably related to #62, and not directly to this)
No branches or pull requests
Expected:
Metadata forms
^:foo
/^{:foo 123}
should not affect indentation of the following formsActual:
Some font-locking of the following form also appears to be affected:
Typing a closing delimiter with Paredit (
paredit-close-curly
) can also cause the point to jump to the wrong position:The text was updated successfully, but these errors were encountered: