Mercurial > vim
view runtime/spell/am/main.aap @ 33652:0a3895772dce v9.0.2065
patch 9.0.2065: EXPAND flag set for filetype option
Commit: https://github.com/vim/vim/commit/3932072ab435eb171ab55b2a2c0185358cd0d7bf
Author: Doug Kearns <dougkearns@gmail.com>
Date: Wed Oct 25 20:54:00 2023 +0200
patch 9.0.2065: EXPAND flag set for filetype option
Problem: EXPAND flag set for filetype option
Solution: Remove P_EXPAND flag from the 'filetype' option
Remove P_EXPAND flag from the 'filetype' option
Problem: P_EXPAND flag is erroneously set for 'filetype' option
Solution: Remove the P_EXPAND flag
This flag is used by string options that accept file path values. See
:help set_env.
This appears to have been included in d5e8c92 and resulted from an
incorrect implementation of 'filetype' completion.
See #12900 for a small discussion.
related: #12900
closes: #13416
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Doug Kearns <dougkearns@gmail.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 25 Oct 2023 21:00:06 +0200 |
parents | 4321aae7e769 |
children |
line wrap: on
line source
# Aap recipe for Amharic 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 = am_ET.aff am_ET.dic all: $SPELLDIR/am.utf-8.spl ../README_am.txt $SPELLDIR/am.utf-8.spl : $FILES :sys env LANG=am_ET.UTF-8 $VIM -u NONE -e -c "mkspell! $SPELLDIR/am am_ET" -c q ../README_am.txt: README_am.txt :copy $source $target # # Fetching the files from Hunspell. # HTTPDIR = http://hunspell.sourceforge.net TARNAME = am-demo.tar.gz :attr {fetch = $HTTPDIR/%file%} $TARNAME # The files don't depend on the .zip file so that we can delete it. # Only download the zip file if the targets don't exist. # This is a bit tricky, since the file name includes the date. am_ET.aff am_ET.dic: {buildcheck=} :assertpkg tar gzip :fetch $TARNAME :sys gzip -d -c $TARNAME | tar xf - :move am/am.aff am_ET.aff :move am/am.dic am_ET.dic :move am/README README_am.txt :delete {recursive} am :delete $TARNAME @if not os.path.exists('am_ET.orig.aff'): :copy am_ET.aff am_ET.orig.aff @if not os.path.exists('am_ET.orig.dic'): :copy am_ET.dic am_ET.orig.dic @if os.path.exists('am_ET.diff'): :sys patch <am_ET.diff # Generate diff files, so that others can get the OpenOffice files and apply # the diffs to get the Vim versions. diff: :assertpkg diff :sys {force} diff -a -C 1 am_ET.orig.aff am_ET.aff >am_ET.diff :sys {force} diff -a -C 1 am_ET.orig.dic am_ET.dic >>am_ET.diff # Check for updated spell files. When there are changes the # ".new.aff" and ".new.dic" files are left behind for manual inspection. check: :print Sorry, not implemented yet. # vim: set sts=4 sw=4 :