<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body text="#FFFFFF" bgcolor="#333333">
Given the following passwords, without any folders:<br>
Password Store<br>
├── app1<br>
├── app2<br>
├── test<br>
├── test2<br>
└── test3<br>
<br>
Autocompletion fails via rm command.<br>
$ pass rm t[tab]<br>
~/.config/fish/completions/pass.fish (line 4): No matches for
wildcard '"$prefix"/**"$ext"'. See `help expand`. 23:37:31<br>
printf '%s\n' "$prefix"/**"$ext" | sed
"s#$prefix/\(.*\)$strip#\1#"<br>
^<br>
in function '__fish_pass_print'<br>
called on line 50 of file ~/.config/fish/completions/pass.fish<br>
with parameter list '.gpg .gpg'<br>
<br>
in function '__fish_pass_print_entries'<br>
called on standard input<br>
<br>
Given the following passwords, with one folder:<br>
Password Store<br>
├── app1<br>
├── app2<br>
├── foo<br>
│ └── bar<br>
├── test<br>
├── test2<br>
└── test3<br>
<br>
$ pass rm t[tab]<br>
Autocompletion now works!<br>
<br>
Also if there are zero passwords in the store, Autocompletion throws
the same error below. <br>
$ pass fo[tab]<br>
~/.config/fish/completions/pass.fish (line 4): No matches for
wildcard '"$prefix"/**"$ext"'. See `help expand`. 23:47:40<br>
printf '%s\n' "$prefix"/**"$ext" | sed
"s#$prefix/\(.*\)$strip#\1#"<br>
<br>
</body>
</html>