Added bash command wrapping (expand git numbered args for common bash commands, such as cp, mv, rm, etc.). Also set kb shortcuts to true by default.

This commit is contained in:
Nathan Broadbent
2012-01-22 00:40:56 +08:00
parent 1ab0e75746
commit 241654930e
2 changed files with 14 additions and 4 deletions

View File

@@ -155,11 +155,10 @@ _bind(){
fi
}
# If keyboard shortcuts are enabled
# Keyboard shortcuts for commits
if [[ "$git_keyboard_shortcuts_enabled" = "true" ]]; then
case "$TERM" in
xterm*|rxvt*)
_bind "$git_status_shortcuts_keys" " git_status_shortcuts\n"
_bind "$git_commit_all_keys" " git_commit_all\n"
_bind "$git_add_and_commit_keys" "\e[1~ git_add_and_commit \n"
@@ -170,3 +169,10 @@ if [[ "$git_keyboard_shortcuts_enabled" = "true" ]]; then
esac
fi
# Bash command wrapping
# (Tested with RVM's cd() wrapper)
if [[ "$bash_command_wrapping_enabled" = "true" ]]; then
for cmd in vim cd rm cp mv ln; do
alias $cmd="exec_git_expand_args $cmd"
done
fi