jesseduffield.lazygit/vendor/github.com/gdamore/encoding
2025-07-06 16:13:17 +02:00
..
.appveyor.yml Bring back files from vendor directory that we accidentally excluded 2025-07-06 16:13:17 +02:00
ascii.go use tcell via porting over code from awesome-gocui 2021-04-06 19:34:32 +10:00
charmap.go Bump gocui 2024-04-18 10:10:30 +02:00
CODE_OF_CONDUCT.md Bump gocui 2024-04-18 10:10:30 +02:00
doc.go use tcell via porting over code from awesome-gocui 2021-04-06 19:34:32 +10:00
ebcdic.go use tcell via porting over code from awesome-gocui 2021-04-06 19:34:32 +10:00
latin1.go use tcell via porting over code from awesome-gocui 2021-04-06 19:34:32 +10:00
latin5.go use tcell via porting over code from awesome-gocui 2021-04-06 19:34:32 +10:00
LICENSE use tcell via porting over code from awesome-gocui 2021-04-06 19:34:32 +10:00
README.md Bump gocui 2024-04-18 10:10:30 +02:00
SECURITY.md Bump gocui 2024-04-18 10:10:30 +02:00
utf8.go use tcell via porting over code from awesome-gocui 2021-04-06 19:34:32 +10:00

encoding

Linux Windows Apache License Coverage GoDoc

Package encoding provides a number of encodings that are missing from the standard Go encoding package.

We hope that we can contribute these to the standard Go library someday. It turns out that some of these are useful for dealing with I/O streams coming from non-UTF friendly sources.

The UTF8 Encoder is also useful for situations where valid UTF-8 might be carried in streams that contain non-valid UTF; in particular I use it for helping me cope with terminals that embed escape sequences in otherwise valid UTF-8.