view runtime/spell/yi/main.aap @ 34412:b67de41ae869 v9.1.0129

patch 9.1.0129: Fix truncation of text_wrap 'wrap' virt text after EOL list char Commit: https://github.com/vim/vim/commit/f548ae7b6357c7934411df243bc987800c9b76d1 Author: Dylan Thacker-Smith <dylan.ah.smith@gmail.com> Date: Sat Feb 24 10:17:11 2024 +0100 patch 9.1.0129: Fix truncation of text_wrap 'wrap' virt text after EOL list char Problem: Virtual text with text_wrap 'wrap' was effectively being truncated by a break conditional on the EOL list character being added to the screen line. (BigPeet) Solution: Remove the condition that was leading to the early break and instead fix a similar but incorrectly written outer condition that checks if there is more to add at the end of the screen line. (Dylan Thacker-Smith) Also, related: - update comment in win_line() - remove no longer necessary at_end_str variable in win_line() fixes: #12725 closes: #14079 Co-authored-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Dylan Thacker-Smith <dylan.ah.smith@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sat, 24 Feb 2024 10:30:05 +0100
parents 6f8b578776ab
children
line wrap: on
line source

# Aap recipe for Yiddish Vim spell files.

# Use a freshly compiled Vim if it exists.
@if os.path.exists('../../../src/vim'):
    VIM = ../../../src/vim
@else:
    :progsearch VIM vim

SPELLDIR    = ..
FILES       = yi.dic yi.aff
WORDFILE    = wordlist.utf8.txt
FILES_TR    = yi_tr.dic yi_tr.aff
WORDFILE_TR = wordlist.txt

all: $SPELLDIR/yi.utf-8.spl $SPELLDIR/yi-tr.utf-8.spl \
        $SPELLDIR/yi.latin1.spl ../README_yi.txt

$SPELLDIR/yi.utf-8.spl : $FILES
    :sys $VIM -u NONE -e -c "set enc=utf-8"
            -c "mkspell! $SPELLDIR/yi yi" -c q

$SPELLDIR/yi-tr.utf-8.spl : $FILES_TR
    :sys $VIM -u NONE -e -c "set enc=utf-8"
            -c "mkspell! $SPELLDIR/yi-tr yi_tr" -c q

$SPELLDIR/yi.latin1.spl : $FILES_TR
    :sys $VIM -u NONE -e -c "set enc=latin1"
            -c "mkspell! $SPELLDIR/yi yi_tr" -c q

../README_yi.txt : README.txt
    :copy $source $target

#
# Fetch the word list when needed.
#
URLDIR = http://www.cs.uky.edu/~raphael/yiddish
:attr {fetch = $URLDIR/%file%} $WORDFILE $WORDFILE_TR

# We use the word list as a .dic file, so that we can use an affix file to
# define a few extra things.
$FILES: {buildcheck=}
        :assertpkg patch
        :fetch $WORDFILE
        :copy $WORDFILE yi.dic
        :touch {force} yi.aff
        @if os.path.exists('yi.diff'):
            :sys patch < yi.diff

$FILES_TR: {buildcheck=}
        :assertpkg patch
        :fetch $WORDFILE_TR
        :copy $WORDFILE_TR yi_tr.dic
        :touch {force} yi_tr.aff
        @if os.path.exists('yi_tr.diff'):
            :sys patch < yi_tr.diff

diff {virtual}:
    :assertpkg diff
    # Using a context of two lines to work around a bug in FreeBSD patch.
    :sys {force} diff -a -C 2 $WORDFILE yi.dic > yi.diff
    :sys {force} diff -a -N -C 1 /dev/null yi.aff >> yi.diff
    :sys {force} diff -a -C 2 $WORDFILE_TR yi_tr.dic > yi_tr.diff
    :sys {force} diff -a -N -C 1 /dev/null yi_tr.aff >> yi_tr.diff

# vim: set sts=4 sw=4 :