如何获取bash对别名执行制表符补全?


45

我设置了一堆bash完成脚本(主要使用bash-it和一些手动设置)。

我也有一堆别名设置像常见任务的gco进行git checkout。现在,我可以输入内容git checkout dTabdevelop为我完成,但是输入时还gco dTab没有完成。

我认为这是因为完成脚本正在完成git并且看不到gco

是否可以通过通用/编程方式使我所有的完成脚本与别名一起使用?使用别名种类时无法完成会破坏别名的目的。


您正在使用什么操作系统和bash?我使用的是Ubuntu 11.10和bash 4.2.10(1)-发行版(x86_64-pc-linux-gnu),我的shell中内置了许多别名的此功能。顺便说一句bash --version得到这个(不要使用-v,不同的输出)。
Michael Durrant 2012年

抱歉,您错过了一些信息-OSX Lion,GNU bash版本3.2.48(1)
发行

1
@killermist:除非我完全误解,否则zsh也不会立即完成别名命令。但是,实现一个将定义的别名添加到完成功能的功能似乎比bash容易得多,因为zhs的完成系统似乎比bash的功能更强大,更直接。
kopischke 2012年


1
@MichaelDurrant您确定这实际上是为别名内置的吗?我在使用Bash 4.3.42(1)-发行版(x86_64-pc-linux-gnu)的Ubuntu 15.10上,没有这样的东西。我还测试了一些较早的版本。因此,例如,如果您键入ll --[TAB]它,将打印一个选项列表ls?我对此表示怀疑,但是如果您确定11.10中存在这种情况,我很想对它进行挖掘并确定要删除的内容。
2015年

Answers:


42

以下代码根据此Stack Overflow答案Ubuntu论坛讨论线程改编而成,将为您定义的所有别名添加补全:

