18 lines
561 B
Makefile
18 lines
561 B
Makefile
# build clojurescript release
|
|
build:
|
|
shadow-cljs release module
|
|
|
|
# open a janet repl in a different os window
|
|
repl:
|
|
kitten @ launch --type=os-window --allow-remote-control --cwd=current --title=hx_repl:ludus janet -s
|
|
|
|
# send what's selected to the repl and evaluate it
|
|
eval:
|
|
sd "$" "\n" | sd "\n\n" "\n" | kitten @ send-text -m "title:hx_repl:ludus" --stdin
|
|
|
|
# send what's selected to a buffer, and then evaluate what's in the buffer
|
|
buffer:
|
|
sd "$" "\n" | sd "\n\n" "\n" > .repl-buffer
|
|
kitten @ send-text -m "title:hx_repl:ludus" --from-file .repl-buffer
|
|
|