summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2020-09-06 10:48:08 +1000
committerMaxime Coste <mawww@kakoune.org>2020-09-06 10:48:08 +1000
commit97fd0c05100bde33423568877dbdf0b821c8e87d (patch)
treed3a0354bffbf4fafabc6c63bc69b72c636942aeb
parentb77e5f03640b1b1c0d477d12f5bdbfc32dcf2114 (diff)
parent87f9be67235d43222cd37c2dacc542271d26850f (diff)
Merge remote-tracking branch 'lenormf/repl-normalise' into master
-rw-r--r--doc/pages/changelog.asciidoc3
-rw-r--r--rc/windowing/repl/kitty.kak4
-rw-r--r--rc/windowing/repl/tmux.kak4
-rw-r--r--rc/windowing/repl/x11.kak4
4 files changed, 9 insertions, 6 deletions
diff --git a/doc/pages/changelog.asciidoc b/doc/pages/changelog.asciidoc
index ffb0975c..e9699779 100644
--- a/doc/pages/changelog.asciidoc
+++ b/doc/pages/changelog.asciidoc
@@ -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
diff --git a/rc/windowing/repl/kitty.kak b/rc/windowing/repl/kitty.kak
index 6a1aa69b..b57d6f79 100644
--- a/rc/windowing/repl/kitty.kak
+++ b/rc/windowing/repl/kitty.kak
@@ -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
}
diff --git a/rc/windowing/repl/tmux.kak b/rc/windowing/repl/tmux.kak
index fe2915e3..eb507eac 100644
--- a/rc/windowing/repl/tmux.kak
+++ b/rc/windowing/repl/tmux.kak
@@ -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
}
diff --git a/rc/windowing/repl/x11.kak b/rc/windowing/repl/x11.kak
index 5832dddc..26dcd264 100644
--- a/rc/windowing/repl/x11.kak
+++ b/rc/windowing/repl/x11.kak
@@ -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
}