aboutsummaryrefslogtreecommitdiffstats
path: root/zsh
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2016-11-05 19:27:02 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2017-06-01 18:37:35 +0200
commitb8934837f867f14d219b3360ce5407aae9dd005e (patch)
treebdf6185955c64edce5ecac6058aea9d7cc97dfd8 /zsh
parent6e44cecdf73c2015c98cabca791240b7ff1120cb (diff)
downloaddotfiles-b8934837f867f14d219b3360ce5407aae9dd005e.tar.xz
zsh/keybindings: Remove function keyword
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'zsh')
-rw-r--r--zsh/keybindings.zsh4
1 files changed, 2 insertions, 2 deletions
diff --git a/zsh/keybindings.zsh b/zsh/keybindings.zsh
index 8638589..53df9cd 100644
--- a/zsh/keybindings.zsh
+++ b/zsh/keybindings.zsh
@@ -5,10 +5,10 @@
# Make sure the terminal is in application mode when zle is active. Only then
# are the values from $terminfo valid.
-function zle-line-init () {
+zle-line-init() {
printf '%s' "${terminfo[smkx]}"
}
-function zle-line-finish () {
+zle-line-finish () {
printf '%s' "${terminfo[rmkx]}"
}
zle -N zle-line-init