view src/pathdef.sh @ 27946:5147f3d3ed30 v8.2.4498

patch 8.2.4498: using <Plug> with "noremap" does not work Commit: https://github.com/vim/vim/commit/1fc34225acbee5ddca2b9ec3f82b3014d385b7f8 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 3 13:56:24 2022 +0000 patch 8.2.4498: using <Plug> with "noremap" does not work Problem: Using <Plug> with "noremap" does not work. Solution: Always remap <Plug>. (closes https://github.com/vim/vim/issues/9879, closes https://github.com/vim/vim/issues/9789)
author Bram Moolenaar <Bram@vim.org>
date Thu, 03 Mar 2022 15:00:03 +0100
parents 3fc0f57ecb91
children
line wrap: on
line source

#! /bin/sh
#
# pathdef.sh: adjust pathdef.c for auto/link.sed, if it exists
#
if test -s auto/link.sed; then
  cp auto/pathdef.c auto/pathdef.tmp
  sed -f auto/link.sed <auto/pathdef.tmp >auto/pathdef.c
  rm -f auto/pathdef.tmp
fi

# vim:set sw=2 et: