mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Remove unnecessary use of uniq in Mercurial completion.
Fish already takes care of duplicate completions.
This commit is contained in:
parent
daaed863da
commit
bd707b4a96
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@ function __hg_merge_tools
|
|||
for tool in internal:dump internal:fail internal:local internal:merge internal:other internal:prompt
|
||||
printf "$tool\tmerge tool\n"
|
||||
end
|
||||
__hg showconfig merge-tools | cut -d . -f 2 | uniq | xargs printf "%s\tmerge tool\n"
|
||||
__hg showconfig merge-tools | cut -d . -f 2 | xargs printf "%s\tmerge tool\n"
|
||||
end
|
||||
|
||||
function __hg_sources
|
||||
|
|
Loading…
Reference in a new issue