equal
deleted
inserted
replaced
66 COMPREPLY=(${COMPREPLY[@]:-} $(compgen -W '$commands' -- "$cur")) |
66 COMPREPLY=(${COMPREPLY[@]:-} $(compgen -W '$commands' -- "$cur")) |
67 } |
67 } |
68 |
68 |
69 _hg_paths() |
69 _hg_paths() |
70 { |
70 { |
71 local paths="$(_hg_cmd paths | sed -e 's/ = .*$//')" |
71 local paths="$(_hg_cmd paths -q)" |
72 COMPREPLY=(${COMPREPLY[@]:-} $(compgen -W '$paths' -- "$cur")) |
72 COMPREPLY=(${COMPREPLY[@]:-} $(compgen -W '$paths' -- "$cur")) |
73 } |
73 } |
74 |
74 |
75 _hg_repos() |
75 _hg_repos() |
76 { |
76 { |