Date: Tuesday, February 21, 2023 @ 18:24:08
  Author: anthraxx
Revision: 469407

archrelease: copy trunk to extra-x86_64

Added:
  vim/repos/extra-x86_64/PKGBUILD
    (from rev 469406, vim/trunk/PKGBUILD)
  vim/repos/extra-x86_64/archlinux.vim
    (from rev 469406, vim/trunk/archlinux.vim)
  vim/repos/extra-x86_64/sh.vim.patch
    (from rev 469406, vim/trunk/sh.vim.patch)
  vim/repos/extra-x86_64/vimdoc.hook
    (from rev 469406, vim/trunk/vimdoc.hook)
  vim/repos/extra-x86_64/vimrc
    (from rev 469406, vim/trunk/vimrc)
Deleted:
  vim/repos/extra-x86_64/PKGBUILD
  vim/repos/extra-x86_64/archlinux.vim
  vim/repos/extra-x86_64/vimdoc.hook
  vim/repos/extra-x86_64/vimrc

---------------+
 PKGBUILD      |  414 ++++++++++++++++++++++++++++----------------------------
 archlinux.vim |   92 ++++++------
 sh.vim.patch  |   55 +++++++
 vimdoc.hook   |   22 +-
 vimrc         |   36 ++--
 5 files changed, 339 insertions(+), 280 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2023-02-21 18:24:00 UTC (rev 469406)
