Fix double-click selecting trailing tab

Fixes #2639.
This commit is contained in:
Ben Firth 2019-07-26 06:18:47 -05:00 committed by Christian Duerr
parent 44c1e9093d
commit 54dca06bfb
3 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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

View File

@ -298,7 +298,7 @@ struct EscapeChars(String);
impl Default for EscapeChars {
fn default() -> Self {
EscapeChars(String::from(",│`|:\"' ()[]{}<>"))
EscapeChars(String::from(",│`|:\"' ()[]{}<>\t"))
}
}