From: Samir Benmendil Date: Mon, 3 Dec 2012 04:02:53 +0000 (+0100) Subject: remove zsh dir X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/8c7911883ed8b42987c9179512d60dbb3681dc2f?ds=sidebyside remove zsh dir --- diff --git a/zsh/bindkeyrc b/zsh/bindkeyrc deleted file mode 100644 index c2dc06f..0000000 --- a/zsh/bindkeyrc +++ /dev/null @@ -1,37 +0,0 @@ -# create a zkbd compatible hash; -# to add other keys to this hash, see: man 5 terminfo -# http://zshwiki.org/home/zle/bindkeys - -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]} - -# setup key accordingly -[[ -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 - -# Finally, make sure the terminal is in application mode, when zle is -# active. Only then are the values from $terminfo valid. -function zle-line-init () { - echoti smkx -} -function zle-line-finish () { - echoti rmkx -} -zle -N zle-line-init -zle -N zle-line-finish diff --git a/zsh/functions/ex b/zsh/functions/ex deleted file mode 100644 index f6fb12d..0000000 --- a/zsh/functions/ex +++ /dev/null @@ -1,24 +0,0 @@ -# ex - archive extractor -# usage: ex -ex () -{ - if [ -f $1 ] ; then - case $1 in - *.tar.bz2) tar xjf $1 ;; - *.tar.gz) tar xzf $1 ;; - *.tar.xz) tar -x --xz -f $1 ;; - *.bz2) bunzip2 $1 ;; - *.rar) unrar x $1 ;; - *.gz) gunzip $1 ;; - *.tar) tar xf $1 ;; - *.tbz2) tar xjf $1 ;; - *.tgz) tar xzf $1 ;; - *.zip) unzip $1 ;; - *.Z) uncompress $1 ;; - *.7z) 7z x $1 ;; - *) echo "'$1' cannot be extracted via ex()" ;; - esac - else - echo "'$1' is not a valid file" - fi -}