diff options
Diffstat (limited to 'src/infplist.xml')
-rw-r--r-- | src/infplist.xml | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/src/infplist.xml b/src/infplist.xml index f0ba5fc58..c58cf7480 100644 --- a/src/infplist.xml +++ b/src/infplist.xml @@ -4,6 +4,8 @@ <plist version="0.9"> <dict> + <key>CFBundleIdentifier</key> + <string>org.vim.Vim-APP_VER</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> @@ -25,19 +27,40 @@ <key>CSResourcesFileMapped</key> <true/> <key>CFBundleIconFile</key> - <string>ICON_APP</string> + <string>app.icns</string> <key>CFBundleDocumentTypes</key> <array> <dict> <key>CFBundleTypeExtensions</key> <array> - <string>*</string> + <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>NSStringPboardType</string> + <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> |