1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 21:32:13 +03:00

add ` to the default selection_word_boundary config

This commit is contained in:
Wez Furlong 2020-12-29 11:34:55 -08:00
parent dc2efb0b43
commit 6578d657b3
2 changed files with 2 additions and 2 deletions

View File

@ -848,7 +848,7 @@ pub struct Config {
}
fn default_word_boundary() -> String {
" \t\n{[}]()\"'".to_string()
" \t\n{[}]()\"'`".to_string()
}
fn default_one_point_oh_f64() -> f64 {

View File

@ -36,7 +36,7 @@ brief notes about them may accumulate here.
* X11: fix an issue where keys that produce unicode characters retained SHIFT as a modifier instead of normalizing it away. [#394](https://github.com/wez/wezterm/issues/394)
* Fixed an issue where a symbol-only font would be seen as 0-width and panic wezterm [#404](https://github.com/wez/wezterm/issues/404)
* Tweaked mouse selection: we now round the x-coordinate to the nearest cell which makes it a bit more forgiving if the mouse cursor is slightly to the left of the intended cell start. [#350](https://github.com/wez/wezterm/issues/350)
* Added `selection_word_boundary` option to control double-click word selection boundaries. The default is ` \t\n{[}]()\"'`. [#405](https://github.com/wez/wezterm/issues/405)
* Added `selection_word_boundary` option to control double-click word selection boundaries. The default is ` \t\n{[}]()\"'\``. [#405](https://github.com/wez/wezterm/issues/405)
### 20201101-103216-403d002d