私は TAB オートコンプリートの動作方法を変更する操作を実行しましたが、これは more コマンドに対してのみです。
他のすべてのコマンドは可能な補完をリストしますが、more コマンドは一組の単一引用符内にすべての可能性をリストします。
/etcで次のように入力すると
more pass<TAB>
結果は
$ more 'passwdqc.conf
passwd
passwd-'
タイピング
less pass<TAB>
結果は
$ less passwd
passwd passwd- passwdqc.conf
more
の自動補完が のように動作するようにリセットするにはどうすればよいでしょうかless
?
編集:
$ shopt -u
autocd off
cdable_vars off
cdspell off
checkhash off
checkjobs off
compat31 off
compat32 off
compat40 off
compat41 off
direxpand off
dirspell off
dotglob off
execfail off
extdebug off
failglob off
globstar off
gnu_errfmt off
histreedit off
histverify off
hostcomplete off
huponexit off
lastpipe off
lithist off
login_shell off
mailwarn off
no_empty_cmd_completion off
nocaseglob off
nocasematch off
nullglob off
restricted_shell off
shift_verbose off
xpg_echo off
$ set -o
allexport off
braceexpand on
emacs on
errexit off
errtrace off
functrace off
hashall on
histexpand on
history on
ignoreeof off
interactive-comments on
keyword off
monitor on
noclobber off
noexec off
noglob off
nolog off
notify off
nounset off
onecmd off
physical off
pipefail off
posix off
privileged off
verbose off
vi off
xtrace off
答え1
再現できるもの:
_comp_foo() { compopt -o filenames -o nospace; COMPREPLY=("$(compgen -f -- "$2")"); }
complete -F _comp_foo foo
cd /etc
と入力しますfoo pass
。Tab次のような画面が表示されます。
foo 'passwd
passwd-'
:)
more のオートコンプリートが less のように動作するようにリセットするにはどうすればよいでしょうか?
bashの補完をリセットするにはNAME
、complete -r NAME
help complete
言う:
-r - 各NAMEの補完指定を削除します。NAMEが指定されていない場合は、すべての補完指定を削除します。
既存の補完を再利用できます:
_completion_loader less 2>/dev/null # for bash-completion >= 1.9, bash >= 4.1
eval $(complete -p less | sed 's/ less$/ more/')