From: John Benediktsson Date: Mon, 1 Aug 2022 02:43:53 +0000 (-0700) Subject: editors.bluefish: adding Bluefish editor support X-Git-Tag: 0.99~1248 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=b2e7baf0bddf6cdfd575a108fd286d001664a7d6 editors.bluefish: adding Bluefish editor support --- diff --git a/basis/editors/bluefish/authors.txt b/basis/editors/bluefish/authors.txt new file mode 100644 index 0000000000..e091bb8164 --- /dev/null +++ b/basis/editors/bluefish/authors.txt @@ -0,0 +1 @@ +John Benediktsson diff --git a/basis/editors/bluefish/bluefish.factor b/basis/editors/bluefish/bluefish.factor new file mode 100644 index 0000000000..29d8b85a28 --- /dev/null +++ b/basis/editors/bluefish/bluefish.factor @@ -0,0 +1,10 @@ +USING: editors kernel make namespaces ; +IN: editors.bluefish + +SINGLETON: bluefish + +editor-class [ bluefish ] initialize + +M: bluefish editor-command + drop + [ "open" , "-a" , "Bluefish" , , ] { } make ; diff --git a/basis/editors/bluefish/summary.txt b/basis/editors/bluefish/summary.txt new file mode 100644 index 0000000000..1706116090 --- /dev/null +++ b/basis/editors/bluefish/summary.txt @@ -0,0 +1 @@ +Bluefish editor integration