atom: Add support for github's atom editor.
parent
d27fa562e8
commit
c9585b936b
|
@ -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 ;
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Doug Coleman
|
|
@ -0,0 +1 @@
|
||||||
|
Atom editor integration
|
|
@ -0,0 +1 @@
|
||||||
|
not loaded
|
Loading…
Reference in New Issue