aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-05-31 15:53:29 +1200
committerTom Ryder <tom@sanctum.geek.nz>2015-05-31 15:53:29 +1200
commit87ab391ec6b8d6a7358c3d6225847de9e44d47fe (patch)
tree913760a4df4822a71eaf1e11e07931903600405b
parentAvoid condition definition of functions (diff)
downloaddotfiles-87ab391ec6b8d6a7358c3d6225847de9e44d47fe.tar.gz
dotfiles-87ab391ec6b8d6a7358c3d6225847de9e44d47fe.zip
Remove unneeded command prefixes
-rw-r--r--bash/bashrc.d/vim.bash6
1 files changed, 3 insertions, 3 deletions
diff --git a/bash/bashrc.d/vim.bash b/bash/bashrc.d/vim.bash
index 4584ae1d..ccfbcb01 100644
--- a/bash/bashrc.d/vim.bash
+++ b/bash/bashrc.d/vim.bash
@@ -5,12 +5,12 @@ fi
# Define functions proper
ex() {
- command vim -e "$@"
+ vim -e "$@"
}
vi() {
- command vim "$@"
+ vim "$@"
}
view() {
- command vim -R "$@"
+ vim -R "$@"
}