atom: Add support for github's atom editor.

db4
Doug Coleman 2014-04-23 23:41:35 -07:00
parent d27fa562e8
commit c9585b936b
4 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,16 @@
! Copyright (C) 2014 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: editors kernel make math.parser namespaces sequences ;
IN: editors.atom
SINGLETON: atom-editor
atom-editor \ editor-class set-global
SYMBOL: atom-path
M: atom-editor editor-command ( file line -- command )
[
atom-path get "atom" or ,
number>string ":" glue ,
] { } make ;

View File

@ -0,0 +1 @@
Doug Coleman

View File

@ -0,0 +1 @@
Atom editor integration

View File

@ -0,0 +1 @@
not loaded