Aodaruma / AviUtl-repoTemplate

A repository template for developing new AviUtl sciprts or plugins
GNU Lesser General Public License v2.1
1 stars 0 forks source link

スクリプトのマルチバイト文字が差分で化ける #3

Open karoterra opened 1 year ago

karoterra commented 1 year ago

Describe the bug スクリプトファイル中のマルチバイト文字が化けるというかエンコードされて表示されてしまい見づらいです。

To Reproduce Steps to reproduce the behavior:

> git clone https://github.com/Aodaruma/AviUtl-repoTemplate.git
> cd AviUtl-repoTemplate
> git diff 7341339^..7341339
diff --git a/src/template.anm b/src/template.anm
new file mode 100644
index 0000000..d48c7a3
--- /dev/null
+++ b/src/template.anm
@@ -0,0 +1,60 @@
+--[[
+# <93><FA><96>{<8C><EA> ########################################
+<82><B1><82>̃t<83>@<83>C<83><8B><82>́AAviUtl<82><CC>anm<81>i<83>A<83>j<83><81><81>[<83>V<83><87><83><93><81>j<83>X<83>N<83><8A><83>v<83>g<82>̐<97><8C>`<82>ł<B7><81>B
+<82><B1><82>̃t<83>@<83>C<83><8B><82><F0><83>e<83><93><83>v<83><8C><81>[<83>g<82>Ƃ<B5><82>āA<82><A0><82>Ȃ<BD><93>Ǝ<A9><82>̃X<83>N<83><8A><83>v<83>g<82><F0><8D>쐬<82><B7><82>邱<82>Ƃ<AA><82>ł<AB><82>܂<B7><81>B
+AviUtl<82>̃X<83>N<83><8A><83>v<83>g<82>̍<EC><82><E8><95>□□□□□<82><A9><82><E7><82>Ȃ<A2><8F>ꍇ<82>́A<88>ȉ<BA><82>̃h<83>L<83><85><83><81><83><93><83>g<82><F0><8E>Q<8D>l<82>ɂ<B5><82>Ă݂Ă<AD><82><BE><82><B3><82><A2><81>B
+- AviUtl scrapbox: https://scrapbox.io/aviutl/
+    - https://scrapbox.io/aviutl/<83>X<83>N<83><8A><83>v<83>g<8A>J<94><AD><82><F0><8E>n<82>߂<E9><82>ɂ<CD>%EF%BC%9F
+    - https://scrapbox.io/aviutl/<83>X<83>N<83><8A><83>v<83>g<83>t<83>@<83>C<83><8B>_<83>t<83>H<81>[<83>}<83>b<83>g
+- Lua 5.1 <83><8A><83>t<83>@<83><8C><83><93><83>X<83>}<83>j<83><85><83>A<83><8B>: http://milkpot.sakura.ne.jp/lua/lua51_manual_ja.html
+    - <8C>□□□□̃h<83>L<83><85><83><81><83><93><83>g<82><E0><97><98><97>p<82>ł<AB><82>܂<B7>(<89>p<8C><EA>): http://www.lua.org/manual/5.1/manual.html
+

Expected behavior マルチバイト文字の差分も素直に見れること。

Screenshots vscodeだと以下の様に表示されます。 image

Desktop (please complete the following information):

Additional context .gitattributesdiff=sjis とするより working-tree-encoding=cp932 とする方がいいかもしれません。

Aodaruma commented 1 year ago

有難うございます、私は git config diff.sjis.textconv "iconv -f sjis"を実行してしまっていたため、正常に見えたままになっていました。 .gitattributeにて、各種スクリプトファイルおよびtxt等にworking-tree-encoding=cp932を追記しておきます。

Aodaruma commented 1 year ago

対応しました、確認お願いします #4

karoterra commented 1 year ago

ありがとうございます。

4 以降に行ったコミットの差分について、マルチバイト文字が素直に読めるようになっていることを確認しました。

また各テンプレートについて内容に変更はありませんが、エンコーディングの設定変更に伴いgit的には変更が発生している扱いになっていました。 そちらの環境でも git add --renormalize . とすると見えるかもしれないです。 これを放置した場合の影響としては以下が考えられます。

Aodaruma commented 1 year ago

こちらでも確認しました。これが参考になりそうなので修正できるか検討してみます: https://stackoverflow.com/questions/58352957/what-going-on-git-see-changes-without-changes#comment103060168_58352957