Por que “bind ~ / .inputrc” faz com que minha tecla barra direita ('/') seja desativada até que eu faça o login novamente?

1

Abaixo está o meu arquivo .inputrc . Por que, depois de chamar bind ~/.inputrc , minha barra de barra superior direita está desabilitada, até que eu faça logout e login novamente?

# 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
    
por aliteralmind 11.01.2015 / 23:30

1 resposta

2

Porque bind ~/.inputrc é um comando para ligar a sequência de chaves /home/aliteralmind/inputrc , em que /home/aliteralmind é o seu diretório inicial. Isso liga / a uma chave de prefixo para a qual nenhuma ligação é definida, portanto, pressionar a tecla / depois não faz nada.

Para ler um arquivo readline do bash, use

bind -f ~/.inputrc

Este exemplo em particular não é muito útil, já que ~/.inputrc é lido quando o bash é iniciado. O único uso é carregar suas novas ligações se você alterar o arquivo (isso não removerá ligações que você removeu).

    
por 12.01.2015 / 00:08

Tags