Compare commits

...

3 Commits

Author SHA1 Message Date
Kazuki Sakamoto 3c543a1c60 MacVim Snapshot 133
Binary targets macOS 10.8+

- Vim patch 8.0.0596
- Fix mvim script for file path containing space

Script interfaces have compatibility with these versions

- Lua 5.2
- Perl 5.16
- Python2 2.7
- Python3 3.6.1
- Ruby 2.0
2017-05-08 08:22:11 -07:00
Kazuki Sakamoto 03fa8507c9 Merge pull request #504 from Telling/mvim-fix
fix expansion issue in mvim
2017-05-07 21:27:03 -07:00
Stephan Telling d62b707304 fix bash expansion issue in mvim 2017-05-07 19:34:21 +02:00
2 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1255,7 +1255,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>132</string>
<string>133</string>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
+6 -6
View File
@@ -11,22 +11,22 @@
#
# Find Vim executable
if [ -L $0 ]; then
if [ -L "$0" ]; then
# readlink -f
curdir=`pwd -P`
self_path=$0
cd `dirname $self_path`
while [ -L $self_path ]; do
cd "`dirname $self_path`"
while [ -L "$self_path" ]; do
self_path=`readlink $self_path`
cd `dirname $self_path`
cd "`dirname $self_path`"
self_path=`basename $self_path`
done
binary="`pwd -P`/../MacOS/Vim"
cd $curdir
cd "$curdir"
else
binary="`dirname "$0"`/../MacOS/Vim"
fi
if ! [ -x $binary ]; then
if ! [ -x "$binary" ]; then
echo "Sorry, cannot find Vim executable."
exit 1
fi