gh icon indicating copy to clipboard operation
gh copied to clipboard

Fix fish repositories completion

Open Brettm12345 opened this issue 4 years ago • 0 comments

In fish shell tab completions for users worked file but tab completion for repositories gave an empty response. This is because of the line string join \n $repos | sort | uniq -du. uniq -d prints only duplicate lines and uniq -u prints only unique lines so uniq -du will always return an empty string.

Brettm12345 avatar Sep 12 '19 00:09 Brettm12345