aboutsummaryrefslogtreecommitdiff
path: root/vterm.el
diff options
context:
space:
mode:
authorGabriele Bozzola <sbozzolator@gmail.com>2020-10-25 15:22:41 -0700
committerjixiuf <jixiuf@qq.com>2020-11-13 23:18:58 +0800
commit1aabaffabfcdfbf4b84a9dcd160a0c613ad2451e (patch)
treeafef1ecf1c777678e32e9ed691dbe9460b931f02 /vterm.el
parent3d4cbbd1d7495724aa1f07913fe53315334cb108 (diff)
Rename vterm-disable-bold-font to vterm-disable-bold
Diffstat (limited to 'vterm.el')
-rw-r--r--vterm.el18
1 files changed, 13 insertions, 5 deletions
diff --git a/vterm.el b/vterm.el
index 74a66cf..bb880bc 100644
--- a/vterm.el
+++ b/vterm.el
@@ -317,20 +317,28 @@ The need for an explicit map is to avoid arbitrary code execution."
:group 'vterm)
(defcustom vterm-disable-underline nil
- "Disable underline for the cells with underline attribute."
+ "When not-nil, underline text properties are ignored.
+
+This means that vterm will render underlined text as if it was not
+underlined."
:type 'boolean
:group 'vterm)
(defcustom vterm-disable-inverse-video nil
- "Disable inverse video for the cells with inverse video attribute."
+ "When not-nil, inverse video text properties are ignored.
+
+This means that vterm will render reversed video text as if it was not
+such."
:type 'boolean
:group 'vterm)
+(define-obsolete-variable-alias 'vterm-disable-bold-font
+ 'vterm-disable-bold "0.0.1")
+
(defcustom vterm-disable-bold-font nil
- "Disable bold fonts or not.
+ "When not-nil, bold text properties are ignored.
-When `vterm-disable-bold-font' is set to t, bold fonts are
-rendered as normal ones."
+This means that vterm will render bold with the default face weight."
:type 'boolean
:group 'vterm)