annotate runtime/spell/sr/main.aap @ 35885:6551c6974a7b v9.1.0654

patch 9.1.0654: completion does not respect completeslash with fuzzy Commit: https://github.com/vim/vim/commit/b9de1a057f9a0b6de6f64a9c1b2078c7069cdd7d Author: glepnir <glephunter@gmail.com> Date: Fri Aug 2 19:14:38 2024 +0200 patch 9.1.0654: completion does not respect completeslash with fuzzy Problem: completion does not respect completeslash with fuzzy (egesip) Solution: Change path separator on Windows, depending on 'completeslash' option value (glepnir) fixes: #15392 closes: #15418 Signed-off-by: glepnir <glephunter@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Fri, 02 Aug 2024 19:30:03 +0200
parents 0fdf36de4018
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13350
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 # Aap recipe for Serbian Vim spell files.
29269
0fdf36de4018 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 13350
diff changeset
2 # See README_sr.txt for instructions to get the .aff and .dic files.
13350
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
4 # Use a freshly compiled Vim if it exists.
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
5 @if os.path.exists('../../../src/vim'):
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
6 VIM = ../../../src/vim
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
7 @else:
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
8 :progsearch VIM vim
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
9
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
10 SPELLDIR = ..
29269
0fdf36de4018 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 13350
diff changeset
11 FILES = sr.aff sr.dic
13350
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
12
29269
0fdf36de4018 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 13350
diff changeset
13 all: $SPELLDIR/sr.utf-8.spl ../README_sr.txt
13350
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
14
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
15 $SPELLDIR/sr.utf-8.spl : $FILES
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
16 :sys env LANG=sr_RS.UTF-8
29269
0fdf36de4018 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 13350
diff changeset
17 $VIM -u NONE -e -c "set enc=utf-8" -c "mkspell! $SPELLDIR/sr sr" -c q
13350
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
18
29269
0fdf36de4018 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 13350
diff changeset
19 ../README_sr.txt : README_sr.txt
0fdf36de4018 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 13350
diff changeset
20 :copy README_sr.txt $target
13350
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
21
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
22
73e42c11db9e Include Serbian spell input files
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
23 vim: set sts=4 sw=4 :