editors.geany.windows: Add Windows support.

db4
Doug Coleman 2013-04-09 16:50:19 -07:00
parent 34403c5272
commit e9265035f9
4 changed files with 17 additions and 2 deletions

View File

@ -1,6 +1,7 @@
! Copyright (C) 2013 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: editors fry kernel make math.parser namespaces system ;
USING: editors fry kernel make math.parser namespaces system
vocabs ;
IN: editors.geany
SINGLETON: geany
@ -16,4 +17,6 @@ M: geany editor-command
geany-path ,
_ ,
"--line" , _ number>string ,
] { } make ;
] { } make ;
os windows? [ "editors.geany.windows" require ] when

View File

@ -0,0 +1 @@
Doug Coleman

View File

@ -0,0 +1 @@
windows

View File

@ -0,0 +1,10 @@
! Copyright (C) 2013 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: editors.geany io.directories.search.windows kernel
namespaces sequences system ;
IN: editors.geany.windows
M: windows geany-path
\ geany-path get-global [
"Geany" [ "Geany.exe" tail? ] find-in-program-files
] unless* ;