view runtime/spell/sr/main.aap @ 35237:7361f7682670 default tip

runtime(termdebug): check for gdb file/dir before using as buffer name Commit: https://github.com/vim/vim/commit/62ccaa60d5f7f9a13c758bd5e55b7ca6855a6de9 Author: Ubaldo Tiberi <ubaldo.tiberi@volvo.com> Date: Tue May 21 23:33:03 2024 +0200 runtime(termdebug): check for gdb file/dir before using as buffer name Add test so that this doesn't regress. fixes: #12718 closes: #14792 Signed-off-by: Ubaldo Tiberi <ubaldo.tiberi@volvo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Tue, 21 May 2024 23:45:03 +0200
parents 0fdf36de4018
children
line wrap: on
line source

# Aap recipe for Serbian Vim spell files.
# See README_sr.txt for instructions to get the .aff and .dic files.

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

SPELLDIR = ..
FILES    = sr.aff sr.dic

all: $SPELLDIR/sr.utf-8.spl ../README_sr.txt

$SPELLDIR/sr.utf-8.spl : $FILES
        :sys env LANG=sr_RS.UTF-8
		$VIM -u NONE -e -c "set enc=utf-8" -c "mkspell! $SPELLDIR/sr sr" -c q

../README_sr.txt : README_sr.txt
        :copy README_sr.txt $target


vim: set sts=4 sw=4 :