mirror of
https://github.com/wez/wezterm.git
synced 2024-11-22 13:16:39 +03:00
docs: update for 20210203-095643-70a364eb release
This commit is contained in:
parent
70a364eb3f
commit
32b2bd446d
@ -10,6 +10,10 @@ daily) from the master branch. It may not be usable and
|
||||
the feature set may change. As features stabilize some
|
||||
brief notes about them may accumulate here.
|
||||
|
||||
* Not yet!
|
||||
|
||||
### 20210203-095643-70a364eb
|
||||
|
||||
* Fix cursor position after using iTerm2 image protocol [#317](https://github.com/wez/wezterm/issues/317)
|
||||
* Fix pixel dimensions after changing the pane size; this was mostly invisible but impacted image scaling when using sixel or iTerm2 image protocols. [#312](https://github.com/wez/wezterm/issues/312)
|
||||
* Add support for OSC 133 which allows annotating output as `Output`, `Input` (that you typed) and `Prompt` (shell "chrome"). [Learn more about Semantic prompt and OSC 133](https://gitlab.freedesktop.org/Per_Bothner/specifications/blob/master/proposals/semantic-prompts.md)
|
||||
|
@ -28,7 +28,7 @@ return {
|
||||
-- emulators, you may wish to tune this value!
|
||||
dpi = 96.0,
|
||||
|
||||
-- (available in nightly builds)
|
||||
-- (available starting in version 20210203-095643-70a364eb)
|
||||
-- Scale the effective cell height.
|
||||
-- The cell height is computed based on your selected font_size
|
||||
-- and dpi and then multiplied by line_height. Setting it to
|
||||
|
@ -48,7 +48,7 @@ both left and right `Option` keys behave identically and composition
|
||||
behavior was influenced for both of them via the `send_composed_key_when_alt_is_pressed`
|
||||
configuration option.
|
||||
|
||||
*since: nightly*
|
||||
*since: 20210203-095643-70a364eb*
|
||||
|
||||
WezTerm is now able to perform dead-key expansion when `use_ime = false`. Dead
|
||||
keys are treated as composition effects, so with the default settings of
|
||||
@ -121,7 +121,7 @@ The default key bindings are:
|
||||
| `SUPER` | `v` | `PasteFrom="Clipboard"` |
|
||||
| `CTRL+SHIFT` | `c` | `CopyTo="Clipboard"` |
|
||||
| `CTRL+SHIFT` | `v` | `PasteFrom="Clipboard"` |
|
||||
| `CTRL` | `Insert` | `CopyTo="PrimarySelection"` (*since: nightly builds*) |
|
||||
| `CTRL` | `Insert` | `CopyTo="PrimarySelection"` (*since: 20210203-095643-70a364eb*) |
|
||||
| `SHIFT` | `Insert` | `PasteFrom="PrimarySelection"` |
|
||||
| `SUPER` | `m` | `Hide` |
|
||||
| `SUPER` | `n` | `SpawnWindow` |
|
||||
|
@ -1,6 +1,6 @@
|
||||
# `alternate_buffer_wheel_scroll_speed = 3`
|
||||
|
||||
*Since: nightly builds*
|
||||
*Since: 20210203-095643-70a364eb*
|
||||
|
||||
Normally the vertical mouse wheel will scroll the terminal viewport
|
||||
so that different sections of the scrollback are visible.
|
||||
|
@ -1,6 +1,6 @@
|
||||
# `default_cwd`
|
||||
|
||||
*Since: nightly builds only*
|
||||
*Since: 20210203-095643-70a364eb*
|
||||
|
||||
Sets the default current working directory used by the initial window. If
|
||||
`wezterm start --cwd /some/path` is used to specify the current working
|
||||
|
@ -3,7 +3,7 @@
|
||||
Clears the lines that have scrolled off the top of the viewport, resetting
|
||||
the scrollbar thumb to the full height of the window.
|
||||
|
||||
*since: nightly builds only*
|
||||
*since: 20210203-095643-70a364eb*
|
||||
|
||||
Added a parameter that allows additionally clear the viewport:
|
||||
|
||||
|
@ -4,7 +4,7 @@ Completes an active text selection process; the selection range is
|
||||
marked closed and then the selected text is copied as though the
|
||||
`Copy` action was executed.
|
||||
|
||||
*since: nightly*
|
||||
*since: 20210203-095643-70a364eb*
|
||||
|
||||
`CompleteSelection` now requires a destination parameter to specify
|
||||
which clipboard buffer the selection will populate; the copy action
|
||||
|
@ -5,7 +5,7 @@ triggered. Otherwise acts as though `OpenLinkAtMouseCursor` was
|
||||
triggered.
|
||||
|
||||
|
||||
*since: nightly*
|
||||
*since: 20210203-095643-70a364eb*
|
||||
|
||||
`CompleteSelectionOrOpenLinkAtMouseCursor` now requires a destination parameter to specify
|
||||
which clipboard buffer the selection will populate. The copy action
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
Copy the selection to the clipboard.
|
||||
|
||||
*since: nightly*
|
||||
*since: 20210203-095643-70a364eb*
|
||||
|
||||
This action is considered to be deprecated and will be removed in
|
||||
a future release; please use [CopyTo](CopyTo.md) instead.
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
Paste the clipboard to the current pane.
|
||||
|
||||
*since: nightly*
|
||||
*since: 20210203-095643-70a364eb*
|
||||
|
||||
This action is considered to be deprecated and will be removed in
|
||||
a future release; please use [PasteFrom](PasteFrom.md) instead.
|
||||
|
@ -3,7 +3,7 @@
|
||||
X11: Paste the Primary Selection to the current tab.
|
||||
On other systems, this behaves identically to [Paste](Paste.md).
|
||||
|
||||
*since: nightly*
|
||||
*since: 20210203-095643-70a364eb*
|
||||
|
||||
This action is considered to be deprecated and will be removed in
|
||||
a future release; please use [PasteFrom](PasteFrom.md) instead.
|
||||
|
@ -1,6 +1,6 @@
|
||||
# ScrollToPrompt
|
||||
|
||||
*Since: nightly builds only*
|
||||
*Since: 20210203-095643-70a364eb*
|
||||
|
||||
This action operates on Semantic Zones defined by applications that use [OSC
|
||||
133 Semantic Prompt Escapes](https://gitlab.freedesktop.org/Per_Bothner/specifications/blob/master/proposals/semantic-prompts.md) and requires configuring your shell to emit those sequences.
|
||||
|
@ -4,7 +4,7 @@ Initiates selection of text at the current mouse cursor position.
|
||||
The mode argument can be one of `Cell`, `Word` or `Line` to control
|
||||
the scope of the selection.
|
||||
|
||||
*Since: nightly builds only*
|
||||
*Since: 20210203-095643-70a364eb*
|
||||
|
||||
The mode argument can be `SemanticZone` which causes the selection
|
||||
to take the surrounding semantic zone.
|
||||
|
@ -72,7 +72,7 @@ on most Linux systems.
|
||||
|CentOS8 |[{{ centos8_rpm_stable_asset }}]({{ centos8_rpm_stable }}) |[{{ centos8_rpm_nightly_asset }}]({{ centos8_rpm_nightly }})|
|
||||
|Fedora31 |[{{ fedora31_rpm_stable_asset }}]({{ fedora31_rpm_stable }}) |[{{ fedora31_rpm_nightly_asset }}]({{ fedora31_rpm_nightly }})|
|
||||
|Fedora32 |[{{ fedora32_rpm_stable_asset }}]({{ fedora32_rpm_stable }}) |[{{ fedora32_rpm_nightly_asset }}]({{ fedora32_rpm_nightly }})|
|
||||
|Fedora33 |Not yet|[{{ fedora33_rpm_nightly_asset }}]({{ fedora33_rpm_nightly }})|
|
||||
|Fedora33 |[{{ fedora33_rpm_stable_asset }}]({{ fedora33_rpm_stable }}) |[{{ fedora33_rpm_nightly_asset }}]({{ fedora33_rpm_nightly }})|
|
||||
|
||||
To download and install form the CLI you can use something like this, which
|
||||
shows how to install the Fedora 31 package:
|
||||
|
Loading…
Reference in New Issue
Block a user