+++ PKGBUILD    2023-02-21 18:24:08 UTC (rev 469407)
@@ -1,205 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Maintainer: Morten Linderud <[email protected]>
-# Contributor: Anatol Pomozov <[email protected]>
-# Contributor: Thomas Dziedzic <[email protected]>
-# Contributor: Jan "heftig" Steffens <[email protected]>
-# Contributor: tobias [ tobias at archlinux org ]
-# Contributor: Daniel J Griffiths <[email protected]>
-# Contributor: Christian Hesse <[email protected]>
-# Contributor: Eli Schwartz <[email protected]>
-
-pkgbase=vim
-pkgname=('vim' 'gvim' 'vim-runtime')
-pkgver=9.0.1302
-_versiondir=90
-pkgrel=1
-pkgdesc='Vi Improved, a highly configurable, improved version of the vi text 
editor'
-url='https://www.vim.org'
-arch=('x86_64' 'x86_64_v3')
-license=('custom:vim')
-makedepends=('glibc' 'libgcrypt' 'gpm' 'python' 'ruby' 'libxt' 'gtk3' 'lua'
-             'gawk' 'tcl' 'zlib' 'libcanberra')
-source=(https://github.com/vim/vim/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz
-        vimrc
-        archlinux.vim
-        vimdoc.hook)
-sha256sums=('13a135d8d4da50df30a790e1a10d8694af5f34d12fcba551971d43dd08e03e18'
-            'b16e85e457397ab2043a7ee0a3c84307c6b4eac157fd0b721694761f25b3ed5b'
-            'cc3d931129854c298eb22e993ec14c2ad86cc1e70a08a64496f5e06559289972'
-            '8e9656934d9d7793063230d15a689e10455e6db9b9fe73afa0f294792795d8ae')
-sha512sums=('bdce1f15c5fbd65aaed99980e470b62f28f82fbe37a5e0ba8d110a3eabc91d3710467d62ffb337731e441b577c57ae8549d34bc6c5089352998272a064ab9873'
-            
'4b5bed0813f22af9e158ea9aa56a4a9862dd786ba2d201f20159ccf652da6190164aaed0b6b7217d578f7b25c33a8adcc307bfcf3caa8d173a7ff29e2a00fee7'
-            
'fe091d289d876f45319c898f6021ef86d6a238b540c225a279c46efc5c36fa7d868cd0cee73a111811c4be90df160f85340bb251be3a437727dbe5c699950363'
-            
'a02ad0d66f300160911aeb81d8886c6c558436ac4ee3fcd161dd65c6b1e5d1f41b9005a7f5bb5ba68d57027fc1c8e43daabf055bd6207fb5a216a67f758df8d1')
-
-prepare() {
-  (cd vim-${pkgver}/src
-    # define the place for the global (g)vimrc file (set to /etc/vimrc)
-    sed -E 's|^.*(#define SYS_.*VIMRC_FILE.*").*$|\1|g' -i feature.h
-    sed -E 's|^.*(#define VIMRC_FILE.*").*$|\1|g' -i feature.h
-    autoconf
-  )
-  cp -a vim-${pkgver} gvim-${pkgver}
-}
-
-build() {
-  echo "Building vim..."
-  (cd vim-${pkgver}
-    ./configure \
-      --prefix=/usr \
-      --localstatedir=/var/lib/vim \
-      --with-features=huge \
-      --with-compiledby='Arch Linux' \
-      --enable-gpm \
-      --enable-acl \
-      --with-x=no \
-      --disable-gui \
-      --enable-multibyte \
-      --enable-cscope \
-      --enable-netbeans \
-      --enable-perlinterp=dynamic \
-      --enable-python3interp=dynamic \
-      --enable-rubyinterp=dynamic \
-      --enable-luainterp=dynamic \
-      --enable-tclinterp=dynamic \
-      --disable-canberra
-    make
-  )
-
-  echo "Building gvim..."
-  (cd gvim-${pkgver}
-    ./configure \
-      --prefix=/usr \
-      --localstatedir=/var/lib/vim \
-      --with-features=huge \
-      --with-compiledby='Arch Linux' \
-      --enable-gpm \
-      --enable-acl \
-      --with-x=yes \
-      --enable-gui=gtk3 \
-      --enable-multibyte \
-      --enable-cscope \
-      --enable-netbeans \
-      --enable-perlinterp=dynamic \
-      --enable-python3interp=dynamic \
-      --enable-rubyinterp=dynamic \
-      --enable-luainterp=dynamic \
-      --enable-tclinterp=dynamic \
-      --enable-canberra
-    make
-  )
-}
-
-check() {
-  cd vim-${pkgver}
-  TERM=xterm make -j1 test
-}
-
-package_vim-runtime() {
-  pkgdesc+=' (shared runtime)'
-  optdepends=('sh: support for some tools and macros'
-              'python: demoserver example tool'
-              'gawk: mve tools upport')
-  backup=('etc/vimrc')
-
-  cd vim-${pkgver}
-
-  make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install
-  # man and bin files belong to 'vim'
-  rm -r "${pkgdir}"/usr/share/man/ "${pkgdir}"/usr/bin/
-
-  # Don't forget logtalk.dict
-  install -Dm 644 runtime/ftplugin/logtalk.dict \
-    "${pkgdir}"/usr/share/vim/vim${_versiondir}/ftplugin/logtalk.dict
-
-  # rc files
-  install -Dm 644 "${srcdir}"/vimrc "${pkgdir}"/etc/vimrc
-  install -Dm 644 "${srcdir}"/archlinux.vim \
-    "${pkgdir}"/usr/share/vim/vimfiles/archlinux.vim
-
-  # no desktop files and icons
-  rm -r "${pkgdir}"/usr/share/{applications,icons}
-
-  # license
-  install -dm 755 "${pkgdir}"/usr/share/licenses/vim-runtime
-  ln -s /usr/share/vim/vim${_versiondir}/doc/uganda.txt \
-    "${pkgdir}"/usr/share/licenses/vim-runtime/license.txt
-
-  # pacman hook for documentation helptags
-  install -Dm 644 "${srcdir}"/vimdoc.hook 
"${pkgdir}"/usr/share/libalpm/hooks/vimdoc.hook
-}
-
-package_vim() {
-  # TODO: move perl back into optdeps after --enable-perlinterp=dynamic
-  #       starts working again (https://github.com/vim/vim/issues/10512)
-  depends=("vim-runtime=${pkgver}-${pkgrel}" 'gpm' 'acl' 'glibc' 'libgcrypt' 
'zlib' 'perl')
-  optdepends=('python: Python language support'
-              'ruby: Ruby language support'
-              'lua: Lua language support'
-              #'perl: Perl language support'
-              'tcl: Tcl language support')
-  conflicts=('gvim' 'vim-minimal')
-  provides=('xxd' 'vim-minimal' 'vim-plugin-runtime')
-  replaces=('vim-minimal')
-
-  cd vim-${pkgver}
-  make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install
-
-  # provided by (n)vi in core
-  rm "${pkgdir}"/usr/bin/{ex,view}
-
-  # delete some manpages
-  find "${pkgdir}"/usr/share/man -type d -name 'man1' 2>/dev/null | \
-    while read _mandir; do
-    cd "${_mandir}"
-    rm -f ex.1 view.1 # provided by (n)vi
-    rm -f evim.1    # this does not make sense if we have no GUI
-  done
-
-  # Runtime provided by runtime package
-  rm -r "${pkgdir}"/usr/share/vim
-
-  # remove gvim.desktop as not included
-  rm "${pkgdir}"/usr/share/applications/gvim.desktop
-
-  # license
-  install -Dm 644 runtime/doc/uganda.txt \
-    "${pkgdir}"/usr/share/licenses/${pkgname}/license.txt
-}
-
-package_gvim() {
-  pkgdesc+=' (with advanced features, such as a GUI)'
-  # TODO: move perl back into optdeps after --enable-perlinterp=dynamic
-  #       starts working again (https://github.com/vim/vim/issues/10512)
-  depends=("vim-runtime=${pkgver}-${pkgrel}" 'gpm' 'libxt' 'gtk3' 'glibc' 
'libgcrypt'
-           'zlib' 'libcanberra' 'perl')
-  optdepends=('python: Python language support'
-              'ruby: Ruby language support'
-              'lua: Lua language support'
-              #'perl: Perl language support'
-              'tcl: Tcl language support')
-  provides=("vim=${pkgver}-${pkgrel}" "xxd" 'vim-plugin-runtime')
-  conflicts=('vim-minimal' 'vim')
-
-  cd gvim-${pkgver}
-  make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install
-
-  # provided by (n)vi in core
-  rm "${pkgdir}"/usr/bin/{ex,view}
-
-  # delete some manpages
-  find "${pkgdir}"/usr/share/man -type d -name 'man1' 2>/dev/null | \
-    while read _mandir; do
-    cd "${_mandir}"
-    rm -f ex.1 view.1 # provided by (n)vi
-  done
-
-  # need to remove since this is provided by vim-runtime
-  rm -r "${pkgdir}"/usr/share/vim
-
-  # license
-   install -Dm 644 runtime/doc/uganda.txt \
-    "${pkgdir}"/usr/share/licenses/${pkgname}/license.txt
-}
-
-# vim: ts=2 sw=2 et:

