aboutsummaryrefslogtreecommitdiff
path: root/zsh/.zsh/keybindings.zsh
diff options
context:
space:
mode:
authorxero <x@xero.nu>2015-03-07 20:49:16 -0500
committerxero <x@xero.nu>2015-03-07 20:49:28 -0500
commit37ef7b9e48d9a496c08540772a110b85aacac2e6 (patch)
tree90ca18509aa45ec523a550c3a6ad622ca2d627a4 /zsh/.zsh/keybindings.zsh
parent627c9813c7c95ea2e3d45de0e44bab4f17e78f51 (diff)
downloaddotfiles_ascii-37ef7b9e48d9a496c08540772a110b85aacac2e6.tar.xz
dotfiles_ascii-37ef7b9e48d9a496c08540772a110b85aacac2e6.zip
organize and modularize zsh configs
Diffstat (limited to 'zsh/.zsh/keybindings.zsh')
-rwxr-xr-xzsh/.zsh/keybindings.zsh51
1 files changed, 51 insertions, 0 deletions
diff --git a/zsh/.zsh/keybindings.zsh b/zsh/.zsh/keybindings.zsh
new file mode 100755
index 0000000..2f80417
--- /dev/null
+++ b/zsh/.zsh/keybindings.zsh
@@ -0,0 +1,51 @@
+# ██
+# ░██
+# ██████ ██████░██
+# ░░░░██ ██░░░░ ░██████
+# ██ ░░█████ ░██░░░██
+# ██ ░░░░░██░██ ░██
+# ██████ ██████ ░██ ░██
+# ░░░░░░ ░░░░░░ ░░ ░░
+#
+# ▓▓▓▓▓▓▓▓▓▓
+# ░▓ author ▓ xero <x@xero.nu>
+# ░▓ code ▓ http://code.xero.nu/dotfiles
+# ░▓ mirror ▓ http://git.io/.files
+# ░▓▓▓▓▓▓▓▓▓▓
+# ░░░░░░░░░░
+#
+#█▓▒░ keybindings
+typeset -A key
+
+key[Home]=${terminfo[khome]}
+key[End]=${terminfo[kend]}
+key[Insert]=${terminfo[kich1]}
+key[Delete]=${terminfo[kdch1]}
+key[Up]=${terminfo[kcuu1]}
+key[Down]=${terminfo[kcud1]}
+key[Left]=${terminfo[kcub1]}
+key[Right]=${terminfo[kcuf1]}
+key[PageUp]=${terminfo[kpp]}
+key[PageDown]=${terminfo[knp]}
+
+[[ -n "${key[Home]}" ]] && bindkey "${key[Home]}" beginning-of-line
+[[ -n "${key[End]}" ]] && bindkey "${key[End]}" end-of-line
+[[ -n "${key[Insert]}" ]] && bindkey "${key[Insert]}" overwrite-mode
+[[ -n "${key[Delete]}" ]] && bindkey "${key[Delete]}" delete-char
+[[ -n "${key[Up]}" ]] && bindkey "${key[Up]}" up-line-or-history
+[[ -n "${key[Down]}" ]] && bindkey "${key[Down]}" down-line-or-history
+[[ -n "${key[Left]}" ]] && bindkey "${key[Left]}" backward-char
+[[ -n "${key[Right]}" ]] && bindkey "${key[Right]}" forward-char
+[[ -n "${key[PageUp]}" ]] && bindkey "${key[PageUp]}" beginning-of-buffer-or-history
+[[ -n "${key[PageDown]}" ]] && bindkey "${key[PageDown]}" end-of-buffer-or-history
+
+if (( ${+terminfo[smkx]} )) && (( ${+terminfo[rmkx]} )); then
+ function zle-line-init () {
+ printf '%s' "${terminfo[smkx]}"
+ }
+ function zle-line-finish () {
+ printf '%s' "${terminfo[rmkx]}"
+ }
+ zle -N zle-line-init
+ zle -N zle-line-finish
+fi