Skip to content

Instantly share code, notes, and snippets.

@kbrx93
Forked from charlietran/TerminalVim.scpt
Created December 6, 2018 16:38
Show Gist options
  • Save kbrx93/0b4ca236f1d06ec4206883999f6d5bc9 to your computer and use it in GitHub Desktop.
Save kbrx93/0b4ca236f1d06ec4206883999f6d5bc9 to your computer and use it in GitHub Desktop.
Open file in iTerm vim for MacOS Sierra 这个版本每个文件都是新窗口
-- TerminalVim.app
-- This creates a shim Application that will enable you to open files from the Finder in vim using iTerm
-- To use this script:
-- 1. Open Automator and create a new Application
-- 2. Add the "Run Applescript" action
-- 3. Paste this script into the Run Applescript section
-- 4. Save the application as TerminalVim.app in your Applications folder
-- 5. In the Finder, right click on a file and select "Open With". In that window you can set TerminalVim as a default
on run {input, parameters}
tell application "iTerm"
create window with default profile
tell front window
tell current session
write text ("vim " & quote & POSIX path of input & quote & "; exit")
end tell
end tell
end tell
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment