aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/vim.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sh/shrc.d/vim.sh')
-rw-r--r--sh/shrc.d/vim.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/sh/shrc.d/vim.sh b/sh/shrc.d/vim.sh
deleted file mode 100644
index e9174082..00000000
--- a/sh/shrc.d/vim.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-# If Vim exists on the system, use it instead of ex, vi, and view
-command -v vim >/dev/null 2>&1 || return
-
-# Define functions proper
-ex() {
- vim -e "$@"
-}
-vi() {
- vim "$@"
-}
-view() {
- vim -R "$@"
-}