X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshrc;h=29b8b86b8068fa2729956e935d5542bd349ff7b0;hb=42cdb33949473fc89a15b5ad0e8c202799f93b4a;hp=38571fd035309c98df7d8c57bb74ef6e0188e54b;hpb=e7927a8e2a3600fbf33cdb70aa53ebdb988af275;p=grml-etc-core.git diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 38571fd..29b8b86 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -432,10 +432,6 @@ is4 && setopt share_history # save each command's beginning timestamp and the duration to the history file setopt extended_history -# If a new command line being added to the history list duplicates an older -# one, the older command is removed from the list -is4 && setopt histignorealldups - # remove command lines from the history list when the first character on the # line is a space setopt histignorespace @@ -905,14 +901,7 @@ function grmlcomp () { fi local localname - if check_com hostname ; then - localname=$(hostname) - elif check_com hostnamectl ; then - localname=$(hostnamectl --static) - else - localname="$(uname -n)" - fi - + localname="$(uname -n)" hosts=( "${localname}" "$_ssh_config_hosts[@]" @@ -1201,9 +1190,9 @@ zle -N grml-zsh-fg function sudo-command-line () { [[ -z $BUFFER ]] && zle up-history local cmd="sudo " - if [[ ${BUFFER:0:${#cmd}} == ${cmd} ]]; then + if [[ ${BUFFER} == ${cmd}* ]]; then CURSOR=$(( CURSOR-${#cmd} )) - BUFFER="${BUFFER:${#cmd}}" + BUFFER="${BUFFER#$cmd}" else BUFFER="${cmd}${BUFFER}" CURSOR=$(( CURSOR+${#cmd} )) @@ -2583,7 +2572,7 @@ function grml_reset_screen_title () { # see http://www.faqs.org/docs/Linux-mini/Xterm-Title.html [[ ${NOTITLE:-} -gt 0 ]] && return 0 case $TERM in - (xterm*|rxvt*|alacritty) + (xterm*|rxvt*|alacritty|foot) set_title ${(%):-"%n@%m: %~"} ;; esac @@ -2620,7 +2609,7 @@ function grml_cmd_to_screen_title () { function grml_control_xterm_title () { case $TERM in - (xterm*|rxvt*|alacritty) + (xterm*|rxvt*|alacritty|foot) set_title "${(%):-"%n@%m:"}" "$2" ;; esac