diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-11-05 19:27:02 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2017-06-01 18:37:35 +0200 |
commit | b8934837f867f14d219b3360ce5407aae9dd005e (patch) | |
tree | bdf6185955c64edce5ecac6058aea9d7cc97dfd8 | |
parent | 6e44cecdf73c2015c98cabca791240b7ff1120cb (diff) | |
download | dotfiles-b8934837f867f14d219b3360ce5407aae9dd005e.tar.xz |
zsh/keybindings: Remove function keyword
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
-rw-r--r-- | zsh/keybindings.zsh | 4 |
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 |