组织模式下 TODO 关键字的粗体字体设置

发布于 2024-12-11 18:38:22 字数 349 浏览 0 评论 0原文

我使用以下设置添加了一个 NEXT todo 关键字

(setq org-todo-keywords
  '((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d!/!)")))

我想将“NEXT”todo 关键字字体设置颜色更改为青色和粗体,我已使用以下内容进行设置。

(setq org-todo-keyword-faces
  '(("NEXT" . (:foreground "cyan" :bold t))))

颜色发生变化,但“NEXT”关键字字体不会像“TODO”关键字一样以粗体显示。怎么把它变成粗体。

I have added a NEXT todo keyword using the below setting

(setq org-todo-keywords
  '((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d!/!)")))

I want to change the "NEXT" todo keyword font setting color to cyan and bold, i have used the following to set this up.

(setq org-todo-keyword-faces
  '(("NEXT" . (:foreground "cyan" :bold t))))

The color gets changed but the "NEXT" keyword font is not displayed in bold as the "TODO" keyword gets displayed. How to make it to bold.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

舂唻埖巳落 2024-12-18 18:38:22

这个怎么样?

(setq org-todo-keyword-faces
  (quote (("NEXT" :foreground "cyan" :weight bold))))

how about this.?

(setq org-todo-keyword-faces
  (quote (("NEXT" :foreground "cyan" :weight bold))))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文