Crear un applet. La secuencia de comandos a continuación debe comenzar. Guarde el applet en el lugar que prefiera ( /Applications/
). Seleccione cualquier archivo de texto y presione ⌘ + I (nfo) > Abrir con: > Otros > Seleccione su Applet, luego haga clic en cambiar todo. Ahora, cada vez que abra cualquier archivo de texto que se ejecutará el applet, se abrirá el archivo en vim.
on open theFiles
tell application "Terminal"
activate
-- If there are no open windows, open one.
if (count of windows) is less than 1 then
do script ""
end if
set theTab to selected tab in first window
set filePath to POSIX path of item 1 of theFiles
do script "/usr/bin/vim " & quoted form of filePath in theTab
end tell
return
end open
on run
-- Handle the case where the script is launched without any dropped files
open (choose file with multiple selections allowed)
return
end run