view runtime/tutor/Makefile @ 34420:c5a945f7f3da v9.1.0133

patch 9.1.0133: MS-Windows: ligatures not rendering correctly Commit: https://github.com/vim/vim/commit/8b1e749ca6ca6d09a174c57de6999f69393ee567 Author: Erik S. V. Jansson <caffeineviking@gmail.com> Date: Sat Feb 24 14:26:52 2024 +0100 patch 9.1.0133: MS-Windows: ligatures not rendering correctly Problem: font ligatures don't render correctly in the Win32 GUI-version of gvim even when set rop=type:directx is used. Setting guiligatures also doesn't make any difference. This leads to broken font ligatures when the cursor passes through them. It does not recover from this, and they remain broken until you re-render the whole buffer (e.g. by using Ctrl+L). Solution: the problem is that we only re-draw the current and previous character in gui_undraw_cursor() and only have the special case for GTK when it comes to rendering ligatures. So let's enable gui_adjust_undraw_cursor_for_ligatures() to also happen for Win32 GUI if guiligatures is setup correctly (all this does is expand the range of gui_undraw_cursor() with ligature characters). related: #9181 related: #12901 closes: #14084 Signed-off-by: Erik S. V. Jansson <caffeineviking@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sat, 24 Feb 2024 14:45:03 +0100
parents 72aee06c1d78
children
line wrap: on
line source

# Makefile for the Vim tutor.
#
# The Japanese tutor exists in three encodings.  Use the UTF-8 version as the
# original and create the others with conversion.
#
# Similarly for Russian and Korean

# Common components
include Make_all.mak

.PHONY: all clean

all: $(CONVERTED)

tutor.utf-8: tutor
	iconv -f ISO-8859-1 -t UTF-8 $< >$@

tutor.bar: tutor.bar.utf-8
	iconv -f UTF-8 -t ISO-8859-1 $< >$@

tutor.ca.utf-8: tutor.ca
	iconv -f ISO-8859-1 -t UTF-8 $< >$@

tutor.eo: tutor.eo.utf-8
	iconv -f UTF-8 -t ISO-8859-3 $< >$@

tutor.de.utf-8: tutor.de
	iconv -f ISO-8859-1 -t UTF-8 $< >$@

tutor.el: tutor.el.utf-8
	iconv -f UTF-8 -t ISO-8859-7 $< >$@

tutor.el.cp737: tutor.el.utf-8
	iconv -f UTF-8 -t CP737 $< >$@

tutor.es: tutor.es.utf-8
	iconv -f UTF-8 -t ISO-8859-1 $< >$@

tutor.fr.utf-8: tutor.fr
	iconv -f ISO-8859-1 -t UTF-8 $< >$@

tutor.hu: tutor.hu.utf-8
	iconv -f UTF-8 -t ISO-8859-2 $< >$@

tutor.hu.cp1250: tutor.hu.utf-8
	iconv -f UTF-8 -t CP1250 $< >$@

tutor.it.utf-8: tutor.it
	iconv -f ISO-8859-1 -t UTF-8 $< >$@

tutor.hr: tutor.hr.utf-8
	iconv -f UTF-8 -t ISO-8859-2 $< >$@

tutor.hr.cp1250: tutor.hr.utf-8
	iconv -f UTF-8 -t CP1250 $< >$@

tutor.ja.sjis: tutor.ja.utf-8
	iconv -f UTF-8 -t CP932 $< >$@

tutor.ja.euc: tutor.ja.utf-8
	iconv -f UTF-8 -t EUC-JP $< >$@

tutor.ko.euc: tutor.ko.utf-8
	iconv -f UTF-8 -t EUC-KR $< >$@

tutor.nl: tutor.nl.utf-8
	iconv -f UTF-8 -t ISO-8859-1 $< >$@

tutor.no.utf-8: tutor.no
	iconv -f ISO-8859-1 -t UTF-8 $< >$@

# nb is an alias for no
tutor.nb: tutor.no
	cp $< $@

tutor.nb.utf-8: tutor.no.utf-8
	cp $< $@

tutor.ru: tutor.ru.utf-8
	iconv -f UTF-8 -t KOI8-R $< >$@

tutor.ru.cp1251: tutor.ru.utf-8
	iconv -f UTF-8 -t CP1251 $< >$@

tutor.tr.iso9: tutor.tr.utf-8
	iconv -f UTF-8 -t ISO-8859-9 $< >$@

tutor.sv.utf-8: tutor.sv
	iconv -f ISO-8859-1 -t UTF-8 $< >$@

tutor.zh.utf-8: tutor.zh.big5
	iconv -f BIG-5 -t UTF-8 $< >$@

clean:
	for G in $(CONVERTED); do if [ -f $$G ]; then rm -f $$G; fi; done