annotate runtime/spell/check/main.aap @ 24582:1a658c5eb326 v8.2.2830

patch 8.2.2830: terminal colors are not updated when 'background' is set Commit: https://github.com/vim/vim/commit/ad431995721b2a886f789e2ea7db4c84b732eb18 Author: Bram Moolenaar <Bram@vim.org> Date: Mon May 3 20:40:38 2021 +0200 patch 8.2.2830: terminal colors are not updated when 'background' is set Problem: Terminal colors are not updated when 'background' is set. Solution: Call term_update_colors() for all terminals. (Marcin Szamotulski, closes #8171, closes #8150)
author Bram Moolenaar <Bram@vim.org>
date Mon, 03 May 2021 20:45:04 +0200
parents 6c480c4aa7b0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2044
6c480c4aa7b0 Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
diff changeset
1 # Aap recipe for a dummy spell file.
6c480c4aa7b0 Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
diff changeset
2 # This is used to check if the .spl file format changes.
6c480c4aa7b0 Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
diff changeset
3
6c480c4aa7b0 Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
diff changeset
4 # Use a freshly compiled Vim if it exists.
6c480c4aa7b0 Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
diff changeset
5 @if os.path.exists('../../../src/vim'):
6c480c4aa7b0 Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
diff changeset
6 VIM = ../../../src/vim
6c480c4aa7b0 Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
diff changeset
7 @else:
6c480c4aa7b0 Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
diff changeset
8 :progsearch VIM vim
6c480c4aa7b0 Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
diff changeset
9
6c480c4aa7b0 Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
diff changeset
10 all: check.latin1.spl
6c480c4aa7b0 Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
diff changeset
11
6c480c4aa7b0 Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
diff changeset
12 check.latin1.spl : $VIM check_aa.aff check_aa.dic check_bb.aff check_bb.dic
6c480c4aa7b0 Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
diff changeset
13 :sys $VIM -u NONE -e -c "mkspell! check check_aa check_bb" -c q
6c480c4aa7b0 Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
diff changeset
14
6c480c4aa7b0 Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
diff changeset
15 # vim: set sts=4 sw=4 :