# Automatically add completion for all aliases to commands having completion functions
function alias_completion {
    local namespace="alias_completion"

    # parse function based completion definitions, where capture group 2 => function and 3 => trigger
    local compl_regex='complete( +[^ ]+)* -F ([^ ]+) ("[^"]+"|[^ ]+)'
    # parse alias definitions, where capture group 1 => trigger, 2 => command, 3 => command arguments
    local alias_regex="alias ([^=]+)='(\"[^\"]+\"|[^ ]+)(( +[^ ]+)*)'"

    # create array of function completion triggers, keeping multi-word triggers together
    eval "local completions=($(complete -p | sed -Ene "/$compl_regex/s//'\3'/p"))"
    (( ${#completions[@]} == 0 )) && return 0

    # create temporary file for wrapper functions and completions
    rm -f "/tmp/${namespace}-*.tmp" # preliminary cleanup
    local tmp_file; tmp_file="$(mktemp "/tmp/${namespace}-${RANDOM}XXX.tmp")" || return 1

    local completion_loader; completion_loader="$(complete -p -D 2>/dev/null | sed -Ene 's/.* -F ([^ ]*).*/\1/p')"

    # read in "<alias> '<aliased command>' '<command args>'" lines from defined aliases
    local line; while read line; do
        eval "local alias_tokens; alias_tokens=($line)" 2>/dev/null || continue # some alias arg patterns cause an eval parse error
        local alias_name="${alias_tokens[0]}" alias_cmd="${alias_tokens[1]}" alias_args="${alias_tokens[2]# }"

        # skip aliases to pipes, boolean control structures and other command lists
        # (leveraging that eval errs out if $alias_args contains unquoted shell metacharacters)
        eval "local alias_arg_words; alias_arg_words=($alias_args)" 2>/dev/null || continue
        # avoid expanding wildcards
        read -a alias_arg_words <<< "$alias_args"

        # skip alias if there is no completion function triggered by the aliased command
        if [[ ! " ${completions[*]} " =~ " $alias_cmd " ]]; then
            if [[ -n "$completion_loader" ]]; then
                # force loading of completions for the aliased command
                eval "$completion_loader $alias_cmd"
                # 124 means completion loader was successful
                [[ $? -eq 124 ]] || continue
                completions+=($alias_cmd)
            else
                continue
            fi
        fi
        local new_completion="$(complete -p "$alias_cmd")"

        # create a wrapper inserting the alias arguments if any
        if [[ -n $alias_args ]]; then
            local compl_func="${new_completion/#* -F /}"; compl_func="${compl_func%% *}"
            # avoid recursive call loops by ignoring our own functions
            if [[ "${compl_func#_$namespace::}" == $compl_func ]]; then
                local compl_wrapper="_${namespace}::${alias_name}"
                    echo "function $compl_wrapper {
                        (( COMP_CWORD += ${#alias_arg_words[@]} ))
                        COMP_WORDS=($alias_cmd $alias_args \${COMP_WORDS[@]:1})
                        (( COMP_POINT -= \${#COMP_LINE} ))
                        COMP_LINE=\${COMP_LINE/$alias_name/$alias_cmd $alias_args}
                        (( COMP_POINT += \${#COMP_LINE} ))
                        $compl_func
                    }" >> "$tmp_file"
                    new_completion="${new_completion/ -F $compl_func / -F $compl_wrapper }"
            fi
        fi

        # replace completion trigger by alias
        new_completion="${new_completion% *} $alias_name"
        echo "$new_completion" >> "$tmp_file"
    done < <(alias -p | sed -Ene "s/$alias_regex/\1 '\2' '\3'/p")
    source "$tmp_file" && rm -f "$tmp_file"
}; alias_completion

对于简单的(仅命令,没有参数)别名,它将为别名分配原始的完成函数。对于带有参数的别名,它将创建一个包装器函数,该函数将多余的参数插入原始的完成函数中。

与它演变而来的脚本不同,该函数尊重别名命令及其参数的引号(但前者必须与完成命令匹配,并且不能嵌套),并且应该可靠地将别名过滤到命令列表管道(被跳过,因为如果不重新创建完整的shell命令行解析逻辑就无法找出要完成的操作)。

用法

将代码另存为shell脚本文件,然后将其保存为shell脚本文件或将其批发(或相关的点文件)复制为。重要的是在设置完bash完成和别名定义之后调用该函数(上面的代码本着“源代码和忘记”的精神立即在其定义之后调用该函数,但是如果可以,则可以将调用移到任何下游更适合您)。如果您不希望在函数退出后在您的环境中使用该函数,则可以在调用它之后添加它。.bashrcunset -f alias_completion

笔记

如果您使用的是bash4.1或更高版本,并且使用动态加载的补全,则脚本将尝试加载所有别名命令的补全,以便它可以为您的别名构建包装函数。


1
我将如何安装该脚本?
Der Hochstapler,2012年

1
@OliverSalzburg: bash完成之后,至关重要的是,您必须在其中一个shell配置文件中对其进行处理-可能会做到~/.bashrc。可以将其存储为shell脚本文件并提供其源(. /path/to/alias_completion.sh),也可以批发并复制并粘贴代码。
kopischke 2012年

1
@OliverSalzburg:添加了使用说明(没有立即通知您您不是OP)。
kopischke 2012年

1
@kopischke看到这个问题 -显然,/usr/share/bash-completion/completions/只有用户第一次点击时,它们下面的文件才被加载[TAB]。因此,即使从中加载了函数~/.bashrc,也不会为其中的命令别名生成补全。确保complete -p工作正常后apt-getapt-cache我将您的功能复制粘贴到终端,并且工作正常。
jamadagni 2014年

1
@kopischke因此,我不确定如何强制所有动态加载的完成文件的来源,甚至不建议这样做。目前,我已经将生成的完成文件从复制/tmp到,~/.bash_completion并在其开头手动添加了相关source /usr/share/bash-completion/completions/条目(分别用于apt-getapt-cache- apt-{cache,get}无效)。
jamadagni 2014年

4

是否可以通过通用/编程方式使我所有的完成脚本与别名一起使用?

是的,这是完全别名项目,可以完全解决您的问题。它无需使用即可提供通用的和程序化的别名补全eval


2

对于那些正在寻找这种方法的人,这是手动方法。

首先,查找原始的完成命令。例:

$ complete | grep git

complete -o bashdefault -o default -o nospace -F __git_wrap__git_main git

现在将它们添加到您的启动脚本中(例如〜/ .bashrc):

# load dynamically loaded completion functions (may not be required)
_completion_loader git

# copy the original statement, but replace the last command (git) with your alias (g)
complete -o bashdefault -o default -o nospace -F __git_wrap__git_main g

来源:https : //superuser.com/a/1004334

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.