1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 04:56:12 +03:00

fix: Correctly rearrange lines in the modified diffs

This commit is contained in:
mozumasu 2024-09-03 14:11:38 +09:00 committed by Wez Furlong
parent f1f87df044
commit 3fc45caf1f
3 changed files with 3 additions and 3 deletions

View File

@ -19,9 +19,9 @@ Available flags are:
anti-aliased modes, but that was written for rasterizing direct to bitmaps.
In the context of wezterm where we are rasterizing to a texture that is then
sampled and applied to a framebuffer through vertices on the GPU, the hinting
process can be counter-productive and result in unexpected visual artifacts.
* `NO_BITMAP` - don't load any pre-rendered bitmap strikes
* `FORCE_AUTOHINT` - Use the freetype auto-hinter rather than the font's
process can be counter-productive and result in unexpected visual artifacts.
native hinter.
* `MONOCHROME` - instructs renderer to use 1-bit monochrome rendering.
This option doesn't impact the hinter.

View File

@ -9,8 +9,8 @@ tags:
{{since('20200503-171512-b13ef15f')}}
absolute file names of the matching results. Due to limitations in the lua
This function evaluates the glob `pattern` and returns an array containing the
absolute file names of the matching results. Due to limitations in the lua
bindings, all of the paths must be able to be represented as UTF-8 or this
function will generate an error.

View File

@ -31,8 +31,8 @@ applied to the terminal display using the following rules:
* If DEC line drawing mode is active, graphemes `j-n`, `q`, `t-x` are translated
to equivalent line drawing graphemes and processing continues.
* If prior output/actions require it, the cursor position may be moved to a new line
* An appropriate number of cells, starting at the current cursor position,
and the terminal display may be scrolled to make accommodate it.
* An appropriate number of cells, starting at the current cursor position,
are allocated based on the column width of the current grapheme and are assigned
to the grapheme. The current current graphics rendition state (such as colors
and other presentation attributes) is also applied to those cells.