aboutsummaryrefslogtreecommitdiff
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
parent66f713050c69bf88706d8d17ed2e32c73b12ee57 (diff)
downloadvim-main.tar.bz2
vim-main.zip
fixed: find-shell scriptHEADmain
-rw-r--r--plugin/max-find-shell.vim (renamed from plugin/max-find-bash.vim)2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/max-find-bash.vim b/plugin/max-find-shell.vim
index 29cb7c3..778f0fb 100644
--- a/plugin/max-find-bash.vim
+++ b/plugin/max-find-shell.vim
@@ -7,5 +7,5 @@ if filereadable("/bin/bash")
7elseif filereadable("/usr/local/bin/bash") 7elseif filereadable("/usr/local/bin/bash")
8 set shell=/usr/local/bin/bash 8 set shell=/usr/local/bin/bash
9elseif has("win32") 9elseif has("win32")
10 set shell = 'cmd.exe' 10 set shell="cmd.exe"
11endif 11endif
..