fix editors for find-in-program-files change
parent
de9154fc5e
commit
efe701af9b
|
@ -5,7 +5,7 @@ IN: editors.editpadlite
|
||||||
|
|
||||||
: editpadlite-path ( -- path )
|
: editpadlite-path ( -- path )
|
||||||
\ editpadlite-path get-global [
|
\ editpadlite-path get-global [
|
||||||
"JGsoft" t [ >lower "editpadlite.exe" tail? ] find-in-program-files
|
"JGsoft" [ >lower "editpadlite.exe" tail? ] find-in-program-files
|
||||||
[ "editpadlite.exe" ] unless*
|
[ "editpadlite.exe" ] unless*
|
||||||
] unless* ;
|
] unless* ;
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ IN: editors.editpadpro
|
||||||
|
|
||||||
: editpadpro-path ( -- path )
|
: editpadpro-path ( -- path )
|
||||||
\ editpadpro-path get-global [
|
\ editpadpro-path get-global [
|
||||||
"JGsoft" t [ >lower "editpadpro.exe" tail? ] find-in-program-files
|
"JGsoft" [ >lower "editpadpro.exe" tail? ] find-in-program-files
|
||||||
[ "editpadpro.exe" ] unless*
|
[ "editpadpro.exe" ] unless*
|
||||||
] unless* ;
|
] unless* ;
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ IN: editors.editplus
|
||||||
|
|
||||||
: editplus-path ( -- path )
|
: editplus-path ( -- path )
|
||||||
\ editplus-path get-global [
|
\ editplus-path get-global [
|
||||||
"EditPlus 2" t [ "editplus.exe" tail? ] find-in-program-files
|
"EditPlus 2" [ "editplus.exe" tail? ] find-in-program-files
|
||||||
[ "editplus.exe" ] unless*
|
[ "editplus.exe" ] unless*
|
||||||
] unless* ;
|
] unless* ;
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ IN: editors.emacs.windows
|
||||||
|
|
||||||
M: windows default-emacsclient
|
M: windows default-emacsclient
|
||||||
{
|
{
|
||||||
[ "Emacs" t [ "emacsclientw.exe" tail? ] find-in-program-files ]
|
[ "Emacs" [ "emacsclientw.exe" tail? ] find-in-program-files ]
|
||||||
[ "Emacs" t [ "emacsclient.exe" tail? ] find-in-program-files ]
|
[ "Emacs" [ "emacsclient.exe" tail? ] find-in-program-files ]
|
||||||
[ "emacsclient.exe" ]
|
[ "emacsclient.exe" ]
|
||||||
} 0|| ;
|
} 0|| ;
|
||||||
|
|
|
@ -5,7 +5,7 @@ IN: editors.emeditor
|
||||||
|
|
||||||
: emeditor-path ( -- path )
|
: emeditor-path ( -- path )
|
||||||
\ emeditor-path get-global [
|
\ emeditor-path get-global [
|
||||||
"EmEditor" t [ "EmEditor.exe" tail? ] find-in-program-files
|
"EmEditor" [ "EmEditor.exe" tail? ] find-in-program-files
|
||||||
[ "EmEditor.exe" ] unless*
|
[ "EmEditor.exe" ] unless*
|
||||||
] unless* ;
|
] unless* ;
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ IN: editors.etexteditor
|
||||||
|
|
||||||
: etexteditor-path ( -- str )
|
: etexteditor-path ( -- str )
|
||||||
\ etexteditor-path get-global [
|
\ etexteditor-path get-global [
|
||||||
"e" t [ "e.exe" tail? ] find-in-program-files
|
"e" [ "e.exe" tail? ] find-in-program-files
|
||||||
[ "e" ] unless*
|
[ "e" ] unless*
|
||||||
] unless* ;
|
] unless* ;
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,6 @@ IN: editors.gvim.windows
|
||||||
|
|
||||||
M: windows gvim-path
|
M: windows gvim-path
|
||||||
\ gvim-path get-global [
|
\ gvim-path get-global [
|
||||||
"vim" t [ "gvim.exe" tail? ] find-in-program-files
|
"vim" [ "gvim.exe" tail? ] find-in-program-files
|
||||||
[ "gvim.exe" ] unless*
|
[ "gvim.exe" ] unless*
|
||||||
] unless* ;
|
] unless* ;
|
||||||
|
|
|
@ -4,7 +4,7 @@ IN: editors.notepadpp
|
||||||
|
|
||||||
: notepadpp-path ( -- path )
|
: notepadpp-path ( -- path )
|
||||||
\ notepadpp-path get-global [
|
\ notepadpp-path get-global [
|
||||||
"notepad++" t [ "notepad++.exe" tail? ] find-in-program-files
|
"notepad++" [ "notepad++.exe" tail? ] find-in-program-files
|
||||||
[ "notepad++.exe" ] unless*
|
[ "notepad++.exe" ] unless*
|
||||||
] unless* ;
|
] unless* ;
|
||||||
|
|
||||||
|
|
|
@ -7,11 +7,11 @@ IN: editors.scite
|
||||||
|
|
||||||
: scite-path ( -- path )
|
: scite-path ( -- path )
|
||||||
\ scite-path get-global [
|
\ scite-path get-global [
|
||||||
"Scintilla Text Editor" t
|
"Scintilla Text Editor"
|
||||||
[ >lower "scite.exe" tail? ] find-in-program-files
|
[ >lower "scite.exe" tail? ] find-in-program-files
|
||||||
|
|
||||||
[
|
[
|
||||||
"SciTE Source Code Editor" t
|
"SciTE Source Code Editor"
|
||||||
[ >lower "scite.exe" tail? ] find-in-program-files
|
[ >lower "scite.exe" tail? ] find-in-program-files
|
||||||
] unless*
|
] unless*
|
||||||
[ "scite.exe" ] unless*
|
[ "scite.exe" ] unless*
|
||||||
|
|
|
@ -4,7 +4,7 @@ IN: editors.ted-notepad
|
||||||
|
|
||||||
: ted-notepad-path ( -- path )
|
: ted-notepad-path ( -- path )
|
||||||
\ ted-notepad-path get-global [
|
\ ted-notepad-path get-global [
|
||||||
"TED Notepad" t [ "TedNPad.exe" tail? ] find-in-program-files
|
"TED Notepad" [ "TedNPad.exe" tail? ] find-in-program-files
|
||||||
[ "TedNPad.exe" ] unless*
|
[ "TedNPad.exe" ] unless*
|
||||||
] unless* ;
|
] unless* ;
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ IN: editors.textpad
|
||||||
|
|
||||||
: textpad-path ( -- path )
|
: textpad-path ( -- path )
|
||||||
\ textpad-path get-global [
|
\ textpad-path get-global [
|
||||||
"TextPad 5" t [ "TextPad.exe" tail? ] find-in-program-files
|
"TextPad 5" [ "TextPad.exe" tail? ] find-in-program-files
|
||||||
[ "TextPad.exe" ] unless*
|
[ "TextPad.exe" ] unless*
|
||||||
] unless* ;
|
] unless* ;
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ IN: editors.ultraedit
|
||||||
|
|
||||||
: ultraedit-path ( -- path )
|
: ultraedit-path ( -- path )
|
||||||
\ ultraedit-path get-global [
|
\ ultraedit-path get-global [
|
||||||
"IDM Computer Solutions" t [ "uedit32.exe" tail? ] find-in-program-files
|
"IDM Computer Solutions" [ "uedit32.exe" tail? ] find-in-program-files
|
||||||
[ "uedit32.exe" ] unless*
|
[ "uedit32.exe" ] unless*
|
||||||
] unless* ;
|
] unless* ;
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ IN: editors.wordpad
|
||||||
|
|
||||||
: wordpad-path ( -- path )
|
: wordpad-path ( -- path )
|
||||||
\ wordpad-path get [
|
\ wordpad-path get [
|
||||||
"Windows NT\\Accessories" t
|
"Windows NT\\Accessories"
|
||||||
[ "wordpad.exe" tail? ] find-in-program-files
|
[ "wordpad.exe" tail? ] find-in-program-files
|
||||||
] unless* ;
|
] unless* ;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue