1

我正在尝试设置 emacs,以便在学校的 Win7 机器上编辑我的私人服务器上的文件。

我已经设置了 emacs,更改了 .emacs 中的默认方法:

(setq tramp-default-method "pscp")

并下载了pscp & plink。

问题是,我无法在本地机器上编辑 %path%,也无法将 pscp & plink 放在 %path% 的任何位置。我如何告诉 Emacs 在哪里可以找到它们?

编辑:原来我可以编辑环境变量,它只是没有立即出现,并且有一个不相关的问题。编辑与全局变量同名的用户环境变量似乎会将用户值附加到全局变量。

4

1 回答 1

2

Emacs 的exec-path变量可能对此有所帮助:

  -- User Option: exec-path
     The value of this variable is a list of directories to search for
     programs to run in subprocesses.  Each element is either the name
     of a directory (i.e., a string), or `nil', which stands for the
     default directory (which is the value of `default-directory').

     The value of `exec-path' is used by `call-process' and
     `start-process' when the PROGRAM argument is not an absolute file
     name.
于 2012-03-23T03:37:49.960 回答