aboutsummaryrefslogtreecommitdiff
path: root/README.md
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 /README.md
parent3d4cbbd1d7495724aa1f07913fe53315334cb108 (diff)
Rename vterm-disable-bold-font to vterm-disable-bold
Diffstat (limited to 'README.md')
-rw-r--r--README.md17
1 files changed, 14 insertions, 3 deletions
diff --git a/README.md b/README.md
index 7d5833b..750edd0 100644
--- a/README.md
+++ b/README.md
@@ -459,7 +459,7 @@ C-c`.
## Fonts
-If you would like to change the font or face used in a vterm, use the following code:
+You can change the font (the _face_) used in a vterm with the following code:
``` emacs
(add-hook 'vterm-mode-hook
@@ -468,8 +468,14 @@ If you would like to change the font or face used in a vterm, use the following
(buffer-face-mode t)))
```
-The above would change change the font in vterm buffers to a mono-spaced font
-(the `fixed-pitch` face) if your default font in Emacs is a proportional font.
+Where instead of `'fixed-pitch` you specify the face you want to use. The
+example reported here can be used to force vterm to use a mono-spaced font (the
+`fixed-pitch` face). This is useful when your default font in Emacs is a
+proportional font.
+
+In addition to that, you can disable some text properties (bold, underline,
+reverse video) setting the relative option to `t` (`vterm-disable-bold`,
+`vterm-disable-underline`, or `vterm-disable-inverse-video`).
## Colors
@@ -826,6 +832,11 @@ not appropriate in some cases like terminals."
Obsolete variables will be removed in version 0.1.
+#### October 2020
+
+* `vterm-disable-bold-font` was renamed to `vterm-disable-bold` to uniform it
+ with the other similar options.
+
#### July 2020
* `vterm-use-vterm-prompt` was renamed to `vterm-use-vterm-prompt-detection-method`.