Skip to content

Instantly share code, notes, and snippets.

@peel
Created February 10, 2013 12:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peel/4749480 to your computer and use it in GitHub Desktop.
Save peel/4749480 to your computer and use it in GitHub Desktop.
Open in Vim automator script
on run {input, parameters}
if (count of input) > 0 then
tell application "System Events"
set runs to false
try
set p to application process "iTerm"
set runs to true
end try
end tell
tell application "iTerm"
activate
if (count of terminals) = 0 then
set t to (make new terminal)
else
set t to current terminal
end if
tell t
tell (make new session at the end of sessions)
exec command ("vim \"" & POSIX path of first item of input as text) & "\""
end tell
if not runs then
terminate first session
end if
end tell
end tell
end if
end run
@Zepeng-Mu
Copy link

Hi, is it possible to do this with Quick Action without using Applescript?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment