Disable bash command wrapping until issues are fixed with escaped characters (i.e. whitespace in filenames)
This commit is contained in:
@@ -172,14 +172,14 @@ fi
|
|||||||
|
|
||||||
# Bash command wrapping
|
# Bash command wrapping
|
||||||
# (Works fine with RVM's cd() wrapper)
|
# (Works fine with RVM's cd() wrapper)
|
||||||
if [[ "$bash_command_wrapping_enabled" = "true" ]]; then
|
#~ if [[ "$bash_command_wrapping_enabled" = "true" ]]; then
|
||||||
for cmd in vim cat cd rm cp mv ln; do
|
#~ for cmd in vim cat cd rm cp mv ln; do
|
||||||
alias $cmd="exec_git_expand_args $cmd"
|
#~ alias $cmd="exec_git_expand_args $cmd"
|
||||||
done
|
#~ done
|
||||||
|
#~
|
||||||
if [[ "$(type ls)" =~ "--color=auto" ]]; then
|
#~ if [[ "$(type ls)" =~ "--color=auto" ]]; then
|
||||||
alias ls="exec_git_expand_args ls --color=auto"
|
#~ alias ls="exec_git_expand_args ls --color=auto"
|
||||||
else
|
#~ else
|
||||||
alias ls="exec_git_expand_args ls"
|
#~ alias ls="exec_git_expand_args ls"
|
||||||
fi
|
#~ fi
|
||||||
fi
|
#~ fi
|
||||||
|
|||||||
Reference in New Issue
Block a user