diff options
author | Robin Jarry <robin@jarry.cc> | 2022-12-21 12:50:01 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-01-04 22:57:31 +0100 |
commit | a9cba9b6e60ff4aec081d48b0d86ec175c3e8e99 (patch) | |
tree | 97cb32aaeb834d4d0f479f70894a6cf308d2cbba /go.mod | |
parent | d758441fe0c4da6bc3486d0643436ad7ac290a56 (diff) | |
download | aerc-a9cba9b6e60ff4aec081d48b0d86ec175c3e8e99.tar.gz |
format: add utf-8 aware truncate head function
The runewidth module only allows truncating at the end of strings. Add
a function to truncate at the beginning. It will be used for the table
widget in the next commit.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Acked-by: Tim Culverhouse <tim@timculverhouse.com>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -32,6 +32,7 @@ require ( github.com/miolini/datacounter v1.0.2 github.com/mitchellh/go-homedir v1.1.0 github.com/pkg/errors v0.9.1 + github.com/rivo/uniseg v0.2.0 github.com/riywo/loginshell v0.0.0-20200815045211-7d26008be1ab github.com/stretchr/testify v1.8.0 github.com/syndtr/goleveldb v1.0.0 |