Disable bash editing configuration

This commit is contained in:
Martin Blazik
2022-07-28 06:25:55 +02:00
parent b3d376dfb8
commit 40b5d5ab1c
2 changed files with 17 additions and 14 deletions

View File

@@ -1,14 +0,0 @@
# https://forum.root.cz/index.php?topic=16821.0
# Override some functionality from bash-completion
_expand() { :; }
__expand_tilde_by_ref() { :; }
_filedir_xspec () { :; }
shopt -s direxpand
#shopt -u complete_fullquote
#shopt -s direxpand
#shopt -u progcomp
#shopt -s cdable_vars

17
rc/03-bash.sh.skip Normal file
View File

@@ -0,0 +1,17 @@
function auto_expand() {
# https://forum.root.cz/index.php?topic=16821.0
# Override some functionality from bash-completion
_expand() { :; }
__expand_tilde_by_ref() { :; }
_filedir_xspec () { :; }
shopt -s direxpand
#shopt -u complete_fullquote
#shopt -s direxpand
#shopt -u progcomp
#shopt -s cdable_vars
}
auto_expand()