web-dev-qa-db-ja.com

同じ端末の最後のコマンド

Bashで、2つの端末を開いていて、それぞれが独自の履歴を保持している場合、上向き矢印を押すと、常にその端末に入力された前のコマンドが表示されます。

Zshでは履歴が共有されるため、上向き矢印はいずれかの端末に入力された最後のコマンドを示します。私はctrl-Rが完全な共有履歴を提供するのが好きですが、上向き矢印でアクティブな端末からの最後のコマンドを取得する方法はありますか?

48
mseebach

setoptとは何ですか?

たぶんあなたはオプションSHARE_HISTORYを設定しています。

setopt no_share_historyまたはunsetopt share_historyで設定を解除できます。

その他のオプションについては、man zshoptionsをご覧ください。

72
lolesque

直接お役に立てることはできませんが、私の端末では、コマンド履歴は1つの端末に対応しているため、期待どおりの動作になります。以下に、.zshrcファイルを印刷します。遊んでください。ターミナルをYakuakeで実行しています。

# The following lines were added by compinstall

bindkey -v

bindkey -M viins '^r' history-incremental-search-backward
bindkey -M vicmd '^r' history-incremental-search-backward


#http://grml.org/zsh/zsh-lovers.html
zstyle ':completion:*' use-cache on
zstyle ':completion:*' cache-path ~/.zsh/cache



zstyle ':completion:*' completer _complete _match _approximate
zstyle ':completion:*:match:*' original only
zstyle ':completion:*:approximate:*' max-errors 1 numeric
zstyle ':completion:*' expand prefix suffix
zstyle ':completion:*' list-colors ''
zstyle ':completion:*' list-suffixes true
zstyle ':completion:*' original true
zstyle ':completion:*:functions' ignored-patterns '_*'
zstyle ':completion:*:cd:*' ignore-parents parent pwd
zstyle :compinstall filename '/home/borys/.zshrc'
zstyle ':completion:*:(rm|kill|diff):*' ignore-line yes

autoload colors; colors
setopt autocd
setopt extendedglob


autoload -Uz compinit
compinit
# End of lines added by compinstall
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
# End of lines configured by zsh-newuser-install

# opens txt files in vi
alias -s txt=vi

#shortcuts for going up in directories hierarchy
alias -g ...='../..'
alias -g ....='../../..'
alias -g .....='../../../..'

alias d="dirs -v"
setopt PUSHD_IGNORE_DUPS
setopt AUTO_PUSHD
DIRSTACKSIZE=14



alias findfn="find -type f -name "
alias duall="du -s ./* | sort -n| cut -f 2-|xargs -i du -sh {}"

#Prompt theme 
COLOR_RESET="%{$reset_color%}"
PS1="$fg_bold[black][%n@%m:$fg[blue]%~]
$COLOR_RESET%%"
PS2=$PS1
  # PS1=[%n@%m:%2~]

# color stderr
exec 2>>(while read line; do
  print '\e[91m'${(q)line}'\e[0m' > /dev/tty; print -n $'\0'; done &)

#show vi mode in Prompt
function zle-line-init zle-keymap-select {
#fg_light_red=$'%{\e[5;25m%}'

#    RPS1="$fg_light_red ${${KEYMAP/vicmd/-- NORMAL --}/(main|viins)/-- INSERT --}"
#    RPS2=$RPS1
#    PS1="${${KEYMAP/vicmd/-- NORMAL --}/(main|viins)/-- INSERT --}
#[%n@%m:%2~]"
PS1="${${KEYMAP/vicmd/$COLOR_RESET}/(main|viins)/$fg_bold[black]}[%n@%m:$fg[blue]%~]
$COLOR_RESET%%"
    PS2=$PS1
    zle reset-Prompt
}
zle -N zle-line-init
zle -N zle-keymap-select

export SVN_EDITOR=vi
1
Jakub