Skip to content

Supported Application

Ricardo Mendes edited this page Jan 14, 2014 · 4 revisions

Below are list that supported by xVim:

Application BundleIdentifier Tested Version
XCode 4.2 com.apple.dt.Xcode 828
Espresso com.macrabbit.Espresso 2.0.1
Chocolat com.chocolatapp.Chocolat 0.0.53 ~ 2.1.1

How to use xVim in supported application:

  1. Edit "~/Library/Application Support/SIMBL/Plugins/xVim.bundle/Contents/Info.plist"
  2. Add a child under SIMBLTargetApplications of type Dictionary
  3. Add a string in the created child, set its name to BundleIdentifier and its value to Bundle Identifier of the supported application describe above

e.g. To use xVim in Espresso, the Info.plist should looks like:
<key>SIMBLTargetApplications</key>
<array>
    <dict>
        <key>BundleIdentifier</key>
        <string>com.macrabbit.Espresso</string>
    </dict>
    <dict>
        <key>BundleIdentifier</key>
        <string>com.apple.dt.Xcode</string>
        <key>MaxBundleVersion</key>
        <string>828</string>
        <key>MinBundleVersion</key>
        <string>828</string>
    </dict>
</array>

Note: xVim is enabled for XCode by default.