Merge pull request #777 from dancek/patch-1
udisksctl: fix paths with a colon
This commit is contained in:
commit
b8cc3b9b67
|
@ -52,7 +52,7 @@
|
|||
_paths() {
|
||||
local -a _path_list
|
||||
|
||||
for _path in $(_call_program paths "udisksctl complete \"udisksctl $words\" $CURSOR"); do
|
||||
for _path in $(_call_program paths "udisksctl complete \"udisksctl $words\" $CURSOR" | sed 's/:/\\:/g'); do
|
||||
_path_list+=$_path
|
||||
done
|
||||
|
||||
|
|
Loading…
Reference in New Issue