加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > Linux > 正文

使用虚拟路径完成zsh

发布时间:2020-12-13 22:44:49 所属栏目:Linux 来源:网络整理
导读:我想为具有虚拟文件树的工具创建zsh完成. 例如我的文件树如下所示: /|- foo/| |- bar| |- baz/| |- qux|- foobar 我的工具mycmd有一个子命令,用于列出当前目录: $mycmd lsfoo/foobar$mycmd ls foo/barbaz/ 我的实际zsh完成看起来像这样: _mycmd_ls() { if
我想为具有虚拟文件树的工具创建zsh完成.
例如我的文件树如下所示:

/
|- foo/
|  |- bar
|  |- baz/
|     |- qux
|- foobar

我的工具mycmd有一个子命令,用于列出当前目录:

$mycmd ls
foo/
foobar
$mycmd ls foo/
bar
baz/

我的实际zsh完成看起来像这样:

_mycmd_ls() {
    if [ ! -z "$words[-1]" ]; then
        dir=$(dirname /$words[-1])
        lastpart=$(basename $words[-1])
        items=$(mycmd ls $dir | grep "^$lastpart")
    else
        items=$(mycmd ls)
    fi
    _values -s ' ' 'items' ${(uozf)items}
}


_mycmd() {
    local -a commands

    commands=(
        'ls:list items in directory'
    )

    _arguments -C -s -S -n 
        '(- 1 *)'{-v,--version}"[Show program's version number and exit]: :->full" 
        '(- 1 *)'{-h,--help}'[Show help message and exit]: :->full' 
        '1:cmd:->cmds' 
        '*:: :->args' 

    case "$state" in
        (cmds)
            _describe -t commands 'commands' commands
            ;;
        (args)
            _mycmd_ls
            ;;
        (*)
            ;;
    esac
}

_mycmd

恕我直言_values错误的效用函数.实际行为是:

$mycmd ls<TAB>
foo/    foobar
$mycmd ls foo/<TAB>  ## <- it inserts automatically a space before <TAB> and so $words[-1] = ""
foo/    foobar

我无法使用实用程序函数_files或_path_files,因为文件树只是虚拟的.

解决方法

我建议使用compadd而不是_values来控制附加的后缀字符.然后查看可用选项,设置一个空后缀字符,以防虚拟目录是结果的一部分:

_mycmd_ls() {
    if [ ! -z "$words[-1]" ]; then
        dir=$(dirname /$words[-1])
        lastpart=$(basename $words[-1])
        items=$(mycmd ls $dir | grep "^$lastpart")
    else
        items=$(mycmd ls)
    fi

    local suffix=' ';
    # do not append space to word completed if it is a directory (ends with /)
    for val in $items; do
        if [ "${val: -1:1}" = '/' ]; then
            suffix=''
            break
        fi
    done

    compadd -S "$suffix" -a items
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读