2013-04-09 19:41:07 -04:00
|
|
|
! Copyright (C) 2013 Doug Coleman.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2013-04-09 19:50:19 -04:00
|
|
|
USING: editors fry kernel make math.parser namespaces system
|
|
|
|
vocabs ;
|
2013-04-09 19:41:07 -04:00
|
|
|
IN: editors.geany
|
|
|
|
|
|
|
|
SINGLETON: geany
|
|
|
|
geany editor-class set-global
|
|
|
|
|
|
|
|
HOOK: geany-path os ( -- path )
|
|
|
|
|
|
|
|
M: unix geany-path
|
|
|
|
\ geany-path get-global [ "geany" ] unless* ;
|
|
|
|
|
|
|
|
M: geany editor-command
|
|
|
|
'[
|
|
|
|
geany-path ,
|
|
|
|
_ ,
|
|
|
|
"--line" , _ number>string ,
|
2013-04-09 19:50:19 -04:00
|
|
|
] { } make ;
|
|
|
|
|
|
|
|
os windows? [ "editors.geany.windows" require ] when
|