-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is just an Applescript application that, when used to open a file, tries to open that file in iTerm in Vim.
- Loading branch information
1 parent
ab82bb7
commit e221fd7
Showing
43 changed files
with
233 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>AMIsApplet</key> | ||
<true/> | ||
<key>AMStayOpen</key> | ||
<false/> | ||
<key>BuildMachineOSBuild</key> | ||
<string>17A405001</string> | ||
<key>CFBundleAllowMixedLocalizations</key> | ||
<true/> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>English</string> | ||
<key>CFBundleDocumentTypes</key> | ||
<array> | ||
<dict> | ||
<key>CFBundleTypeExtensions</key> | ||
<array> | ||
<string>*</string> | ||
</array> | ||
<key>CFBundleTypeName</key> | ||
<string>Automator workflow file</string> | ||
<key>CFBundleTypeOSTypes</key> | ||
<array> | ||
<string>****</string> | ||
</array> | ||
<key>CFBundleTypeRole</key> | ||
<string>Viewer</string> | ||
</dict> | ||
</array> | ||
<key>CFBundleExecutable</key> | ||
<string>Application Stub</string> | ||
<key>CFBundleIconFile</key> | ||
<string>AutomatorApplet</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.apple.automator.TerminalVim</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>TerminalVim</string> | ||
<key>CFBundlePackageType</key> | ||
<string>APPL</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.3</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleSupportedPlatforms</key> | ||
<array> | ||
<string>MacOSX</string> | ||
</array> | ||
<key>CFBundleURLTypes</key> | ||
<array/> | ||
<key>CFBundleVersion</key> | ||
<string>444.42</string> | ||
<key>DTCompiler</key> | ||
<string>com.apple.compilers.llvm.clang.1_0</string> | ||
<key>DTPlatformBuild</key> | ||
<string>10P70r</string> | ||
<key>DTPlatformName</key> | ||
<string>macosx</string> | ||
<key>DTPlatformVersion</key> | ||
<string>10.14</string> | ||
<key>DTSDKBuild</key> | ||
<string>18F82</string> | ||
<key>DTSDKName</key> | ||
<string>macosx10.14internal</string> | ||
<key>DTXcode</key> | ||
<string>1020</string> | ||
<key>DTXcodeBuild</key> | ||
<string>10P70r</string> | ||
<key>LSMinimumSystemVersion</key> | ||
<string>10.6</string> | ||
<key>LSUIElement</key> | ||
<true/> | ||
<key>NSAppleEventsUsageDescription</key> | ||
<string>This workflow needs to control other applications to run.</string> | ||
<key>NSAppleMusicUsageDescription</key> | ||
<string>This workflow needs access to your music to run.</string> | ||
<key>NSAppleScriptEnabled</key> | ||
<string>YES</string> | ||
<key>NSCalendarsUsageDescription</key> | ||
<string>This workflow needs access to your calendars to run.</string> | ||
<key>NSCameraUsageDescription</key> | ||
<string>This workflow needs access to your camera to run.</string> | ||
<key>NSContactsUsageDescription</key> | ||
<string>This workflow needs access to your contacts to run.</string> | ||
<key>NSHomeKitUsageDescription</key> | ||
<string>This workflow needs access to your HomeKit Home to run.</string> | ||
<key>NSMicrophoneUsageDescription</key> | ||
<string>This workflow needs access to your microphone to run.</string> | ||
<key>NSPhotoLibraryUsageDescription</key> | ||
<string>This workflow needs access to your photos to run.</string> | ||
<key>NSPrincipalClass</key> | ||
<string>NSApplication</string> | ||
<key>NSRemindersUsageDescription</key> | ||
<string>This workflow needs access to your reminders to run.</string> | ||
<key>NSServices</key> | ||
<array/> | ||
<key>NSSiriUsageDescription</key> | ||
<string>This workflow needs access to Siri to run.</string> | ||
<key>NSSystemAdministrationUsageDescription</key> | ||
<string>This workflow needs access to administer this system in order to run.</string> | ||
<key>UTExportedTypeDeclarations</key> | ||
<array/> | ||
<key>UTImportedTypeDeclarations</key> | ||
<array/> | ||
</dict> | ||
</plist> |
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.95 KB
sources/TerminalVim.app/Contents/Resources/ar.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+2.24 KB
sources/TerminalVim.app/Contents/Resources/ca.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.92 KB
sources/TerminalVim.app/Contents/Resources/cs.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.37 KB
sources/TerminalVim.app/Contents/Resources/da.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+2.37 KB
sources/TerminalVim.app/Contents/Resources/de.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+2.16 KB
sources/TerminalVim.app/Contents/Resources/el.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.03 KB
sources/TerminalVim.app/Contents/Resources/en.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.03 KB
sources/TerminalVim.app/Contents/Resources/en_AU.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.03 KB
sources/TerminalVim.app/Contents/Resources/en_GB.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.53 KB
sources/TerminalVim.app/Contents/Resources/es.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.44 KB
sources/TerminalVim.app/Contents/Resources/es_419.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.79 KB
sources/TerminalVim.app/Contents/Resources/fi.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.92 KB
sources/TerminalVim.app/Contents/Resources/fr.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.75 KB
sources/TerminalVim.app/Contents/Resources/fr_CA.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.56 KB
sources/TerminalVim.app/Contents/Resources/he.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.86 KB
sources/TerminalVim.app/Contents/Resources/hi.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+2.05 KB
sources/TerminalVim.app/Contents/Resources/hr.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.89 KB
sources/TerminalVim.app/Contents/Resources/hu.lproj/InfoPlist.strings
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.26 KB
sources/TerminalVim.app/Contents/Resources/it.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.27 KB
sources/TerminalVim.app/Contents/Resources/ja.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.17 KB
sources/TerminalVim.app/Contents/Resources/ko.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.17 KB
sources/TerminalVim.app/Contents/Resources/ms.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.37 KB
sources/TerminalVim.app/Contents/Resources/nl.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+2.05 KB
sources/TerminalVim.app/Contents/Resources/no.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+2.13 KB
sources/TerminalVim.app/Contents/Resources/pl.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.82 KB
sources/TerminalVim.app/Contents/Resources/pt.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.73 KB
sources/TerminalVim.app/Contents/Resources/pt_PT.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.94 KB
sources/TerminalVim.app/Contents/Resources/ro.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+2.12 KB
sources/TerminalVim.app/Contents/Resources/ru.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.74 KB
sources/TerminalVim.app/Contents/Resources/sk.lproj/InfoPlist.strings
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.67 KB
sources/TerminalVim.app/Contents/Resources/th.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.84 KB
sources/TerminalVim.app/Contents/Resources/tr.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+2.01 KB
sources/TerminalVim.app/Contents/Resources/uk.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+1.87 KB
sources/TerminalVim.app/Contents/Resources/vi.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+923 Bytes
sources/TerminalVim.app/Contents/Resources/zh_CN.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+915 Bytes
sources/TerminalVim.app/Contents/Resources/zh_HK.lproj/InfoPlist.strings
Binary file not shown.
Binary file added
BIN
+917 Bytes
sources/TerminalVim.app/Contents/Resources/zh_TW.lproj/InfoPlist.strings
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters