本文介绍了如何强制Emacs流浪汉超时?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我用emacs使用TRAMP很多。然而,有时候服务器会下降,并且等待超时的流氓。通常是在ido模式下执行 C-x-f 来打开一个新文件。我不得不等待很长一段时间。有没有一个简单的方法告诉TRAMP超时,让ido模式继续。我尝试 Cg ,打开文件的选项永远不会发生。

解决方案

在流氓档案(频繁)的情况下,我只是用 Cg 停止进程,杀死流氓缓冲区,然后我可以保存文件。

  Mx kill-buffer RET * tramp。* 


I use TRAMP a lot with emacs. However, sometimes a server goes down and tramp sits waiting for a timeout. Usually it's after doing a C-x-f in ido-mode to open a new file. I have to wait an annoyingly long amount of time. Is there an easy way to tell TRAMP to timeout and let ido-mode continue. I try C-g and the option to open a file never happens.

解决方案

In thoses (frequent) cases when tramp stalls, I just halt the process with C-g, kill the tramp buffer and I can then save the file.

M-x kill-buffer RET *tramp.*

这篇关于如何强制Emacs流浪汉超时?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-15 04:25