mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
parent
44c1e9093d
commit
54dca06bfb
3 changed files with 3 additions and 2 deletions
|
@ -32,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Cursor color setting with escape sequence
|
||||
- Override default bindings with subset terminal mode match
|
||||
- On Linux, respect fontconfig's `embeddedbitmap` configuration option
|
||||
- Selecting trailing tab with semantic expansion
|
||||
|
||||
## 0.3.3
|
||||
|
||||
|
|
|
@ -291,7 +291,7 @@ visual_bell:
|
|||
background_opacity: 1.0
|
||||
|
||||
selection:
|
||||
semantic_escape_chars: ",│`|:\"' ()[]{}<>"
|
||||
semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
|
||||
|
||||
# When set to `true`, selected text will be copied to the primary clipboard.
|
||||
save_to_clipboard: false
|
||||
|
|
|
@ -298,7 +298,7 @@ struct EscapeChars(String);
|
|||
|
||||
impl Default for EscapeChars {
|
||||
fn default() -> Self {
|
||||
EscapeChars(String::from(",│`|:\"' ()[]{}<>"))
|
||||
EscapeChars(String::from(",│`|:\"' ()[]{}<>\t"))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue