在 emacs org 模式中重新归档表格行

在 emacs org 模式中重新归档表格行

我有一个 org-capture more 的模板,如下所示:

("w" "Websites" table-line (file+olp "~/Dropbox/mystuff.org" "Websites" "To view")
 "| %c | %^{Description}")

当我执行 org-capture 并按“w”时,它会向我想要查看的网页表中添加一行表格。

这很好用。我想用这个将 To View 表行重新归档到标题为“已查看”的表中

(setq org-refile-targets '(("mystuff.org" :regexp . "Viewed") 

但是 org 模式所做的是获取整个表而不是我想要重新归档的行上的 url,并将 To View 表放在 Viewed 表下。显然不是我想要的。有办法做我想做的事吗?

相关内容