Skip to content
This repository has been archived by the owner on Oct 7, 2020. It is now read-only.

Newline added on every save #289

Closed
ismailmustafa opened this issue Aug 16, 2017 · 8 comments
Closed

Newline added on every save #289

ismailmustafa opened this issue Aug 16, 2017 · 8 comments
Milestone

Comments

@ismailmustafa
Copy link
Contributor

In VSCode every time I make a change to a file and save it, a newline is added to the end of the file. Assuming you make 100 changes and save after every change, this will result in 100 empty lines added to the end of the file.

@wz1000
Copy link
Collaborator

wz1000 commented Aug 18, 2017

I can't reproduce this. Anyway, it sounds like an issue with vscode, not HIE. Maybe make an issue on the vscode tracker?

@ismailmustafa
Copy link
Contributor Author

I thought this was the case however I can only reproduce this when using HIE. Two cases that hint at HIE being the issue:

  1. The problem only occurs on files with the .hs extension.
  2. Uninstalling HIE fixes the issue.

@sheyll
Copy link

sheyll commented Sep 9, 2017

I have the same issue, I think it happens when editor.formatOnSave and files.insertFinalNewline are both true.

I think Brittany indents a final newline, such that the former final newline isn't regarded as the final newline anymore, and a new final newline is inserted by vscode next time the buffer is saved, which then gets indented by brittany, and the cycle repeats...

@ismailmustafa
Copy link
Contributor Author

Good catch! files.insertFinalNewline is set to false for me. But setting editor.formatOnSave to false seems to fix the issue. It looks like this open issue on the Brittany issue tracker might be related lspitzner/brittany#25.

@lspitzner
Copy link
Contributor

lspitzner commented Sep 10, 2017

lspitzner/brittany#25 has nothing to do with this.

I think @sheyll's analysis is close, although I am confused where the newline containing space comes from.

It is true that brittany adds a new line if the last line contained anything in the input (even if those contents were only spaces that don't get reproduced by brittany). But this stops after one iteration, as there now is a newline character at the end of the input. So idempotency is not violated from brittany's end alone.

There are two fixes to this: Stop brittany from adding a final newline and stop whatever else from adding a line containing space. I think both should be implemented. I have opened lspitzner/brittany#53.

@lspitzner
Copy link
Contributor

As it turns out, lspitzner/brittany#53 was unrelated, although it had a similar cause. Brittany never exposed any newline-appending behaviour when the ppconf_hackAroundIncludes config value was set to False, which it was when called via HIE.

But I think the cause is related: the plugin uses Text.lines instead of Text.splitOn "\n". The issue boils down to T.lines/T.unlines not forming a bijection. (The same holds for List.lines/unlines.)

So now I think the fix involves not using T.lines (although splitOn might also require further changes, as splitOn and unlines don't form a bijection either) and not appending a final line containing space.

@sheyll
Copy link

sheyll commented Apr 6, 2018

Any update on this?

@ismailmustafa
Copy link
Contributor Author

Fixed with #525

@alanz alanz added this to the prehistory milestone Feb 2, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants