1<?xml version="1.0" encoding="UTF-8"?> 2<!-- vim:set ts=2 sts=2 sw=2 tw=0: --> 3<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> 4<plist version="0.9"> 5 <dict> 6 7 <key>CFBundleIdentifier</key> 8 <string>org.vim.Vim-APP_VER</string> 9 <key>CFBundleInfoDictionaryVersion</key> 10 <string>6.0</string> 11 12 <key>CFBundleExecutable</key> 13 <string>APP_EXE</string> 14 <key>CFBundleName</key> 15 <string>APP_NAME</string> 16 <key>CFBundlePackageType</key> 17 <string>APPL</string> 18 <key>CFBundleVersion</key> 19 <string>APP_VER</string> 20 <key>CFBundleShortVersionString</key> 21 <string>APP_VER</string> 22 <key>CFBundleSignature</key> 23 <string>VIM!</string> 24 25 <key>CFBundleDevelopmentRegion</key> 26 <string>English</string> 27 <key>CSResourcesFileMapped</key> 28 <true/> 29 <key>CFBundleIconFile</key> 30 <string>app.icns</string> 31 32 <key>CFBundleDocumentTypes</key> 33 <array> 34 <dict> 35 <key>CFBundleTypeExtensions</key> 36 <array> 37 <string>txt</string> 38 <string>text</string> 39 </array> 40 <key>CFBundleTypeMIMETypes</key> 41 <array> 42 <string>text/plain</string> 43 </array> 44 <key>CFBundleTypeIconFile</key> 45 <string>doc-txt.icns</string> 46 <key>CFBundleTypeName</key> 47 <string>Text File</string> 48 <key>CFBundleTypeRole</key> 49 <string>Editor</string> 50 </dict> 51 <dict> 52 <key>CFBundleTypeExtensions</key> 53 <array> 54 <string>*</string> 55 </array> 56 <key>CFBundleTypeMIMETypes</key> 57 <array> 58 <string>text/*</string> 59 </array> 60 <key>CFBundleTypeIconFile</key> 61 <string>doc.icns</string> 62 <key>CFBundleTypeName</key> 63 <string>File</string> 64 <key>CFBundleTypeOSTypes</key> 65 <array> 66 <string>****</string> 67 </array> 68 <key>CFBundleTypeRole</key> 69 <string>Editor</string> 70 </dict> 71 </array> 72 73 </dict> 74</plist> 75