aboutsummaryrefslogtreecommitdiff
path: root/vterm.el
diff options
context:
space:
mode:
authorjixiuf <jixiuf@qq.com>2021-12-09 00:02:06 +0800
committerjixiuf <jixiuf@qq.com>2021-12-09 00:02:06 +0800
commitc138252f2a2c615ad2cd2157e68353da512a4f97 (patch)
tree010dc629d7c519f3fbb4745b2d6e598d6ee3e4e9 /vterm.el
parent2681120b770573044832ba8c22ccbac192e1a294 (diff)
add option vterm-set-bold-hightbright
Diffstat (limited to 'vterm.el')
-rw-r--r--vterm.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/vterm.el b/vterm.el
index e57de45..27d8109 100644
--- a/vterm.el
+++ b/vterm.el
@@ -366,6 +366,11 @@ This means that vterm will render bold with the default face weight."
:type 'boolean
:group 'vterm)
+(defcustom vterm-set-bold-hightbright nil
+ "When not-nil, using hightbright colors for bolded text, see #549."
+ :type 'boolean
+ :group 'vterm)
+
(defcustom vterm-ignore-blink-cursor t
"When t,vterm will ignore request from application to turn on/off cursor blink.
@@ -687,7 +692,8 @@ Exceptions are defined by `vterm-keymap-exceptions'."
vterm-disable-bold-font
vterm-disable-underline
vterm-disable-inverse-video
- vterm-ignore-blink-cursor))
+ vterm-ignore-blink-cursor
+ vterm-set-bold-hightbright))
(setq buffer-read-only t)
(setq-local scroll-conservatively 101)
(setq-local scroll-margin 0)