Skip to content

Commit

Permalink
fix(gdb): remove duplicate candidates
Browse files Browse the repository at this point in the history
  • Loading branch information
akinomyoga committed Feb 8, 2024
1 parent 73938cd commit 532fc05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion completions/gdb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ _comp_cmd_gdb()
IFS=$' \t\n'
find ${path_array[@]+"${path_array[@]}"} . -name . -o \
-type d -prune -o -perm -u+x -print 2>/dev/null |
command sed 's|^.*/||'
command sed 's|^.*/||' | sort -u
)"
fi
elif ((cword == 2)); then
Expand Down

0 comments on commit 532fc05

Please sign in to comment.