我使用clipmenu 选择一些东西粘贴到运行zsh 作为shell 的终端中。
问题是,当我粘贴一个 shell 函数时,zsh 会回显错误,其中包含一些 # 用于该函数内的注释。我必须手动返回并清除所有包含#的行。
系统:archlinux/zsh/clipmenu
编辑:功能示例:
test() {
# must remove this line manually after paste into zsh's shell
<do something>
}
我使用clipmenu 选择一些东西粘贴到运行zsh 作为shell 的终端中。
问题是,当我粘贴一个 shell 函数时,zsh 会回显错误,其中包含一些 # 用于该函数内的注释。我必须手动返回并清除所有包含#的行。
系统:archlinux/zsh/clipmenu
编辑:功能示例:
test() {
# must remove this line manually after paste into zsh's shell
<do something>
}
也许你只需要
setopt interactivecomments
?