editors.atom: make it work better with Mac OS X.
parent
edb61c9b24
commit
2ff04469af
|
@ -1,7 +1,7 @@
|
||||||
! Copyright (C) 2014 Doug Coleman.
|
! Copyright (C) 2014 Doug Coleman.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: editors io.standard-paths kernel make math.parser
|
USING: editors io.pathnames io.standard-paths kernel make
|
||||||
namespaces sequences ;
|
math.parser namespaces sequences system ;
|
||||||
IN: editors.atom
|
IN: editors.atom
|
||||||
|
|
||||||
SINGLETON: atom-editor
|
SINGLETON: atom-editor
|
||||||
|
@ -9,8 +9,20 @@ atom-editor editor-class set-global
|
||||||
|
|
||||||
SYMBOL: atom-path
|
SYMBOL: atom-path
|
||||||
|
|
||||||
|
HOOK: find-atom os ( -- path )
|
||||||
|
|
||||||
|
M: object find-atom
|
||||||
|
"atom" ?find-in-path ;
|
||||||
|
|
||||||
|
M: macosx find-atom
|
||||||
|
"com.github.Atom" find-native-bundle [
|
||||||
|
"Contents/MacOS/Atom" append-path
|
||||||
|
] [
|
||||||
|
f
|
||||||
|
] if* ;
|
||||||
|
|
||||||
M: atom-editor editor-command ( file line -- command )
|
M: atom-editor editor-command ( file line -- command )
|
||||||
[
|
[
|
||||||
atom-path get [ "atom" ?find-in-path ] unless* ,
|
atom-path get [ find-atom ] unless* ,
|
||||||
number>string ":" glue ,
|
number>string ":" glue ,
|
||||||
] { } make ;
|
] { } make ;
|
||||||
|
|
Loading…
Reference in New Issue