diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-11-23 19:23:34 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-11-23 19:23:34 +0100 |
commit | 20dec0072c64a4f7350ee60fd7ff0fd4e923b30d (patch) | |
tree | 3e2b5ad0ad80d134e44969a93043b9ab6e75b28d /.local | |
parent | 47c79dd517600b93c402d800ce1046e0e371e0f5 (diff) |
visep: Add many more control characters
Diffstat (limited to '.local')
-rwxr-xr-x | .local/bin/visep | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/visep b/.local/bin/visep index 8ba537c..7449c14 100755 --- a/.local/bin/visep +++ b/.local/bin/visep @@ -1,4 +1,4 @@ #!/usr/bin/sed -f # tr doesn’t translate characters — but bytes — meaning we need sed -y/\x1C\x1D\x1E\x1F/␜␝␞␟/ +y/\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0B\x0C\x0D\x0E\x0F\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F\x7F/␀␁␂␃␄␅␆␇␈␉␋␌␍␎␏␐␑␒␓␔␕␖␗␘␙␚␛␜␝␞␟␡/ |