From 372eced08697e89d9f943c7d978d487dbcdbc11b Mon Sep 17 00:00:00 2001 From: Jesper Fussing Moerk Date: Tue, 13 Feb 2018 07:04:41 +0100 Subject: [PATCH] Fixed HOME/END keys in terminals --- zsh/.zshrc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index d19ed4c..7223c5c 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -32,4 +32,8 @@ alias mopd="nohup mopidy >/dev/null 2>&1 &" unsetopt share_history #Add OC support -source <(oc completion zsh) \ No newline at end of file +source <(oc completion zsh) + +#HOME/END Support +bindkey "\e[7~" beginning-of-line +bindkey "\e[8~" end-of-line \ No newline at end of file