gpt4 book ai didi

ZSH:输入时的行为

转载 作者:太空宇宙 更新时间:2023-11-04 10:52:38 25 4
gpt4 key购买 nike

我意识到,当我在我的终端中时,我希望在空输入时按 Enter 以生成 lsgit status 当我在 git 仓库上时。

我怎样才能做到这一点?我的意思是,在 zsh 中对 Empty input -> Enter 有自定义行为吗?


编辑:感谢您的帮助。这是我对 preexec...

的看法
precmd() {
echo $0;
if ["${0}" -eq ""]; then
if [ -d .git ]; then
git status
else
ls
fi;
else
$1
fi;
}

最佳答案

Enter zsh 上调用 accept-line 小部件,这会导致缓冲区作为命令执行。

您可以编写自己的小部件以实现您想要的行为并重新绑定(bind)Enter:

my-accept-line () {
# check if the buffer does not contain any words
if [ ${#${(z)BUFFER}} -eq 0 ]; then
# put newline so that the output does not start next
# to the prompt
echo
# check if inside git repository
if git rev-parse --git-dir > /dev/null 2>&1 ; then
# if so, execute `git status'
git status
else
# else run `ls'
ls
fi
fi
# in any case run the `accept-line' widget
zle accept-line
}
# create a widget from `my-accept-line' with the same name
zle -N my-accept-line
# rebind Enter, usually this is `^M'
bindkey '^M' my-accept-line

虽然仅在实际存在命令的情况下运行 zle accept-line 就足够了,但 zsh 不会在输出后添加新提示。虽然可以使用 zle redisplay 重绘提示,但如果您使用多行提示,这可能会覆盖输出的最后一行。 (当然也有解决方法,但没有什么比使用 zle accept-line 更简单了。

警告:这会重新定义 shell 的(最重要的?)重要部分。虽然这本身没有任何问题(否则我不会在这里发布它),但如果 my-accept-line 没有完美运行,它很有可能使您的 shell 无法使用。例如,如果 zle accept-line 丢失,您将无法使用 Enter 确认任何命令(例如重新定义 my-accept-line 或启动编辑器)。所以请在将它放入您的 ~/.zshrc 之前对其进行测试。

此外,默认情况下 accept-line 也绑定(bind)到 Ctrl+J。我建议保留这种方式,以便有一种简单的方法来运行默认的 accept-line

关于ZSH:输入时的行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30169090/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com