Repro: 1. Open or create a `.clj` file. 2. Enter a complete form in which the last line is indented, such as the following: ``` (defn index-of-any [pred coll] (first (index-filter pred coll))) ``` 3. Copy some lines of code. 4. Position the cursor on the first column of any line after the completed form, such as here: ``` (defn index-of-any [pred coll] (first (index-filter pred coll))) _ ``` 5. Paste. Expected: Pasted lines of code are not indented. For example: ``` (defn index-of-any [pred coll] (first (index-filter pred coll))) (foo) (bar) ``` Actual: Pasted lines of code are indented to the same level as the final line of the completed form. ``` (defn index-of-any [pred coll] (first (index-filter pred coll))) (foo) (bar) ```
Repro:
.cljfile.Expected:
Pasted lines of code are not indented. For example:
Actual:
Pasted lines of code are indented to the same level as the final line of the completed form.