Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通常,CTRL+ Yyanks 先前已终止文本。这在终端中可以很好地剪切和粘贴文本。但是,一旦我启动 gnuplot,使用CTRL+就会Y暂停程序。奇怪的是,这只发生在我的 OS X 机器上。在我的 Ubuntu 12.04 上,gnuplot 中的CTRL+具有拉取文本的预期行为。Y
关于为什么会发生这种情况的任何想法?以及如何使CTRL+Y在交互式 gnuplot 会话中具有预期的行为?
这只是一个有根据的猜测——OS-X 不附带 gnu readline,因此 gnuplot(默认情况下)是针对本机 OS-X readline 实现构建的。
print GPVAL_COMPILE_OPTIONS #... +READLINE_IS_REALLY_EDITLINE ...
要解决这个问题,您可能需要下载/安装 gnu readline,然后编译 gnuplot--with-readline=gnu或类似的东西。
--with-readline=gnu