diff --git a/basis/editors/bbedit/authors.txt b/basis/editors/bbedit/authors.txt new file mode 100644 index 0000000000..e091bb8164 --- /dev/null +++ b/basis/editors/bbedit/authors.txt @@ -0,0 +1 @@ +John Benediktsson diff --git a/basis/editors/bbedit/bbedit.factor b/basis/editors/bbedit/bbedit.factor new file mode 100644 index 0000000000..26e5130a57 --- /dev/null +++ b/basis/editors/bbedit/bbedit.factor @@ -0,0 +1,9 @@ +USING: editors kernel make namespaces ; +IN: editors.bbedit + +SINGLETON: bbedit +bbedit editor-class set-global + +M: bbedit editor-command ( file line -- command ) + drop + [ "open" , "-a" , "BBEdit" , , ] { } make ; diff --git a/basis/editors/bbedit/summary.txt b/basis/editors/bbedit/summary.txt new file mode 100644 index 0000000000..c9d8be6e45 --- /dev/null +++ b/basis/editors/bbedit/summary.txt @@ -0,0 +1 @@ +BBEdit editor integration