6726ce6618
scel is modified to support in-process library recompilation. the key binding has slightly been changed: C-c C-l - recompile the library C-c C-o - restart the interpreter Signed-off-by: Tim Blechmann <tim@klingt.org>
15 lines
252 B
Python
15 lines
252 B
Python
+ Platform {
|
|
recompile{
|
|
if ( this.hasFeature( \emacs ) ) {
|
|
Emacs.evalLispExpression( "(sclang-start)" );
|
|
};
|
|
}
|
|
}
|
|
|
|
+ LinuxPlatform {
|
|
recompile{
|
|
if ( this.hasFeature( \emacs ) ) {
|
|
Emacs.evalLispExpression( "(sclang-recompile)" );
|
|
};
|
|
}
|
|
}
|