]> git.pld-linux.org Git - packages/vim.git/blobdiff - vim-tutor-lessdeps.patch
Up to 8.2.3570.
[packages/vim.git] / vim-tutor-lessdeps.patch
index 5ba844272bd4f79942505414c2930e4f2568232a..7adebd8bd91739ea19389ed3a48b8dc8cc64da5d 100644 (file)
@@ -1,5 +1,5 @@
---- vim71/src/vimtutor~        2008-05-29 22:14:57.000000000 +0300
-+++ vim71/src/vimtutor 2008-05-29 22:24:29.118736307 +0300
+--- vim-8.2.3570/src/vimtutor.orig     2021-11-02 20:05:13.183015908 +0100
++++ vim-8.2.3570/src/vimtutor  2021-11-02 20:07:12.539682552 +0100
 @@ -9,14 +9,12 @@
  # When this fails or no argument was given, it tries using 'v:lang'
  # When that also fails, it uses the English version.
 -seq="vim vim81 vim80 vim8 vim74 vim73 vim72 vim71 vim70 vim7 vim6 vi"
 +# Vim could be called "vim" or "vi".
 +seq="/usr/bin/vim.heavy /usr/bin/vim /bin/vi"
- if test "$1" = "-g"; then 
-   # Try to use the GUI version of Vim if possible, it will fall back
-   # on Vim if Gvim is not installed.
--  seq="gvim gvim81 gvim80 gvim8 gvim74 gvim73 gvim72 gvim71 gvim70 gvim7 gvim6 $seq"
-+  seq="/usr/bin/gvim /usr/bin/gvim.heavy /usr/bin/gvim.athena /usr/bin/gvim.gnome /usr/bin/gvim.gtk /usr/bin/gvim.motif $seq"
-   shift
+ if test "$1" = "-g"; then
+     # Try to use the GUI version of Vim if possible, it will fall back
+     # on Vim if Gvim is not installed.
+-    seq="gvim gvim81 gvim80 gvim8 gvim74 gvim73 gvim72 gvim71 gvim70 gvim7 gvim6 $seq"
++    seq="/usr/bin/gvim /usr/bin/gvim.heavy /usr/bin/gvim.athena /usr/bin/gvim.gnome /usr/bin/gvim.gtk /usr/bin/gvim.motif $seq"
+     shift
  fi
  
-@@ -53,8 +51,7 @@
+@@ -53,8 +51,7 @@ export TUTORCOPY
  trap "rm -rf $TODELETE" 0 1 2 3 9 11 13 15
  
  for i in $seq; do
--      testvim=`which $i 2>/dev/null`
--      if test -f "$testvim"; then
-+      if test -x "$i"; then
-               VIM=$i
-               break
-       fi
+-    testvim=$(which $i 2>/dev/null)
+-    if test -f "$testvim"; then
++    if test -x "$i"; then
+         VIM=$i
+         break
+     fi
This page took 0.026038 seconds and 4 git commands to generate.