1

如何编写函数以server/logfile.txt从项目中打开相同的相关文件(例如 )?所以,这应该与我所在的项目有关。

projectile-find-file列出所有这些,不仅是我们有兴趣打开的那个...

4

2 回答 2

1

您可以使用该projectile-project-root功能来扩展相对于您的射弹项目的基本目录的路径,例如。

(when-let ((root (projectile-project-root)))
  (find-file-other-window (expand-file-name "server/logfile.txt" root)))

或(最近的 emacses 中包含when-let,if-let宏)subr-x

(if-let ((root (projectile-project-root)))
    (find-file-other-window (expand-file-name "server/logfilt.txt" root))
  (user-error "not projectile project found"))
于 2018-11-15T19:01:56.253 回答
0

也许非抛射方式是bookmarks使用emacs? 对于一个已经定义的书签C-x r b会带你到文件并在其中偏移?

于 2018-11-21T16:16:59.313 回答