在 ratpoison 中通过键绑定打开运行 python 的终端

在 ratpoison 中通过键绑定打开运行 python 的终端

在我的 .ratpoisonrc 文件中,我无法编写键绑定来打开运行 python 的终端。我正在运行一个最小的 Debian 设置,在上面我基本上只运行 emacs。有时我只想得到一个 python shell,但我不知道如何设置键绑定来实现这一点。

bind p exec ???? python

答案1

bind p exec x-terminal-emulator --title python -e /usr/bin/python

(但我强烈建议使用 ipython 作为交互式 python)

如果 x-terminal-emulator 没有使用您当前最喜欢的终端模拟器(xterm vs rxvt vg gnome-terminal 等),则运行update-alternatives --config x-terminal-emulator

相关内容