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.
本地:Windows 7;远程:Linux
在 putty 中,我使用 emacs -nw 来编写一些代码。当我想复制到本地窗口时,我会突出显示它。但它显示有行号
15-|aaa 16-|BBB 17-|cccc
所以强调它是行不通的。然后我想使用标记集并拉动它们。但它只能在远程程序之间复制文本。我该如何处理这个问题。非常感谢。
最简单的解决方案是关闭行号:(global-linum-mode 0).
(global-linum-mode 0)
有可能得到你想要的,但它可能不值得付出努力。您必须设置 X 转发,这是一个允许您通过网络发送整个窗口的系统。通常这对于文本编辑之类的东西来说速度太慢了。但如果你真的这样做了,你可以添加(setq interprogram-pate-function 'x-cut-buffer-or-selection-value)到你.emacs,它应该“正常工作”。
(setq interprogram-pate-function 'x-cut-buffer-or-selection-value)
.emacs