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
|
||||
# (Works fine with RVM's cd() wrapper)
|
||||
if [[ "$bash_command_wrapping_enabled" = "true" ]]; then
|
||||
for cmd in vim cat cd rm cp mv ln; do
|
||||
alias $cmd="exec_git_expand_args $cmd"
|
||||
done
|
||||
|
||||
if [[ "$(type ls)" =~ "--color=auto" ]]; then
|
||||
alias ls="exec_git_expand_args ls --color=auto"
|
||||
else
|
||||
alias ls="exec_git_expand_args ls"
|
||||
fi
|
||||
fi
|
||||
#~ if [[ "$bash_command_wrapping_enabled" = "true" ]]; then
|
||||
#~ for cmd in vim cat cd rm cp mv ln; do
|
||||
#~ alias $cmd="exec_git_expand_args $cmd"
|
||||
#~ done
|
||||
#~
|
||||
#~ if [[ "$(type ls)" =~ "--color=auto" ]]; then
|
||||
#~ alias ls="exec_git_expand_args ls --color=auto"
|
||||
#~ else
|
||||
#~ alias ls="exec_git_expand_args ls"
|
||||
#~ fi
|
||||
#~ fi
|
||||
|
||||
Reference in New Issue
Block a user