-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
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
Elixir-Native Diff and Patch #2
Comments
Possible helper tools: |
A bit more on this issue:
|
This was referenced Jul 2, 2021
Definitely agreed on minimizing the 3rd party dependencies :) ElixirLS has a myers_diff_to_text_edits function that might serve as good inspiration: https://github.com/elixir-lsp/elixir-ls/blob/6a786d7d9e7ca97a2c9c77ea4acd0057a98734d8/apps/language_server/lib/language_server/providers/formatting.ex#L72 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Rfx needs
diff
andpatch
functions. For prototyping, these are implemented withSystem.call("diff", ...)
. This workaround will work on Linux systems, but not on Windows. We need a Elixir native implementation ofdiff
andpatch
.See Module:
Rfx.source
.The text was updated successfully, but these errors were encountered: