为什么我的历史记录不保存在 zsh 选项卡之间?

Why doesn't my history save between zsh tabs?

我在一个终端选项卡中做一些工作:

> ls
> ps

然后我关闭终端,打开一个新的终端,运行历史

> history
    1  history

这是另一个奇怪的事情

> echo [=12=]
-zsh
> echo $SHELL
/bin/bash

我的 .zshrc 文件如下所示

setopt inc_append_history
setopt share_history

如何让它保留选项卡之间的历史记录?

我想我明白了。

我在 .zprofile 中指定了 HISTFILE;但我的 .zshrc 中有 setopt share_history。我将 HISTFILE 移动到 .zshrc,在 setopt 行之前。现在它工作正常。谢谢