如何在 emacs 中自动执行 org-mobile-push org-mobile pull
由于我在 emacs 中使用 org-mode 来跟踪我的待办事项列表,因此我喜欢 iPhone 应用程序:MobileOrg,有了它,我可以全天访问我的待办事项列表。
但问题是:
我必须通过 dropbox 手动 org-mobile-push 从本地文件到手机的更改,然后 org-mobile-pull 手机上所做的更改。
如何自动做到这一点?就像在 dotemacs 文件中添加一些食谱一样。
Since I am using org-mode to track my todo list in emacs, I like the iPhone app: MobileOrg, with it, I can access my todo list all day.
But here's the problem:
I have to manually org-mobile-push my changes from local file to mobile phone through dropbox, and org-mobile-pull the changes made by phone back.
How to make that automatically? Like adding some recipes in dotemacs file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
将这两行添加到 dot emacs 文件中:
使用它们,它会在 emacs 启动时自动拉取更改,并在 emacs 退出之前推送更改。
-- 更新
如果您从不退出 Emacs,此解决方案可能不适合您。因此,使用空闲计时器的另一个解决方案
我刚刚发现它与下面的答案相同,所以,如果您更喜欢空闲计时器解决方案,请投票 tkf 的回答。
Add these two lines to dot emacs file:
With them, it automatically pulls the changes on emacs startup, and pushes the changes before emacs exits.
-- Update
If you never exit your Emacs, this solution might not work for you. So, another solution using idle timer
I just found out it is same as below answer, so, if you prefer the idle timer solution, please upvote tkf's answer.
当我离开计算机时,我的 Emacs 设置中有类似的东西可以进行推拉操作。
另一种方法是将以下内容放入 cron 作业中
(我在这里找到了这个 https://github.com/matburt/mobileorg-android/wiki /脚本/):
I have something like this in my Emacs setting to do push and pull when I am away from computer.
Alternative is to put the following in cron job
(I found this here https://github.com/matburt/mobileorg-android/wiki/Scripting/):
此代码取自 http://kenmankoff .com/2012/08/17/emacs-org-mode-and-mobileorg-auto-sync/,更改了一些细节。您需要在一开始就配置变量。此代码将
每 30 秒检查一次 MobileOrg 是否已同步,如果已同步
推送到 MobileOrg。
这对于更新 MobileOrg 中的议程视图是必要的。
通过此行为,您可以离开计算机,在 MobileOrg 中更新一些内容,同步,等待 30 秒,再次同步,您的移动议程视图将会更新。
代码:
This code is taken from http://kenmankoff.com/2012/08/17/emacs-org-mode-and-mobileorg-auto-sync/, with a couple of details changed. You need to configure the variables in the beginning. This code will
Check every 30s whether MobileOrg has synced, and if so
Push to MobileOrg.
This is necessary to update the agenda views in MobileOrg.
With this behavior, you can be away from your computer, update some things in MobileOrg, sync, wait 30 seconds, sync again, and your mobile agenda view will be updated.
Code for your .emacs file:
您也可以在保存注释后立即按下,如下所示:
you can also push right after saving a note, like this:
我在 init.el 上使用 来自 gist 的 elisp 代码,它工作得很好,除了它不没有内置 org-mobile-pull。
I use this elisp code from gist on my init.el and it works pretty well, except it doesn't have org-mobile-pull built in.
作为一个辅助解决方案,类似于 Sandeep C 的
As a side solution, similar to Sandeep C's
我选择在保存时简单地推送,因此我将其添加到我的 emacs 初始化文件中:
简而言之,它向组织模式缓冲区添加了一个保存后钩子。
有关代码的更多信息:
对于自动拉取,像其他答案中那样的计时器可能是一个不错的选择方式。
I opted to simply push when saving, so I added this to my emacs init file:
In a nutshell, it adds an after-save-hook to org-mode buffers.
More info on the code:
For auto-pull, a timer as in other answers is probably a good way.