We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When copy/pasting a module the first line of the file should be unchanged or the module name should be updated to the new name of the file
The first line of the file gets corrupted. For instance copy/pasting A.elm creates A copy.elm with the first line becoming:
A.elm
A copy.elm
module A%20copy exposing (..)module A exposing (main)
Don't change a module when copy/pasting, or insert the new module name without corrupting the file.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Behavior
When copy/pasting a module the first line of the file should be unchanged or the module name should be updated to the new name of the file
Current Behavior
The first line of the file gets corrupted. For instance copy/pasting
A.elm
createsA copy.elm
with the first line becoming:Possible Solution
Don't change a module when copy/pasting, or insert the new module name without corrupting the file.
Steps to Reproduce (for bugs)
A.elm
Context
Your Environment
The text was updated successfully, but these errors were encountered: