summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Firth <ben496@protonmail.com>2019-07-26 06:18:47 -0500
committerChristian Duerr <chrisduerr@users.noreply.github.com>2019-07-26 11:18:47 +0000
commit54dca06bfbac50da0adb33c928e376b5c7986c4a (patch)
tree63a085f577e4129a150b5aa9e9d40f648f7d80f6
parent44c1e9093df10a3cf93a23df6578dc0d893ab0e2 (diff)
downloadalacritty-54dca06bfbac50da0adb33c928e376b5c7986c4a.tar.gz
alacritty-54dca06bfbac50da0adb33c928e376b5c7986c4a.zip
Fix double-click selecting trailing tab
Fixes #2639.
-rw-r--r--CHANGELOG.md1
-rw-r--r--alacritty.yml2
-rw-r--r--alacritty_terminal/src/config/mod.rs2
3 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c29518ad..51be8094 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/alacritty.yml b/alacritty.yml
index ea9457ca..7615c576 100644
--- a/alacritty.yml
+++ b/alacritty.yml
@@ -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
diff --git a/alacritty_terminal/src/config/mod.rs b/alacritty_terminal/src/config/mod.rs
index e7155e0c..9b2c24ea 100644
--- a/alacritty_terminal/src/config/mod.rs
+++ b/alacritty_terminal/src/config/mod.rs
@@ -298,7 +298,7 @@ struct EscapeChars(String);
impl Default for EscapeChars {
fn default() -> Self {
- EscapeChars(String::from(",│`|:\"' ()[]{}<>"))
+ EscapeChars(String::from(",│`|:\"' ()[]{}<>\t"))
}
}