「bind ~/.inputrc」が再度ログインするまで、右スラッシュキー(「/」)が無効になるのはなぜですか?

「bind ~/.inputrc」が再度ログインするまで、右スラッシュキー(「/」)が無効になるのはなぜですか?

以下は私の.inputrcファイルです。を呼び出した後bind ~/.inputrcにログアウトしてから再度ログインするまで、右スラッシュキーが無効になるのはなぜですか?

# Key-bindings for the command-line editor.

# Ask before displaying >50 items
# Since $WINDIR $PATH var can be in $PATH, this could list
# all window exectables in C:\WINDOWS
set completion-query-items 50

# Ignore case for the command-line-completion functionality
# on:  default to a Windows style console
# off: default to a *nix style console
set completion-ignore-case on

# none, visible or audible
set bell-style audible

# disable/enable 8bit input
set meta-flag on
set input-meta on
set output-meta off
set convert-meta on

# visible-stats
# Append a mark according to the file type in a listing
set visible-stats off
set mark-directories on

# Show all instead of beeping first
set show-all-if-ambiguous on

"\e[1~": beginning-of-line       #HOME
"\e[4~": end-of-line             #END
"\e[A":history-search-backward   #UP
"\e[B":history-search-forward    #DOWN

ベストアンサー1

ホームディレクトリはキーシーケンスbind ~/.inputrcにバインドされたコマンドであるためです。定義されたバインディングがないプレフィックスキーにバインドされるため、このキーを押しても何もしません。/home/aliteralmind/inputrc/home/aliteralmind//

Bashからreadlineファイルを読み取るには、次のようにします。

bind -f ~/.inputrc

しかし、この特定の例は、~/.inputrcbashの起動時に読み取られるため、あまり役に立ちません。唯一の目的は、ファイルを変更するときに新しいバインディングをロードすることです(削除されたバインディングは削除されません)。

おすすめ記事