view src/pathdef.sh @ 30343:4c9b74365164 v9.0.0507

patch 9.0.0507: cmdline cleared when using :redrawstatus in CmdlineChanged Commit: https://github.com/vim/vim/commit/bcd6924245c0e73d8be256282656c06aaf91f17c Author: Bram Moolenaar <Bram@vim.org> Date: Mon Sep 19 21:16:12 2022 +0100 patch 9.0.0507: cmdline cleared when using :redrawstatus in CmdlineChanged Problem: Command line cleared when using :redrawstatus in CmdlineChanged autocommand event. Solution: Postpone the redraw. (closes #11162)
author Bram Moolenaar <Bram@vim.org>
date Mon, 19 Sep 2022 22:30:07 +0200
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: