view src/infplist.xml @ 19728:41a1ea967a97 v8.2.0420

patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C Commit: https://github.com/vim/vim/commit/f1ec378b014efb9897422c40369a6462163a512a Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 20 19:37:47 2020 +0100 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C Problem: Vim9: cannot interrupt a loop with CTRL-C. Solution: Check for CTRL-C once in a while. Doesn't fully work yet.
author Bram Moolenaar <Bram@vim.org>
date Fri, 20 Mar 2020 19:45:03 +0100
parents 23f82b5d2814
children
line wrap: on
line source

<?xml version="1.0" encoding="UTF-8"?>
<!-- vim:set ts=2 sts=2 sw=2 tw=0: -->
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
<plist version="0.9">
	<dict>

		<key>CFBundleIdentifier</key>
		<string>org.vim.Vim-APP_VER</string>
		<key>CFBundleInfoDictionaryVersion</key>
		<string>6.0</string>

		<key>CFBundleExecutable</key>
		<string>APP_EXE</string>
		<key>CFBundleName</key>
		<string>APP_NAME</string>
		<key>CFBundlePackageType</key>
		<string>APPL</string>
		<key>CFBundleVersion</key>
		<string>APP_VER</string>
		<key>CFBundleShortVersionString</key>
		<string>APP_VER</string>
		<key>CFBundleSignature</key>
		<string>VIM!</string>

		<key>CFBundleDevelopmentRegion</key>
		<string>English</string>
		<key>CSResourcesFileMapped</key>
		<true/>
		<key>CFBundleIconFile</key>
		<string>app.icns</string>

		<key>CFBundleDocumentTypes</key>
		<array>
			<dict>
				<key>CFBundleTypeExtensions</key>
				<array>
					<string>txt</string>
					<string>text</string>
				</array>
				<key>CFBundleTypeMIMETypes</key>
				<array>
					<string>text/plain</string>
				</array>
				<key>CFBundleTypeIconFile</key>
				<string>doc-txt.icns</string>
				<key>CFBundleTypeName</key>
				<string>Text File</string>
				<key>CFBundleTypeRole</key>
				<string>Editor</string>
			</dict>
			<dict>
				<key>CFBundleTypeExtensions</key>
				<array>
					<string>*</string>
				</array>
				<key>CFBundleTypeMIMETypes</key>
				<array>
					<string>text/*</string>
				</array>
				<key>CFBundleTypeIconFile</key>
				<string>doc.icns</string>
				<key>CFBundleTypeName</key>
				<string>File</string>
				<key>CFBundleTypeOSTypes</key>
				<array>
					<string>****</string>
				</array>
				<key>CFBundleTypeRole</key>
				<string>Editor</string>
			</dict>
		</array>

	</dict>
</plist>