Here's the code I just encountered this with: ``` (s/defn compatible-units :- [sc/Unit] [quantity :- sc/Quantity all-units :- s/Bool] (if (not all-units) ..... ``` Trying to rename `all-units` to `something` in parinfer mode removes the space after not: ``` (if (notsomething) ```
Here's the code I just encountered this with:
Trying to rename
all-unitstosomethingin parinfer mode removes the space after not: