X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=zsh%2F.zshrc;h=32125143c1d8dfbca070aeb00a340949d313831a;hb=c597a1d86c60f1588df0470345976c2bd0686101;hp=1ed44c692cb64679c52694261f1d8cf97ca217fb;hpb=6cadb27be8da210cb4532d9f414b7c6c4449cea8;p=dotfiles.git diff --git a/zsh/.zshrc b/zsh/.zshrc index 1ed44c6..3212514 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -74,7 +74,7 @@ alias vi="vim" alias more="less" alias m="less " alias -g M="| less" -alias mc="mc ; CTP" +alias mc="mc --nomouse ; CTP" bindkey -s "OS" " popd\n" # F4 f() { @@ -96,6 +96,7 @@ alias Gd="git diff" alias Gs="git show" alias Gm="git diff --name-only --diff-filter=M" alias Gam="git commit --amend" +alias -g W="| wc -l" git_common="--oneline --abbrev-commit" alias Gl="git log $git_common --graph --decorate=short" @@ -109,11 +110,15 @@ bindkey -s "OR" " git status --short\n" # F3 # grep {{{ GREP=/usr/local/bin/grep +GREP_ARGS="--color=always --with-filename --line-number --recursive" +LESS_COLORED="less --RAW-CONTROL-CHARS" g() { - $GREP --color=always --with-filename --line-number --recursive $@ | less --RAW-CONTROL-CHARS + $GREP ${=GREP_ARGS} $@ | ${=LESS_COLORED} +} +gS() { + $GREP ${=GREP_ARGS} $@ | sort --numeric-sort | ${=LESS_COLORED} } alias -g G="| $GREP --color" -alias grep="$GREP" alias gg="git grep " # }}} @@ -147,16 +152,14 @@ alias zc="zcalc" # Completion {{{ zstyle ":completion:*:functions" ignored-patterns "_*" zstyle ":completion:*" matcher-list "" 'm:{a-z\-}={A-Z\_}' 'r:|?=** m:{a-z\-}={A-Z\_}' - _mycomp () { [ $CURRENT -eq 1 ] && _command_names || _files } zstyle ":completion:*" completer _mycomp _parameters - autoload -U compinit ; compinit -d /tmp/.zcompdump - zstyle ":completion:*:default" list-colors "" autoload -U complist +export LISTMAX=9999 # }}} # Highlighting {{{