如何在 PhpStorm 集成终端中逐字移动光标?

How to move cursor word by word in PhpStorm integrated terminal?

我无法使用我的 zsh 快捷方式在 PhpStorm 的集成终端 window 中按单词移动插入符号,即 就像我在 Mac.

上的终端应用程序中使用的一样

我曾尝试在 PhpStorm 中使用 zsh 作为 shell 路径,但我的默认 zsh 配色方案在 PhpStorm 中显示不佳。似乎 Mac Terminal->Settings 快捷方式也没有在 PhpStorm 终端内启用。

我发现只有在我的 ~/.bash_profile 中直接绑定快捷方式时它才有效,方法是在底部添加:

bind '"[D": backward-word'
bind '"[C": forward-word'

完成这些更改后关闭 PhpStorm 中的所有终端 windows,然后打开新终端。