This commit is contained in:
2024-04-30 07:08:23 +02:00
commit a711247971
2043 changed files with 16874 additions and 0 deletions

View File

@@ -0,0 +1 @@
prog-mode

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: comment
# --
(*
$0
*)

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: considering
# --
considering $1
$0
end considering

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: considering-application-responses
# --
considering application responses
$0
end considering

View File

@@ -0,0 +1,4 @@
# -*- mode: snippet -*-
# name: display-dialog
# --
display dialog "$0"

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# name: if
# --
if $1 then
$2
else
$0
end if

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: ignoring
# --
ignoring $1
$0
end ignoring

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: ignoring-application-responses
# --
ignoring application responses
$0
end ignoring

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: on
# --
on $1
$0
end $1

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: repeat
# --
repeat $1
$0
end repeat

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: repeat-until
# --
repeat until $1
$0
end repeat

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: repeat-while
# --
repeat while $1
$0
end repeat

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: repeat-with
# --
repeat with $1
$0
end repeat

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: tell-application
# --
tell application "$1"
$0
end tell

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: tell-application-to-activate
# --
tell application "$1" to activate
$0

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# name: try
# --
try
$1
on error $2
$0
end try

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: using-terms-from-application
# --
using terms from application "$1"
$0
end using terms from

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: with-timeout-of-seconds
# --
with timeout of $1 seconds
$0
end timeout

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: with-transaction
# --
with transaction
$0
end transaction