Replies: 1 comment
-
The FAQ points you to this:
https://orbitalquark.github.io/textadept/manual.html#textadept. There
are examples of setting up run commands there. The LuaDoc also covers
other commands like compile and build:
https://orbitalquark.github.io/textadept/api.html#textadept.run
Perhaps something like:
textadept.run.compile_commands.Foo = 'foo-compiler "%f"'
textadept.run.run_commands.Foo = 'foo-run "%f"'
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For example, the language is
Foo
, the source file extension is.foo
. The compiler (to bytecode) isfoo-compiler
and it will compiletest.foo
totest.run
(executable) ortest.lib
(library). The vm isfoo-runner
, the executable can be run withfoo-runner test.run
. The debugger isfoo-dbg
.Beta Was this translation helpful? Give feedback.
All reactions