Add some Terminal+Cargo AppleScripts

This commit is contained in:
Ben S
2015-12-08 07:29:07 +00:00
parent 2defa5f908
commit 86c005e015
3 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
tell application "BBEdit"
tell front text document
if modified = true then
save its document
end if
set the_file to its file
if the_file ­ missing value then
set the_path to POSIX path of ((the_file as text) & "::")
else
error "Document does not point to a file"
end if
end tell
end tell
tell application "Terminal"
do script "cd " & (quoted form of the_path) & "; cargo build"
end tell

View File

@@ -0,0 +1,17 @@
tell application "BBEdit"
tell front text document
if modified = true then
save its document
end if
set the_file to its file
if the_file ­ missing value then
set the_path to POSIX path of ((the_file as text) & "::")
else
error "Document does not point to a file"
end if
end tell
end tell
tell application "Terminal"
do script "cd " & (quoted form of the_path) & "; cargo doc --open"
end tell

View File

@@ -0,0 +1,17 @@
tell application "BBEdit"
tell front text document
if modified = true then
save its document
end if
set the_file to its file
if the_file ­ missing value then
set the_path to POSIX path of ((the_file as text) & "::")
else
error "Document does not point to a file"
end if
end tell
end tell
tell application "Terminal"
do script "cd " & (quoted form of the_path) & "; cargo test"
end tell