view runtime/tutor/Makefile @ 35122:739aaccbca74 default tip

runtime(sh,zsh): clear $MANPAGER in ftplugin before shelling out Commit: https://github.com/vim/vim/commit/8d8cb45756cb7e6fda17013b8347be3a11b29610 Author: D. Ben Knoble <ben.knoble+github@gmail.com> Date: Mon May 6 19:52:53 2024 +0200 runtime(sh,zsh): clear $MANPAGER in ftplugin before shelling out Say you use Vim and set MANPAGER='vim -M +MANPAGER --not-a-term -'; then :{Zs,S}hKeywordPrg (or K) will crap out and spew terminal garbage into less when bash's "help" fails. This was introduced by 2f25e40b1 (runtime: configure keywordpg for some file types (#5566), 2023-08-23) and may be present in other files touched by that commit. Make the "man" invocation sensible by unsetting MANPAGER in the environment. Note that changing MANPAGER for `:terminal` is not needed; Vim within Vim is perfectly fine. closes: #14679 Signed-off-by: D. Ben Knoble <ben.knoble+github@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Mon, 06 May 2024 20:00:09 +0200
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