You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 28, 2021. It is now read-only.
it seems that automatic identation imposed by that package often indents some operatots wrong way
for instance,
(if (condition)
(then)
(else))
should indent then and else on same level as condition, but this package indents it as
(if (condition)
(then)
(else))
also wrong identation at least on LOOP macro (it should indent all lines on same level, but it does not) and destructuring-bind macro (it should NOT indent all lines on same level as bind, but it does)
Together with parinfer it makes working on same project with people who use correct indentation tools (on emacs mostly) very tedious and prone to mistakes
it seems that automatic identation imposed by that package often indents some operatots wrong way
for instance,
should indent then and else on same level as condition, but this package indents it as
also wrong identation at least on LOOP macro (it should indent all lines on same level, but it does not) and destructuring-bind macro (it should NOT indent all lines on same level as bind, but it does)
Together with parinfer it makes working on same project with people who use correct indentation tools (on emacs mostly) very tedious and prone to mistakes