Handbook
Glossary
find-lite-xl-editor-path ( -- path )
Vocabulary
editors
.
lite-xl
Inputs
None
Outputs
path
an
object
Definition
USING:
system
;
IN:
editors.lite-xl
HOOK:
find-lite-xl-editor-path
os
( -- path )
Methods
USING:
editors.lite-xl
system
;
M:
macos
find-lite-xl-editor-path
{
"open"
"-a"
"Lite XL"
}
;
USING:
editors.lite-xl
io.standard-paths
system
;
M:
unix
find-lite-xl-editor-path
"xl"
?find-in-path
;
USING:
editors.lite-xl
io.standard-paths
kernel
system
;
M:
windows
find-lite-xl-editor-path
{
"lite-xl"
}
"xl.exe"
find-in-applications
[
"xl.exe"
]
unless*
;