web-dev-qa-db-ja.com

エイリアスのタブ補完を実行するようにbashを取得するにはどうすればよいですか?

たくさんのbash補完スクリプトをセットアップしました(主にbash-itといくつかの手動セットアップを使用しています)。

また、git checkoutgcoのような一般的なタスクのエイリアスをたくさん設定しています。現在、git checkout dと入力できますTabdevelopは完了ですが、gco dと入力するとTab 完了しません。

これは、完了スクリプトがgitで完了していて、gcoが表示されないためと考えています。

総称的/プログラム的に、すべての完了スクリプトをエイリアスで機能させる方法はありますか?エイリアスの種類を使用するときに完了できないと、エイリアスの目的が無効になります。

47
dstarh

このスタックオーバーフローの回答 とこの buntuフォーラムディスカッションスレッド から変更された次のコードは、定義されたすべてのエイリアスの補完を追加します。

# 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

単純な(コマンドのみ、引数なし)エイリアスの場合、元の補完関数がエイリアスに割り当てられます。引数を持つエイリアスの場合、追加の引数を元の補完関数に挿入するラッパー関数を作成します。

進化したスクリプトとは異なり、この関数は、エイリアスコマンドとその引数の両方の引用符を尊重します(ただし、前者は補完コマンドで一致させる必要があり、ネストすることはできません)。エイリアスは確実にコマンドリストおよびpipes(完全なシェルコマンドを再作成しないと何を完了するかを見つけることができないため、スキップされます。行解析ロジック)。

使用法

コードをシェルスクリプトファイルとして保存して source を入れるか、関数のホールセールを.bashrc(または 関連するドットファイル )にコピーします。重要なことは、bashの完了とエイリアスの定義の両方がセットアップされた後に関数を呼び出すことです(上のコードは、その定義の直後に関数を呼び出します。 「ソースアンドフォーゲット」の精神ですが、より適切であれば、通話を下流のどこにでも移動できます。関数が終了した後、環境で関数が必要ない場合は、呼び出し後にunset -f alias_completionを追加できます。

ノート

bash 4.1以降を使用していて、動的に読み込まれる補完を使用する場合、スクリプトはエイリアスコマンドのすべての補完を読み込み、エイリアスのラッパー関数を構築できるようにします。

43
kopischke

すべての完了スクリプトを総称的/プログラム的にエイリアスで機能させる方法はありますか?

はい、これが問題を正確に解決する complete-alias プロジェクトです。 evalを使用せずに、一般的なプログラムによるエイリアス補完を提供します。

4
Cyker

これを探している人にとって、これは手動の方法です。

まず、元の補完コマンドを調べます。例:

$ 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

2
wisbucky