组织模式下 TODO 关键字的粗体字体设置
我使用以下设置添加了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个怎么样?
how about this.?