diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-04-22 23:07:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-23 08:07:22 +0200 |
commit | e4a3feeb92940a9b3c4ce88fc808a0cdff2e4e9c (patch) | |
tree | f6c8a7b504b77be3a9682c8a7029cf0b33128118 /testament | |
parent | 56859fe8516cd3e8191f9162c6409aeed8493941 (diff) | |
download | Nim-e4a3feeb92940a9b3c4ce88fc808a0cdff2e4e9c.tar.gz |
add `--processing:dots|filenames|off` to customize `hintProcessing` (#17817)
Diffstat (limited to 'testament')
-rw-r--r-- | testament/testament.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testament/testament.nim b/testament/testament.nim index b79b86e51..f259c7b96 100644 --- a/testament/testament.nim +++ b/testament/testament.nim @@ -104,7 +104,7 @@ proc isSuccess(input: string): bool = # not clear how to do the equivalent of pkg/regex's: re"FOO(.*?)BAR" in pegs # note: this doesn't handle colors, eg: `\e[1m\e[0m\e[32mHint:`; while we # could handle colors, there would be other issues such as handling other flags - # that may appear in user config (eg: `--listFullPaths`). + # that may appear in user config (eg: `--filenames`). # Passing `XDG_CONFIG_HOME= testament args...` can be used to ignore user config # stored in XDG_CONFIG_HOME, refs https://wiki.archlinux.org/index.php/XDG_Base_Directory input.startsWith("Hint: ") and input.endsWith("[SuccessX]") |