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
Preserve the last empty comment line after eval plugin (#631)
```haskell
-- >>> foo
--
-- >>> bar
```
After running the plugin on both prompts we end up with this:
```haskell
-- >>> foo
-- foo_output
--
-- >>> bar
-- bar_output
```
instead of
```haskell
-- >>> foo
-- foo_output
-- >>> bar
-- bar_output
```
0 commit comments