mirror of
https://github.com/LCTT/TranslateProject.git
synced 2025-01-25 23:11:02 +08:00
Merge pull request #17523 from lujun9972/translate-MjAyMDAxMjggU2VuZCBlbWFpbCBhbmQgY2hlY2sgeW91ciBjYWxlbmRhciB3aXRoIEVtYWNzLm1kCg==
Translate mj ay md ax mjgg u2 vu zc blb w fpb c bhbm qg y2hl y2sge w91ci bj y wxlbm rhci b3a x ro ie vt yw nz lm1k cg==
This commit is contained in:
commit
993752de1b
@ -1,152 +0,0 @@
|
|||||||
[#]: collector: (lujun9972)
|
|
||||||
[#]: translator: ( )
|
|
||||||
[#]: reviewer: ( )
|
|
||||||
[#]: publisher: ( )
|
|
||||||
[#]: url: ( )
|
|
||||||
[#]: subject: (Send email and check your calendar with Emacs)
|
|
||||||
[#]: via: (https://opensource.com/article/20/1/emacs-mail-calendar)
|
|
||||||
[#]: author: (Kevin Sonney https://opensource.com/users/ksonney)
|
|
||||||
|
|
||||||
Send email and check your calendar with Emacs
|
|
||||||
======
|
|
||||||
Manage your email and view your schedule with the Emacs text editor in
|
|
||||||
the eighteenth in our series on 20 ways to be more productive with open
|
|
||||||
source in 2020.
|
|
||||||
![Document sending][1]
|
|
||||||
|
|
||||||
Last year, I brought you 19 days of new (to you) productivity tools for 2019. This year, I'm taking a different approach: building an environment that will allow you to be more productive in the new year, using tools you may or may not already be using.
|
|
||||||
|
|
||||||
### Doing (almost) all the things with Emacs, part 1
|
|
||||||
|
|
||||||
Two days ago, I shared that I use both [Vim][2] and [Emacs][3] regularly, and on days [16][4] and [17][5] of this series, I explained how to do almost everything in Vim. Now, it's time for Emacs!
|
|
||||||
|
|
||||||
![Mail and calendar in Emacs][6]
|
|
||||||
|
|
||||||
Before I get too far, I should explain two things. First, I'm doing everything here using the default Emacs configuration, not [Spacemacs][7], which I have [written about][8]. Why? Because I will be using the default keyboard mappings so that you can refer back to the documentation and not have to translate things from "native Emacs" to Spacemacs. Second, I'm not setting up Org mode in this series. Org mode almost needs an entire series on its own, and, while it is very powerful, the setup can be quite complex.
|
|
||||||
|
|
||||||
#### Configure Emacs
|
|
||||||
|
|
||||||
Configuring Emacs is a little bit more complicated than configuring Vim, but in my opinion, it is worth it in the long run. Start by creating a configuration file and opening it in Emacs:
|
|
||||||
|
|
||||||
|
|
||||||
```
|
|
||||||
mkdir ~/.emacs.d
|
|
||||||
emacs ~/.emacs.d/init.el
|
|
||||||
```
|
|
||||||
|
|
||||||
Next, add some additional package sources to the built-in package manager. Add the following to **init.el**:
|
|
||||||
|
|
||||||
|
|
||||||
```
|
|
||||||
(package-initialize)
|
|
||||||
(add-to-list 'package-archives '("melpa" . "<http://melpa.org/packages/>"))
|
|
||||||
(add-to-list 'package-archives '("org" . "<http://orgmode.org/elpa/>") t)
|
|
||||||
(add-to-list 'package-archives '("gnu" . "<https://elpa.gnu.org/packages/>"))
|
|
||||||
(package-refresh-contents)
|
|
||||||
```
|
|
||||||
|
|
||||||
Save the file with **Ctrl**+**x** **Ctrl**+**s**, exit with **Ctrl**+**x** **Ctrl**+**c**, and restart Emacs. It will download all the package lists at startup, and then you should be ready to install things with the built-in package manager. Start by typing **Meta**+**x** to bring up a command prompt (the **Meta** key is the **Alt** key on most keyboards or **Option** on MacOS). At the command prompt, type **package-list-packages** to bring up a list of packages you can install. Go through the list and select the following packages with the **i** key:
|
|
||||||
|
|
||||||
|
|
||||||
```
|
|
||||||
bbdb
|
|
||||||
bbdb-vcard
|
|
||||||
calfw
|
|
||||||
calfw-ical
|
|
||||||
notmuch
|
|
||||||
```
|
|
||||||
|
|
||||||
Once the packages are selected, press **x** to install them. Depending on your internet connection, this could take a while. You may see some compile errors, but it's safe to ignore them. Once it completes, open **~/.emacs.d/init.el** with the key combination **Ctrl**+**x** **Ctrl**+**f**, and add the following lines to the file after **(package-refresh-packages)** and before **(custom-set-variables**. Emacs uses the **(custom-set-variables** line internally, and you should never, ever modify anything below it. Lines beginning with **;;** are comments.
|
|
||||||
|
|
||||||
|
|
||||||
```
|
|
||||||
;; Set up bbdb
|
|
||||||
(require 'bbdb)
|
|
||||||
(bbdb-initialize 'message)
|
|
||||||
(bbdb-insinuate-message)
|
|
||||||
(add-hook 'message-setup-hook 'bbdb-insinuate-mail)
|
|
||||||
;; set up calendar
|
|
||||||
(require 'calfw)
|
|
||||||
(require 'calfw-ical)
|
|
||||||
;; Set this to the URL of your calendar. Google users will use
|
|
||||||
;; the Secret Address in iCalendar Format from the calendar settings
|
|
||||||
(cfw:open-ical-calendar "<https://path/to/my/ics/file.ics>")
|
|
||||||
;; Set up notmuch
|
|
||||||
(require 'notmuch)
|
|
||||||
;; set up mail sending using sendmail
|
|
||||||
(setq send-mail-function (quote sendmail-send-it))
|
|
||||||
(setq user-mail-address "[myemail@mydomain.com][9]"
|
|
||||||
user-full-name "My Name")
|
|
||||||
```
|
|
||||||
|
|
||||||
Now you are ready to start Emacs with your setup! Save the **init.el** file (**Ctrl**+**x** **Ctrl**+**s**), exit Emacs (**Ctrl**+**x** **Ctrl**+**c**), and then restart it. It will take a little longer to start this time.
|
|
||||||
|
|
||||||
#### Read and write email in Emacs with Notmuch
|
|
||||||
|
|
||||||
Once you are at the Emacs splash screen, you can start reading your email with [Notmuch][10]. Type **Meta**+**x notmuch**, and you'll get Notmuch's Emacs interface.
|
|
||||||
|
|
||||||
![Reading mail with Notmuch][11]
|
|
||||||
|
|
||||||
All the items in bold type are links to email views. You can access them with either a mouse click or by tabbing between them and pressing **Return** or **Enter**. You can use the search bar to
|
|
||||||
|
|
||||||
search Notmuch's database using the [same syntax][12] as you use on Notmuch's command line. If you want, you can save any searches for later use with the **[save]** button, and they will be added to the list at the top of the screen. If you follow one of the links, you will get a list of the relevant email messages. You can navigate the list with the **Arrow** keys, and press **Enter** on the message you want to read. Pressing **r** will reply to a message, **f** will forward the message, and **q** will exit the current screen.
|
|
||||||
|
|
||||||
You can write a new message by typing **Meta**+**x compose-mail**. Composing, replying, and forwarding all bring up the mail writing interface. When you are done writing your email, press **Ctrl**+**c Ctrl**+**c** to send it. If you decide you don't want to send it, press **Ctrl**+**c Ctrl**+**k** to kill the message compose buffer (window).
|
|
||||||
|
|
||||||
#### Autocomplete email addresses in Emacs with BBDB
|
|
||||||
|
|
||||||
![Composing a message with BBDB addressing][13]
|
|
||||||
|
|
||||||
But what about your address book? That's where [BBDB][14] comes in. But first, import all your addresses from [abook][15] by opening a command line and running the following export command:
|
|
||||||
|
|
||||||
|
|
||||||
```
|
|
||||||
`abook --convert --outformat vcard --outfile ~/all-my-addresses.vcf --infile ~/.abook/addresses`
|
|
||||||
```
|
|
||||||
|
|
||||||
Once Emacs starts, run **Meta**+**x bbdb-vcard-import-file**. It will prompt you for the file name you want to import, which is **~/all-my-addresses.vcf**. After the import finishes, when you compose a message, you can start typing a name and use **Tab** to search and autocomplete the "To" field. BBDB will also open a buffer for the contact so you can make sure it's the correct one.
|
|
||||||
|
|
||||||
Why do it this way when you already have each address as a **vcf.** file from [vdirsyncer][16]? If you are like me, you have a LOT of addresses, and doing them one at a time is a lot of work. This way, you can take everything you have in abook and make one big file.
|
|
||||||
|
|
||||||
#### View your calendar in Emacs with calfw
|
|
||||||
|
|
||||||
![calfw calendar][17]
|
|
||||||
|
|
||||||
Finally, you can use Emacs to look at your calendar. In the configuration section above, you installed the [calfw][18] package and added lines to tell it where to find the calendars to load. Calfw is short for the Calendar Framework for Emacs, and it supports many calendar formats. Since I use Google calendar, that is the link I put into my config. Your calendar will auto-load at startup, and you can view it by switching the **cfw-calendar** buffer with the **Ctrl**+**x**+**b** command.
|
|
||||||
|
|
||||||
Calfw offers views by the day, week, two weeks, and month. You can select the view from the top of the calendar and navigate your calendar with the **Arrow** keys. Unfortunately, calfw can only view calendars, so you'll still need to use something like [khal][19] or a web interface to add, delete, and modify events.
|
|
||||||
|
|
||||||
So there you have it: mail, calendars, and addresses in Emacs. Tomorrow I'll do even more.
|
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
via: https://opensource.com/article/20/1/emacs-mail-calendar
|
|
||||||
|
|
||||||
作者:[Kevin Sonney][a]
|
|
||||||
选题:[lujun9972][b]
|
|
||||||
译者:[译者ID](https://github.com/译者ID)
|
|
||||||
校对:[校对者ID](https://github.com/校对者ID)
|
|
||||||
|
|
||||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
|
||||||
|
|
||||||
[a]: https://opensource.com/users/ksonney
|
|
||||||
[b]: https://github.com/lujun9972
|
|
||||||
[1]: https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/email_paper_envelope_document.png?itok=uPj_kouJ (Document sending)
|
|
||||||
[2]: https://www.vim.org/
|
|
||||||
[3]: https://www.gnu.org/software/emacs/
|
|
||||||
[4]: https://opensource.com/article/20/1/vim-email-calendar
|
|
||||||
[5]: https://opensource.com/article/20/1/vim-task-list-reddit-twitter
|
|
||||||
[6]: https://opensource.com/sites/default/files/uploads/productivity_18-1.png (Mail and calendar in Emacs)
|
|
||||||
[7]: https://www.spacemacs.org/
|
|
||||||
[8]: https://opensource.com/article/19/12/spacemacs
|
|
||||||
[9]: mailto:myemail@mydomain.com
|
|
||||||
[10]: https://notmuchmail.org/
|
|
||||||
[11]: https://opensource.com/sites/default/files/uploads/productivity_18-2.png (Reading mail with Notmuch)
|
|
||||||
[12]: https://opensource.com/article/20/1/organize-email-notmuch
|
|
||||||
[13]: https://opensource.com/sites/default/files/uploads/productivity_18-3.png (Composing a message with BBDB addressing)
|
|
||||||
[14]: https://www.jwz.org/bbdb/
|
|
||||||
[15]: https://opensource.com/article/20/1/sync-contacts-locally
|
|
||||||
[16]: https://opensource.com/article/20/1/open-source-calendar
|
|
||||||
[17]: https://opensource.com/sites/default/files/uploads/productivity_18-4.png (calfw calendar)
|
|
||||||
[18]: https://github.com/kiwanami/emacs-calfw
|
|
||||||
[19]: https://khal.readthedocs.io/en/v0.9.2/index.html
|
|
@ -0,0 +1,154 @@
|
|||||||
|
[#]: collector: (lujun9972)
|
||||||
|
[#]: translator: (lujun9972)
|
||||||
|
[#]: reviewer: ( )
|
||||||
|
[#]: publisher: ( )
|
||||||
|
[#]: url: ( )
|
||||||
|
[#]: subject: (Send email and check your calendar with Emacs)
|
||||||
|
[#]: via: (https://opensource.com/article/20/1/emacs-mail-calendar)
|
||||||
|
[#]: author: (Kevin Sonney https://opensource.com/users/ksonney)
|
||||||
|
|
||||||
|
使用 Emacs 发送电子邮件和检查日历
|
||||||
|
======
|
||||||
|
使用 Emacs 文本编辑器管理电子邮件和查看日程安排,这是本系列文章 (2020 年使用开放源码提高生产力的 20 种方法)的第十八篇,。
|
||||||
|
|
||||||
|
![Document sending][1]
|
||||||
|
|
||||||
|
去年,我给你们带来了 2019 年的 19 天新生产力工具系列。今年,我将采取一种不同的方式:建立一个新的环境,让你使用已用或未用的工具来在新的一年里变得更有效率。
|
||||||
|
|
||||||
|
### 使用 Emacs 做(几乎)所有的事情,第 1 部分
|
||||||
|
|
||||||
|
两天前,我曾经说过我经常使用 [Vim][2] 和 [Emacs][3],在本系列的 [16][4] 和 [17][5] 天,我讲解了如何在 Vim 中做几乎所有的事情。现在,Emacs 的时间到了!
|
||||||
|
|
||||||
|
[Emacs 中的邮件和日历 ][6]
|
||||||
|
|
||||||
|
在深入之前,我需要说明两件事。首先,我这里使用默认的 Emacs 配置,而不是我之前[写过 ][8] 的 [Spacemacs][7]。为什么呢?因为这样一来我使用的就是默认快捷键,从而使你可以参考文档,而不必将“本机 Emacs” 转换为 Spacemacs。第二,在本系列文章中我没有对 Org 模式进行任何设置。Org 模式本身几乎可以自成一个完整的系列,它非常强大,但是设置可能非常复杂。
|
||||||
|
|
||||||
|
#### 配置 Emacs
|
||||||
|
|
||||||
|
配置 Emacs 比配置 Vim 稍微复杂一些,但以我之见,从长远来看,这样做是值得的。首先我们创建一个配置文件,并在 Emacs 中打开它:
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
mkdir ~/.emacs.d
|
||||||
|
emacs ~/.emacs.d/init.el
|
||||||
|
```
|
||||||
|
|
||||||
|
Next,add some additional package sources to the built-in package manager。Add the following to **init.el**:
|
||||||
|
接下来,向内置的包管理器添加一些额外的包源。在 **init.el** 中添加以下内容:
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
(package-initialize)
|
||||||
|
(add-to-list 'package-archives '("melpa" . "<http://melpa.org/packages/>"))
|
||||||
|
(add-to-list 'package-archives '("org" . "<http://orgmode.org/elpa/>") t)
|
||||||
|
(add-to-list 'package-archives '("gnu" . "<https://elpa.gnu.org/packages/>"))
|
||||||
|
(package-refresh-contents)
|
||||||
|
```
|
||||||
|
|
||||||
|
使用 `Ctrl+x Ctrl+s` 保存文件,然后按下 `Ctrl+x Ctrl+c` 退出,再重启 Emacs。Emacs 会在启动时下载所有的插件包列表,之后你就可以使用内置的包管理器安装插件了。
|
||||||
|
输入 `Meta+x` 会弹出命令提示符(大多数键盘上 **Meta** 键就是的 **Alt** 键,而在 MacOS 上则是 **Option**)。在命令提示符下输入 **package-list-packages** 就会显示可以安装的包列表。遍历该列表并使用 **i** 键选择以下包:
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
bbdb
|
||||||
|
bbdb-vcard
|
||||||
|
calfw
|
||||||
|
calfw-ical
|
||||||
|
notmuch
|
||||||
|
```
|
||||||
|
|
||||||
|
选好软件包后按 **x** 安装它们。根据你的网络连接情况,这可能需要一段时间。你也许会看到一些编译错误,但是可以忽略它们。
|
||||||
|
安装完成后,使用组合键 `Ctrl+x Ctrl+f` 打开 `~/.emacs.d/init.el`,并在 `(package-refresh-packages)` 之后 `(custom-set-variables` 之前添加以下行到文件中。
|
||||||
|
`(custom-set-variables` 行由 Emacs 内部维护,你永远不应该修改它之后的任何内容。以**;;**开头的行则是注释。
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
;; Set up bbdb
|
||||||
|
(require 'bbdb)
|
||||||
|
(bbdb-initialize 'message)
|
||||||
|
(bbdb-insinuate-message)
|
||||||
|
(add-hook 'message-setup-hook 'bbdb-insinuate-mail)
|
||||||
|
;; set up calendar
|
||||||
|
(require 'calfw)
|
||||||
|
(require 'calfw-ical)
|
||||||
|
;; Set this to the URL of your calendar. Google users will use
|
||||||
|
;; the Secret Address in iCalendar Format from the calendar settings
|
||||||
|
(cfw:open-ical-calendar "<https://path/to/my/ics/file.ics>")
|
||||||
|
;; Set up notmuch
|
||||||
|
(require 'notmuch)
|
||||||
|
;; set up mail sending using sendmail
|
||||||
|
(setq send-mail-function (quote sendmail-send-it))
|
||||||
|
(setq user-mail-address "[myemail@mydomain.com][9]"
|
||||||
|
user-full-name "My Name")
|
||||||
|
```
|
||||||
|
|
||||||
|
现在,您已经准备好使用自己的配置启动 Emacs 了!保存 `init.el` 文件 (`Ctrl+x Ctrl+s`),退出 Emacs(`Ctrl+x Ctrl+c`),然后重启之。这次重启要多花些时间。
|
||||||
|
|
||||||
|
#### 使用 Notmuch 在 Emacs 中读写电子邮件
|
||||||
|
|
||||||
|
一旦你看到了 Emacs 启动屏幕,你就可以使用 [Notmuch][10] 来阅读电子邮件了。键入 `Meta+x notmuch`,您将看到 notmuch 的 Emacs 接口。
|
||||||
|
|
||||||
|
![使用 notmuch 阅读邮件 ][11]
|
||||||
|
|
||||||
|
所有加粗的项目都是指向电子邮件视图的链接。你可以通过点击鼠标或者使用 tab 键在它们之间跳转并按 **Return** 或 **Enter** 来访问它们。你可以使用搜索栏来搜索 Notmuch 的数据库,语法与 Notmuch 命令行上的[语法 ][12] 相同。如果你愿意,还可以使用 **[save]** 按钮保存搜索以便未来使用,这些搜索会被添加到屏幕顶部的列表中。如果你进入一个链接就会看到一个相关电子邮件的列表。您可以使用**箭头**键在列表中导航,并在要读取的消息上按 **Enter**。按 **r** 可以回复一条消息,**f** 转发该消息,**q** 退出当前屏幕。
|
||||||
|
|
||||||
|
You can write a new message by typing **Meta**+**x compose-mail**。Composing,replying,and forwarding all bring up the mail writing interface。When you are done writing your email,press **Ctrl**+**c Ctrl**+**c** to send it。If you decide you don't want to send it,press **Ctrl**+**c Ctrl**+**k** to kill the message compose buffer (window)。
|
||||||
|
您可以通过键入 `Meta+x compose-mail` 来编写新消息。撰写、回复和转发都将打开编写邮件的接口。写完邮件后,按 `Ctrl+c Ctrl+c` 发送。如果你决定不发送它,按 `Ctrl+c Ctrl+k` 关闭消息撰写缓冲区(窗口)。
|
||||||
|
|
||||||
|
#### 使用 BBDB 在 Emacs 中自动补完电子邮件地址
|
||||||
|
|
||||||
|
[在消息中使用 BBDB 地址 ][13]
|
||||||
|
|
||||||
|
那么通讯录怎么办?这就是 [BBDB][14] 发挥作用的地方。但首先我们需要从 [abook][15] 导入所有地址,方法是打开命令行并运行以下导出命令:
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
`abook --convert --outformat vcard --outfile ~/all-my-addresses.vcf --infile ~/.abook/addresses`
|
||||||
|
```
|
||||||
|
|
||||||
|
Emacs 启动后,运行 `Meta+x bbdb-vcard-import-file`。它将提示你输入要导入的文件名,即 `~/all-my-address.vcf`。导入完成后,在编写消息时,可以开始输入名称并使用 **Tab** 搜索和自动完成 “to” 字段的内容。BBDB 还会打开一个联系人缓冲区,以便你确保它是正确的。
|
||||||
|
|
||||||
|
既然在 [vdirsyncer][16] 中已经为每个地址都生成了对应的 vcf。文件了,为什么我们还要这样做呢?如果你像我一样,有许多地址,一次处理一个地址是很麻烦的。这样做,你就可以把所有的东西都放在一本书里,做成一个大文件。
|
||||||
|
|
||||||
|
#### 使用 calfw 在 Emacs 中浏览日历
|
||||||
|
|
||||||
|
![calfw 日历 ][17]
|
||||||
|
|
||||||
|
最后,你可以使用 Emacs 查看日历。在上面的配置中,你安装了 [calfw][18] 包,并添加了一些行来告诉它在哪里可以找到要加载的日历。Calfw 是 Emacs 日历框架的简称,它支持多种日历格式。我使用的是谷歌日历,这也是我放在配置中的链接。日历将在启动时自动加载,您可以通过 `Ctrl+x+b` 命令切换到 **cfw-calendar** 缓冲区来查看日历。
|
||||||
|
|
||||||
|
Calfw 提供日、周、双周和月视图。您可以在日历顶部选择视图,并使用**箭头**键导航日历。不幸的是,calfw 只能查看日历,所以您仍然需要使用 [khal][19] 之类的工具或通过 web 界面来添加、删除和修改事件。
|
||||||
|
|
||||||
|
这就是 Emacs 中的邮件、日历和邮件地址。明天我会展示更多。
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
via: https://opensource.com/article/20/1/emacs-mail-calendar
|
||||||
|
|
||||||
|
作者:[Kevin Sonney][a]
|
||||||
|
选题:[lujun9972][b]
|
||||||
|
译者:[lujun9972](https://github.com/lujun9972)
|
||||||
|
校对:[校对者ID](https://github.com/校对者ID)
|
||||||
|
|
||||||
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||||
|
|
||||||
|
[a]: https://opensource.com/users/ksonney
|
||||||
|
[b]: https://github.com/lujun9972
|
||||||
|
[1]: https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/email_paper_envelope_document.png?itok=uPj_kouJ (Document sending)
|
||||||
|
[2]: https://www.vim.org/
|
||||||
|
[3]: https://www.gnu.org/software/emacs/
|
||||||
|
[4]: https://opensource.com/article/20/1/vim-email-calendar
|
||||||
|
[5]: https://opensource.com/article/20/1/vim-task-list-reddit-twitter
|
||||||
|
[6]: https://opensource.com/sites/default/files/uploads/productivity_18-1.png (Mail and calendar in Emacs)
|
||||||
|
[7]: https://www.spacemacs.org/
|
||||||
|
[8]: https://opensource.com/article/19/12/spacemacs
|
||||||
|
[9]: mailto:myemail@mydomain.com
|
||||||
|
[10]: https://notmuchmail.org/
|
||||||
|
[11]: https://opensource.com/sites/default/files/uploads/productivity_18-2.png (Reading mail with Notmuch)
|
||||||
|
[12]: https://opensource.com/article/20/1/organize-email-notmuch
|
||||||
|
[13]: https://opensource.com/sites/default/files/uploads/productivity_18-3.png (Composing a message with BBDB addressing)
|
||||||
|
[14]: https://www.jwz.org/bbdb/
|
||||||
|
[15]: https://opensource.com/article/20/1/sync-contacts-locally
|
||||||
|
[16]: https://opensource.com/article/20/1/open-source-calendar
|
||||||
|
[17]: https://opensource.com/sites/default/files/uploads/productivity_18-4.png (calfw calendar)
|
||||||
|
[18]: https://github.com/kiwanami/emacs-calfw
|
||||||
|
[19]: https://khal.readthedocs.io/en/v0.9.2/index.html
|
Loading…
Reference in New Issue
Block a user