我想要一个在当前目录中打开终端的键盘快捷键。
这是我已经做过的:
open_terminal_here.sh:#!/bin/zsh
gnome-terminal --working-directory="$PWD" -- zsh
Run Code Online (Sandbox Code Playgroud)
~/.zshrc:chmod +x ~/open_terminal_here.sh
Run Code Online (Sandbox Code Playgroud)
然后采购它。它确实在终端中工作(因此命令配置正确),但是当我对它进行按键绑定时,它就不起作用。有什么解决方法吗?