diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-07-13 15:22:42 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-07-13 16:02:56 -0400 |
commit | c5a2bfd924445dfccd943ea34374a5d1266f5cb9 (patch) | |
tree | 107939d8c2b35a799a23ae6806f62c98ad6efcc9 /src/color.h | |
parent | b577bedfd37d93cb802c36beb93cf6581af51930 (diff) | |
download | bfs-c5a2bfd924445dfccd943ea34374a5d1266f5cb9.tar.xz |
color: TTY-escape filenames
Diffstat (limited to 'src/color.h')
-rw-r--r-- | src/color.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/color.h b/src/color.h index 932d551..0d46c33 100644 --- a/src/color.h +++ b/src/color.h @@ -87,6 +87,7 @@ int cfclose(CFILE *cfile); * %zu: A size_t * %m: strerror(errno) * %pq: A shell-escaped string, like bash's printf %q + * %pQ: A TTY-escaped string. * %pF: A colored file name, from a const struct BFTW * argument * %pP: A colored file path, from a const struct BFTW * argument * %pL: A colored link target, from a const struct BFTW * argument |