]> Sergey Matveev's repositories - dotfiles.git/blobdiff - zsh/.zshrc
Unnecessary escape
[dotfiles.git] / zsh / .zshrc
index 73802a3ae367024827f2ed201d89c674fd5ec8ec..2f04f405d7c11c5f137d809fe317200896c54a45 100644 (file)
@@ -1,7 +1,6 @@
 # vim: foldmethod=marker:foldlevel=0
 
 # Basic options {{{
-setopt INTERACTIVE_COMMENTS
 setopt GLOB_STAR_SHORT GLOB_DOTS EXTENDED_GLOB
 setopt NO_NOMATCH
 setopt AUTO_PUSHD PUSHD_IGNORE_DUPS
@@ -53,7 +52,7 @@ bindkey -M isearch "^[[B" history-incremental-pattern-search-forward
 function zle-line-init zle-keymap-select {
     mode_vi=${${KEYMAP/vicmd/+}/(main|viins)/-}
     [[ $timer ]] && timer_show=$(( $SECONDS - $timer ))
-    prompt="%2~|"
+    prompt="%2~ "
     prompt+="%U${timer_show}%u|"
     prompt+="%B%?%b"
     prompt+="${mode_vi}"
@@ -83,8 +82,7 @@ alias -g W="| wc -l | sed 's/ //g'"
 alias mc="mc --nomouse"
 
 f() {
-    # find . -name "*$1*" -print
-    print -C 1 **$1*
+    find . -name "*$1*" -print
 }
 
 alias ssh="TERM=xterm ssh"
@@ -136,12 +134,11 @@ GREP_ARGS=(
     --exclude-dir=.git
     --exclude-dir=.tags
 )
-LESS_COLOURED=(less --RAW-CONTROL-CHARS)
 g() {
-    grep $GREP_ARGS $@ | $LESS_COLOURED
+    grep $GREP_ARGS $@ | less
 }
 GS() {
-    grep $GREP_ARGS $@ | sort --numeric-sort | $LESS_COLOURED
+    grep $GREP_ARGS $@ | sort --numeric-sort | less
 }
 alias -g G="| grep --colour=always"
 alias gg="git grep "
@@ -156,7 +153,7 @@ mailpath=(
     ~/mail/mbox"?Neue Nachrichten in =mbox"
     ~/mail/arbeit"?Neue Nachrichten in =arbeit"
 )
-alias arr="mutt -f \=arbeit -e 'source ~/.mutt/accounts/stcnet.ru'"
+alias arr="mutt -f =arbeit -e 'source ~/.mutt/accounts/stcnet.ru'"
 alias sent="mutt -f =sent-\`date '+%y-%m'\`"
 bindkey -s "\eOP" " inc\n" # F1
 # }}}