You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
247 B
Plaintext

decl int livedown_port 8642
def livedown-start %{ %sh{
(
livedown start --open --port "$kak_opt_livedown_port" "$kak_buffile"
) >/dev/null 2>&1 </dev/null &
}}
def livedown-stop %{ %sh{
livedown stop --port "$kak_opt_livedown_port"
}}