mirror of
https://github.com/wez/wezterm.git
synced 2024-12-25 06:12:16 +03:00
add ` to the default selection_word_boundary config
This commit is contained in:
parent
dc2efb0b43
commit
6578d657b3
@ -848,7 +848,7 @@ pub struct Config {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn default_word_boundary() -> String {
|
fn default_word_boundary() -> String {
|
||||||
" \t\n{[}]()\"'".to_string()
|
" \t\n{[}]()\"'`".to_string()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn default_one_point_oh_f64() -> f64 {
|
fn default_one_point_oh_f64() -> f64 {
|
||||||
|
@ -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)
|
* 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)
|
* 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)
|
* 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
|
### 20201101-103216-403d002d
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user