Copied: vim/repos/extra-x86_64/PKGBUILD (from rev 469406, vim/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2023-02-21 18:24:08 UTC (rev 469407)
@@ -0,0 +1,209 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Maintainer: Morten Linderud <[email protected]>
+# Contributor: Anatol Pomozov <[email protected]>
+# Contributor: Thomas Dziedzic <[email protected]>
+# Contributor: Jan "heftig" Steffens <[email protected]>
+# Contributor: tobias [ tobias at archlinux org ]
+# Contributor: Daniel J Griffiths <[email protected]>
+# Contributor: Christian Hesse <[email protected]>
+# Contributor: Eli Schwartz <[email protected]>
+
+pkgbase=vim
+pkgname=('vim' 'gvim' 'vim-runtime')
+pkgver=9.0.1337
+_versiondir=90
+pkgrel=1
+pkgdesc='Vi Improved, a highly configurable, improved version of the vi text 
editor'
+url='https://www.vim.org'
+arch=('x86_64' 'x86_64_v3')
+license=('custom:vim')
+makedepends=('glibc' 'libgcrypt' 'gpm' 'python' 'ruby' 'libxt' 'gtk3' 'lua'
+             'gawk' 'tcl' 'zlib' 'libcanberra')
+source=(https://github.com/vim/vim/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz
+        vimrc
+        archlinux.vim
+        vimdoc.hook
+        sh.vim.patch)
+sha256sums=('53edbd7503e1d225762507421e4d3f28d5aa7c6b1ea23e7c0cbf6133681d846b'
+            'b16e85e457397ab2043a7ee0a3c84307c6b4eac157fd0b721694761f25b3ed5b'
+            'cc3d931129854c298eb22e993ec14c2ad86cc1e70a08a64496f5e06559289972'
+            '8e9656934d9d7793063230d15a689e10455e6db9b9fe73afa0f294792795d8ae'
+            '39a2f937b95f3fad564bceb6998a8ffcdc1ad1c35cf1ab3c97dbc6c7e97a51ec')
+sha512sums=('ed847ad5f8ce974d95bf137f14fe04af9cfb07c4fec189c67e62add932025ab512d3a8cb44e3245e8f72e2b50644b53bb4ee61f921293615f9fa09a4aa7f99dd'
+            
'4b5bed0813f22af9e158ea9aa56a4a9862dd786ba2d201f20159ccf652da6190164aaed0b6b7217d578f7b25c33a8adcc307bfcf3caa8d173a7ff29e2a00fee7'
+            
'fe091d289d876f45319c898f6021ef86d6a238b540c225a279c46efc5c36fa7d868cd0cee73a111811c4be90df160f85340bb251be3a437727dbe5c699950363'
+            
'a02ad0d66f300160911aeb81d8886c6c558436ac4ee3fcd161dd65c6b1e5d1f41b9005a7f5bb5ba68d57027fc1c8e43daabf055bd6207fb5a216a67f758df8d1'
+            
'4a5a70ad2b967e63365ea327cdc310f4cff1cb90b8ed0720c643c4ff622409a8b6d01ea1868ea1846dcb0e6497f0443610076f51242f3fe924c56ea3d7db69c2')
+
+prepare() {
+  patch -Np1 --directory vim-${pkgver} < "${srcdir}/sh.vim.patch"
+  (cd vim-${pkgver}/src
+    # define the place for the global (g)vimrc file (set to /etc/vimrc)
+    sed -E 's|^.*(#define SYS_.*VIMRC_FILE.*").*$|\1|g' -i feature.h
+    sed -E 's|^.*(#define VIMRC_FILE.*").*$|\1|g' -i feature.h
+    autoconf
+  )
+  cp -a vim-${pkgver} gvim-${pkgver}
+}
+
+build() {
+  echo "Building vim..."
+  (cd vim-${pkgver}
+    ./configure \
+      --prefix=/usr \
+      --localstatedir=/var/lib/vim \
+      --with-features=huge \
+      --with-compiledby='Arch Linux' \
+      --enable-gpm \
+      --enable-acl \
+      --with-x=no \
+      --disable-gui \
+      --enable-multibyte \
+      --enable-cscope \
+      --enable-netbeans \
+      --enable-perlinterp=dynamic \
+      --enable-python3interp=dynamic \
+      --enable-rubyinterp=dynamic \
+      --enable-luainterp=dynamic \
+      --enable-tclinterp=dynamic \
+      --disable-canberra
+    make
+  )
+
+  echo "Building gvim..."
+  (cd gvim-${pkgver}
+    ./configure \
+      --prefix=/usr \
+      --localstatedir=/var/lib/vim \
+      --with-features=huge \
+      --with-compiledby='Arch Linux' \
+      --enable-gpm \
+      --enable-acl \
+      --with-x=yes \
+      --enable-gui=gtk3 \
+      --enable-multibyte \
+      --enable-cscope \
+      --enable-netbeans \
+      --enable-perlinterp=dynamic \
+      --enable-python3interp=dynamic \
+      --enable-rubyinterp=dynamic \
+      --enable-luainterp=dynamic \
+      --enable-tclinterp=dynamic \
+      --enable-canberra
+    make
+  )
+}
+
+check() {
+  cd vim-${pkgver}
+  TERM=xterm make -j1 test
+}
+
+package_vim-runtime() {
+  pkgdesc+=' (shared runtime)'
+  optdepends=('sh: support for some tools and macros'
+              'python: demoserver example tool'
+              'gawk: mve tools upport')
+  backup=('etc/vimrc')
+
+  cd vim-${pkgver}
+
+  make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install
+  # man and bin files belong to 'vim'
+  rm -r "${pkgdir}"/usr/share/man/ "${pkgdir}"/usr/bin/
+
+  # Don't forget logtalk.dict
+  install -Dm 644 runtime/ftplugin/logtalk.dict \
+    "${pkgdir}"/usr/share/vim/vim${_versiondir}/ftplugin/logtalk.dict
+
+  # rc files
+  install -Dm 644 "${srcdir}"/vimrc "${pkgdir}"/etc/vimrc
+  install -Dm 644 "${srcdir}"/archlinux.vim \
+    "${pkgdir}"/usr/share/vim/vimfiles/archlinux.vim
+
+  # no desktop files and icons
+  rm -r "${pkgdir}"/usr/share/{applications,icons}
+
+  # license
+  install -dm 755 "${pkgdir}"/usr/share/licenses/vim-runtime
+  ln -s /usr/share/vim/vim${_versiondir}/doc/uganda.txt \
+    "${pkgdir}"/usr/share/licenses/vim-runtime/license.txt
+
+  # pacman hook for documentation helptags
+  install -Dm 644 "${srcdir}"/vimdoc.hook 
"${pkgdir}"/usr/share/libalpm/hooks/vimdoc.hook
+}
+
+package_vim() {
+  # TODO: move perl back into optdeps after --enable-perlinterp=dynamic
+  #       starts working again (https://github.com/vim/vim/issues/10512)
+  depends=("vim-runtime=${pkgver}-${pkgrel}" 'gpm' 'acl' 'glibc' 'libgcrypt' 
'zlib' 'perl')
+  optdepends=('python: Python language support'
+              'ruby: Ruby language support'
+              'lua: Lua language support'
+              #'perl: Perl language support'
+              'tcl: Tcl language support')
+  conflicts=('gvim' 'vim-minimal')
+  provides=('xxd' 'vim-minimal' 'vim-plugin-runtime')
+  replaces=('vim-minimal')
+
+  cd vim-${pkgver}
+  make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install
+
+  # provided by (n)vi in core
+  rm "${pkgdir}"/usr/bin/{ex,view}
+
+  # delete some manpages
+  find "${pkgdir}"/usr/share/man -type d -name 'man1' 2>/dev/null | \
+    while read _mandir; do
+    cd "${_mandir}"
+    rm -f ex.1 view.1 # provided by (n)vi
+    rm -f evim.1    # this does not make sense if we have no GUI
+  done
+
+  # Runtime provided by runtime package
+  rm -r "${pkgdir}"/usr/share/vim
+
+  # remove gvim.desktop as not included
+  rm "${pkgdir}"/usr/share/applications/gvim.desktop
+
+  # license
+  install -Dm 644 runtime/doc/uganda.txt \
+    "${pkgdir}"/usr/share/licenses/${pkgname}/license.txt
+}
+
+package_gvim() {
+  pkgdesc+=' (with advanced features, such as a GUI)'
+  # TODO: move perl back into optdeps after --enable-perlinterp=dynamic
+  #       starts working again (https://github.com/vim/vim/issues/10512)
+  depends=("vim-runtime=${pkgver}-${pkgrel}" 'gpm' 'libxt' 'gtk3' 'glibc' 
'libgcrypt'
+           'zlib' 'libcanberra' 'perl')
+  optdepends=('python: Python language support'
+              'ruby: Ruby language support'
+              'lua: Lua language support'
+              #'perl: Perl language support'
+              'tcl: Tcl language support')
+  provides=("vim=${pkgver}-${pkgrel}" "xxd" 'vim-plugin-runtime')
+  conflicts=('vim-minimal' 'vim')
+
+  cd gvim-${pkgver}
+  make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install
+
+  # provided by (n)vi in core
+  rm "${pkgdir}"/usr/bin/{ex,view}
+
+  # delete some manpages
+  find "${pkgdir}"/usr/share/man -type d -name 'man1' 2>/dev/null | \
+    while read _mandir; do
+    cd "${_mandir}"
+    rm -f ex.1 view.1 # provided by (n)vi
+  done
+
+  # need to remove since this is provided by vim-runtime
+  rm -r "${pkgdir}"/usr/share/vim
+
+  # license
+   install -Dm 644 runtime/doc/uganda.txt \
+    "${pkgdir}"/usr/share/licenses/${pkgname}/license.txt
+}
+
+# vim: ts=2 sw=2 et:

Deleted: archlinux.vim
===================================================================
--- archlinux.vim       2023-02-21 18:24:00 UTC (rev 469406)
+++ archlinux.vim       2023-02-21 18:24:08 UTC (rev 469407)
@@ -1,46 +0,0 @@
-" The Arch Linux global vimrc - setting only a few sane defaults
-"
-" DO NOT EDIT THIS FILE. IT'S OVERWRITTEN UPON UPGRADES.
-"
-" Use /etc/vimrc for system-wide and $HOME/.vimrc for personal configuration
-" (for details see ':help initialization').
-"
-" Use :help '<option>' to see the documentation for the given option.
-
-" Use Vim defaults instead of 100% vi compatibility
-" Avoid side-effects when nocompatible has already been set.
-if &compatible
-  set nocompatible
-endif
-
-set backspace=indent,eol,start
-set ruler
-set 
suffixes+=.aux,.bbl,.blg,.brf,.cb,.dvi,.idx,.ilg,.ind,.inx,.jpg,.log,.out,.png,.toc
-set suffixes-=.h
-set suffixes-=.obj
-
-" Move temporary files to a secure location to protect against CVE-2017-1000382
-if exists('$XDG_CACHE_HOME')
-  let &g:directory=$XDG_CACHE_HOME
-else
-  let &g:directory=$HOME . '/.cache'
-endif
-let &g:undodir=&g:directory . '/vim/undo//'
-let &g:backupdir=&g:directory . '/vim/backup//'
-let &g:directory.='/vim/swap//'
-" Create directories if they doesn't exist
-if ! isdirectory(expand(&g:directory))
-  silent! call mkdir(expand(&g:directory), 'p', 0700)
-endif
-if ! isdirectory(expand(&g:backupdir))
-  silent! call mkdir(expand(&g:backupdir), 'p', 0700)
-endif
-if ! isdirectory(expand(&g:undodir))
-  silent! call mkdir(expand(&g:undodir), 'p', 0700)
-endif
-
-" Make shift-insert work like in Xterm
-if has('gui_running')
-  map <S-Insert> <MiddleMouse>
-  map! <S-Insert> <MiddleMouse>
-endif

Copied: vim/repos/extra-x86_64/archlinux.vim (from rev 469406, 
vim/trunk/archlinux.vim)
===================================================================
--- archlinux.vim                               (rev 0)
+++ archlinux.vim       2023-02-21 18:24:08 UTC (rev 469407)
@@ -0,0 +1,46 @@
+" The Arch Linux global vimrc - setting only a few sane defaults
+"
+" DO NOT EDIT THIS FILE. IT'S OVERWRITTEN UPON UPGRADES.
+"
+" Use /etc/vimrc for system-wide and $HOME/.vimrc for personal configuration
+" (for details see ':help initialization').
+"
+" Use :help '<option>' to see the documentation for the given option.
+
+" Use Vim defaults instead of 100% vi compatibility
+" Avoid side-effects when nocompatible has already been set.
+if &compatible
+  set nocompatible
+endif
+
+set backspace=indent,eol,start
+set ruler
+set 
suffixes+=.aux,.bbl,.blg,.brf,.cb,.dvi,.idx,.ilg,.ind,.inx,.jpg,.log,.out,.png,.toc
+set suffixes-=.h
+set suffixes-=.obj
+
+" Move temporary files to a secure location to protect against CVE-2017-1000382
+if exists('$XDG_CACHE_HOME')
+  let &g:directory=$XDG_CACHE_HOME
+else
+  let &g:directory=$HOME . '/.cache'
+endif
+let &g:undodir=&g:directory . '/vim/undo//'
+let &g:backupdir=&g:directory . '/vim/backup//'
+let &g:directory.='/vim/swap//'
+" Create directories if they doesn't exist
+if ! isdirectory(expand(&g:directory))
+  silent! call mkdir(expand(&g:directory), 'p', 0700)
+endif
+if ! isdirectory(expand(&g:backupdir))
+  silent! call mkdir(expand(&g:backupdir), 'p', 0700)
+endif
+if ! isdirectory(expand(&g:undodir))
+  silent! call mkdir(expand(&g:undodir), 'p', 0700)
+endif
+
+" Make shift-insert work like in Xterm
+if has('gui_running')
+  map <S-Insert> <MiddleMouse>
+  map! <S-Insert> <MiddleMouse>
+endif

Copied: vim/repos/extra-x86_64/sh.vim.patch (from rev 469406, 
vim/trunk/sh.vim.patch)
===================================================================
--- sh.vim.patch                                (rev 0)
+++ sh.vim.patch        2023-02-21 18:24:08 UTC (rev 469407)
@@ -0,0 +1,55 @@
+--- a/runtime/syntax/sh.vim    2023-02-15 21:24:10.943602904 +0100
++++ b/runtime/syntax/sh.vim    2023-02-15 21:23:48.416993910 +0100
+@@ -2,8 +2,8 @@
+ " Language:           shell (sh) Korn shell (ksh) bash (sh)
+ " Maintainer:         Charles E. Campbell <[email protected]>
+ " Previous Maintainer:        Lennart Schultz <[email protected]>
+-" Last Change:                Dec 20, 2022
+-" Version:            205
++" Last Change:                Feb 11, 2023
++" Version:            207
+ " URL:                http://www.drchip.org/astronaut/vim/index.html#SYNTAX_SH
+ " For options and settings, please use:      :help ft-sh-syntax
+ " This file includes many ideas from Eric Brunet ([email protected]) and 
heredoc fixes from Felipe Contreras
+@@ -166,7 +166,7 @@
+  syn cluster shLoopoList      add=shForPP
+ endif
+ syn cluster shPPSLeftList     
contains=shAlias,shArithmetic,shCmdParenRegion,shCommandSub,shCtrlSeq,shDeref,shDerefSimple,shDoubleQuote,shEcho,shEscape,shExDoubleQuote,shExpr,shExSingleQuote,shHereDoc,shNumber,shOperator,shOption,shPosnParm,shHereString,shRedir,shSingleQuote,shSpecial,shStatement,shSubSh,shTest,shVariable
+-syn cluster shPPSRightList    
contains=shComment,shDeref,shDerefSimple,shEscape,shPosnParm
++syn cluster shPPSRightList    
contains=shDeref,shDerefSimple,shEscape,shPosnParm
+ syn cluster shSubShList       
contains=@shCommandSubList,shCommandSubBQ,shCaseEsac,shColon,shCommandSub,shComment,shDo,shEcho,shExpr,shFor,shIf,shHereString,shRedir,shSetList,shSource,shStatement,shVariable,shCtrlSeq,shOperator
+ syn cluster shTestList        
contains=shArithmetic,shCharClass,shCommandSub,shCommandSubBQ,shCtrlSeq,shDeref,shDerefSimple,shDoubleQuote,shSpecialDQ,shExDoubleQuote,shExpr,shExSingleQuote,shNumber,shOperator,shSingleQuote,shTest,shTestOpr
+ syn cluster shNoZSList        contains=shSpecialNoZS
+@@ -335,7 +335,7 @@
+ " systems too, however, so the following syntax will flag $(..) as
+ " an Error under /bin/sh.  By consensus of vimdev'ers!
+ if exists("b:is_kornshell") || exists("b:is_bash") || exists("b:is_posix")
+- syn region shCommandSub matchgroup=shCmdSubRegion start="\$(\ze[^(]\|$"  
skip='\\\\\|\\.' end=")"  contains=@shCommandSubList
++ syn region shCommandSub matchgroup=shCmdSubRegion start="\$(\ze[^(]"  
skip='\\\\\|\\.' end=")"  contains=@shCommandSubList
+  syn region shArithmetic matchgroup=shArithRegion  start="\$((" 
skip='\\\\\|\\.' end="))" contains=@shArithList
+  syn region shArithmetic matchgroup=shArithRegion  start="\$\[" 
skip='\\\\\|\\.' end="\]" contains=@shArithList
+  syn match  shSkipInitWS contained    "^\s\+"
+@@ -503,7 +503,6 @@
+ " ksh: ${.sh.*} variables: {{{1
+ " ========================================
+ if exists("b:is_kornshell")
+-" syn match  shDerefVar       contained       "[.]*"  
nextgroup=@shDerefVarList
+  syn match  shDerefVar        contained       "\.\+"  
nextgroup=@shDerefVarList
+ endif
+ 
+@@ -548,6 +547,7 @@
+ "        bash : ${parameter,pattern}  Case modification
+ "        bash : ${parameter,,pattern} Case modification
+ "        bash : ${@:start:qty}        display command line arguments from 
start to start+qty-1 (inferred)
++"        bash : ${parameter@operator} transforms parameter 
(operator∈[uULqEPARa])
+ syn cluster shDerefPatternList        contains=shDerefPattern,shDerefString
+ if !exists("g:sh_no_error")
+  syn match shDerefOpError     contained       ":[[:punct:]]"
+@@ -563,6 +563,7 @@
+ endif
+ if exists("b:is_bash")
+  syn match  shDerefOp contained       "[,^]\{1,2}"    
nextgroup=@shDerefPatternList
++ syn match  shDerefOp contained       "@[uULQEPAKa]"
+ endif
+ syn region shDerefString      contained       matchgroup=shDerefDelim 
start=+\%(\\\)\@<!'+ end=+'+    contains=shStringSpecial
+ syn region shDerefString      contained       matchgroup=shDerefDelim 
start=+\%(\\\)\@<!"+ skip=+\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial

Deleted: vimdoc.hook
===================================================================
--- vimdoc.hook 2023-02-21 18:24:00 UTC (rev 469406)
+++ vimdoc.hook 2023-02-21 18:24:08 UTC (rev 469407)
@@ -1,11 +0,0 @@
-[Trigger]
-Operation = Install
-Operation = Upgrade
-Operation= Remove
-Type = Path
-Target = usr/share/vim/vimfiles/doc/
-
-[Action]
-Description = Updating Vim help tags...
-Exec = /usr/bin/vim -es --cmd ":helptags /usr/share/vim/vimfiles/doc" --cmd 
":q"
-When = PostTransaction

Copied: vim/repos/extra-x86_64/vimdoc.hook (from rev 469406, 
vim/trunk/vimdoc.hook)
===================================================================
--- vimdoc.hook                         (rev 0)
+++ vimdoc.hook 2023-02-21 18:24:08 UTC (rev 469407)
@@ -0,0 +1,11 @@
+[Trigger]
+Operation = Install
+Operation = Upgrade
+Operation= Remove
+Type = Path
+Target = usr/share/vim/vimfiles/doc/
+
+[Action]
+Description = Updating Vim help tags...
+Exec = /usr/bin/vim -es --cmd ":helptags /usr/share/vim/vimfiles/doc" --cmd 
":q"
+When = PostTransaction

Deleted: vimrc
===================================================================
--- vimrc       2023-02-21 18:24:00 UTC (rev 469406)
+++ vimrc       2023-02-21 18:24:08 UTC (rev 469407)
@@ -1,18 +0,0 @@
-" All system-wide defaults are set in $VIMRUNTIME/archlinux.vim (usually just
-" /usr/share/vim/vimfiles/archlinux.vim) and sourced by the call to :runtime
-" you can find below.  If you wish to change any of those settings, you should
-" do it in this file (/etc/vimrc), since archlinux.vim will be overwritten
-" everytime an upgrade of the vim packages is performed.  It is recommended to
-" make changes after sourcing archlinux.vim since it alters the value of the
-" 'compatible' option.
-
-" This line should not be removed as it ensures that various options are
-" properly set to work with the Vim-related packages.
-runtime! archlinux.vim
-
-" If you prefer the old-style vim functionalty, add 'runtime! 
vimrc_example.vim'
-" Or better yet, read /usr/share/vim/vim80/vimrc_example.vim or the vim manual
-" and configure vim to your own liking!
-
-" do not load defaults if ~/.vimrc is missing
-"let skip_defaults_vim=1

Copied: vim/repos/extra-x86_64/vimrc (from rev 469406, vim/trunk/vimrc)
===================================================================
--- vimrc                               (rev 0)
+++ vimrc       2023-02-21 18:24:08 UTC (rev 469407)
@@ -0,0 +1,18 @@
+" All system-wide defaults are set in $VIMRUNTIME/archlinux.vim (usually just
+" /usr/share/vim/vimfiles/archlinux.vim) and sourced by the call to :runtime
+" you can find below.  If you wish to change any of those settings, you should
+" do it in this file (/etc/vimrc), since archlinux.vim will be overwritten
+" everytime an upgrade of the vim packages is performed.  It is recommended to
+" make changes after sourcing archlinux.vim since it alters the value of the
+" 'compatible' option.
+
+" This line should not be removed as it ensures that various options are
+" properly set to work with the Vim-related packages.
+runtime! archlinux.vim
+
+" If you prefer the old-style vim functionalty, add 'runtime! 
vimrc_example.vim'
+" Or better yet, read /usr/share/vim/vim80/vimrc_example.vim or the vim manual
+" and configure vim to your own liking!
+
+" do not load defaults if ~/.vimrc is missing
+"let skip_defaults_vim=1

Reply via email to