diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-05-11 22:04:13 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-05-11 22:04:13 +0200 |
commit | 27d34ef770356f86823ca832f278e72bb0a07982 (patch) | |
tree | a1ab41c459a1d01057513b5db309b50963f0e765 /src/libutil/args.hh | |
parent | 259ff74bdeeaac5a987a4eb88654ba80d9553543 (diff) |
When completing flakerefs, only return directories
Diffstat (limited to 'src/libutil/args.hh')
-rw-r--r-- | src/libutil/args.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libutil/args.hh b/src/libutil/args.hh index 250244162..405ec3d47 100644 --- a/src/libutil/args.hh +++ b/src/libutil/args.hh @@ -277,4 +277,6 @@ std::optional<std::string> needsCompletion(std::string_view s); void completePath(size_t, std::string_view prefix); +void completeDir(size_t, std::string_view prefix); + } |