aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/vim.bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash/bashrc.d/vim.bash')
-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 "$@"
}