Merge remote-tracking branch 'lenormf/repl-normalise' into master

This commit is contained in:
Maxime Coste 2020-09-06 10:48:08 +10:00
commit 97fd0c0510
4 changed files with 9 additions and 6 deletions

View File

@ -5,6 +5,9 @@ released versions.
== Kakoune 2020.09.01
* The `repl` and `send-text` aliases have been renamed respectively into
`repl-new` and `repl-send-text`.
* Daemon mode (`-d` switch) does not fork anymore.
== Kakoune 2020.08.04

View File

@ -38,7 +38,7 @@ define-command -hidden -params 0..1 \
}
}
alias global repl kitty-repl
alias global send-text kitty-send-text
alias global repl-new kitty-repl
alias global repl-send-text kitty-send-text
}

View File

@ -49,7 +49,7 @@ define-command -hidden tmux-send-text -params 0..1 -docstring %{
}
}
alias global repl tmux-repl-horizontal
alias global send-text tmux-send-text
alias global repl-new tmux-repl-horizontal
alias global repl-send-text tmux-send-text
}

View File

@ -31,7 +31,7 @@ define-command x11-send-text -docstring "send the selected text to the repl wind
}
}
alias global repl x11-repl
alias global send-text x11-send-text
alias global repl-new x11-repl
alias global repl-send-text x11-send-text
}