/proc/4/root/usr/share/bash-completion/completions
This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.
# p11-kit(8) completion -*- shell-script -*- _p11-kit(){ local cur prev words cword _init_completion || return if [[ $cur == -* ]]; then local opts="--help --verbose -q --quiet" COMPREPLY=( $(compgen -W "$opts" -- "$cur") ) return elif [[ $cword -eq 1 ]]; then local commands='list-modules extract server remote' COMPREPLY=( $(compgen -W "$commands" -- "$cur") ) fi} &&complete -F _p11-kit p11-kit # ex: filetype=sh