1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 15:04:36 +03:00

scroll to bottom on paste

closes: https://github.com/wez/wezterm/issues/931
This commit is contained in:
Wez Furlong 2021-07-10 22:02:23 -07:00
parent 566243ade5
commit be680955d7
2 changed files with 2 additions and 0 deletions

View File

@ -53,6 +53,7 @@ As features stabilize some brief notes about them will accumulate here.
* Fixed: allow multuple `IdentityFile` lines in an ssh_config block to be considered
* Improved: implement braille characters as custom glyphs, to have perfect rendering when `custom_block_glyphs` is enabled. Thanks to [@bew](http://github.com/bew)!
* Fixed: Mod3 is no longer treater as SUPER on X11 and Wayland [#933](https://github.com/wez/wezterm/issues/933)
* Fixed: paste now respects `scroll_to_bottom_on_input`. [#931](https://github.com/wez/wezterm/issues/931)
### 20210502-154244-3f7122cb

View File

@ -110,5 +110,6 @@ impl TermWindow {
}
})
.detach();
self.maybe_scroll_to_bottom_for_input(&pane);
}
}