view src/pathdef.sh @ 29635:592818fd3110 v9.0.0158

patch 9.0.0158: with 'nowrap' "below" property not displayed correctly Commit: https://github.com/vim/vim/commit/48ca24d913105a14cf6d723d45f6b39e7b7b7b77 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 6 22:03:20 2022 +0100 patch 9.0.0158: with 'nowrap' "below" property not displayed correctly Problem: With 'nowrap' "below" property not displayed correctly. Solution: Adjust virtual text with 'nowrap', do not truncate.
author Bram Moolenaar <Bram@vim.org>
date Sat, 06 Aug 2022 23:15:03 +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: