Support encodings incompatible with emacs default #210
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi,
When running git-gutter on files with encodings incompatible with the Emacs default encoding (
prefer-coding-system
), several problems can occur:To fix this, use the current workdir file encoding to set read and write encodings where appropriate. This assumes the unchanged file uses the same encoding, so there are still error situations possible if that encoding is incompatible with the workdir file one. This should be good enough for most situations though.
Closes #176
Supersedes #177
error reproduction
Make emacs use utf-8 as default, if not already the case:
(prefer-coding-system 'utf-8)
Create a new git repo, commit a file with windows-1252-dos encoding, and some umlaut chars, e.g.: windows-1252-dos.txt
Open the file and enable git-gutter.
When
git-gutter:live-update
runs, a prompt for choosing encoding of writing the temporary file with original file content should pop up.