aboutsummaryrefslogtreecommitdiff
path: root/plugin/max-find-bash.vim
diff options
context:
space:
mode:
authorMax Christian Pohle2023-10-23 12:27:38 +0200
committerMax Christian Pohle2023-10-23 12:27:38 +0200
commitf3eb203b4ad79090e36982e7b417c0cf0de52646 (patch)
treeb924f1d54b3675168e25c7b5e24bcae3ce7bbd33 /plugin/max-find-bash.vim
parent66f713050c69bf88706d8d17ed2e32c73b12ee57 (diff)
downloadvim-f3eb203b4ad79090e36982e7b417c0cf0de52646.tar.bz2
vim-f3eb203b4ad79090e36982e7b417c0cf0de52646.zip
fixed: find-shell script
Diffstat (limited to 'plugin/max-find-bash.vim')
-rw-r--r--plugin/max-find-bash.vim11
1 files changed, 0 insertions, 11 deletions
diff --git a/plugin/max-find-bash.vim b/plugin/max-find-bash.vim
deleted file mode 100644
index 29cb7c3..0000000
--- a/plugin/max-find-bash.vim
+++ /dev/null
@@ -1,11 +0,0 @@
1"=======================================================================================================================
2" SHELL:
3" Many scripts rely on bash. We help to find the bash binary
4"=======================================================================================================================
5if filereadable("/bin/bash")
6 set shell=/bin/bash
7elseif filereadable("/usr/local/bin/bash")
8 set shell=/usr/local/bin/bash
9elseif has("win32")
10 set shell = 'cmd.exe'
11endif
..