diff options
author | Vincent Ambo <mail@tazj.in> | 2020-09-11T22·42+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-09-12T19·56+0000 |
commit | 20e88b0dd68b7ff39815a0145a38e31a6e57b9a3 (patch) | |
tree | e61c800efd9be470d57928ceeedeb02265924f9d /users/tazjin/emacs | |
parent | 6f2094c1464ecd9513563728a1d5212792717adf (diff) |
fix(tazjin/emacs): Include -/& in Quassel channel names r/1785
Change-Id: Id21de577043fe0fea90ae684a311ac7239714cf8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1974 Reviewed-by: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
Diffstat (limited to 'users/tazjin/emacs')
-rw-r--r-- | users/tazjin/emacs/config/desktop.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/tazjin/emacs/config/desktop.el b/users/tazjin/emacs/config/desktop.el index 248da97eefcb..8e7a94f96249 100644 --- a/users/tazjin/emacs/config/desktop.el +++ b/users/tazjin/emacs/config/desktop.el @@ -96,7 +96,7 @@ (progn (string-match (rx "Quassel IRC - " - (group (one-or-more (any alnum "#"))) ;; <-- channel name + (group (one-or-more (any alnum "&" "-" "#"))) ;; <-- channel name " (" (group (one-or-more (any ascii space))) ")" ;; <-- network name " — Quassel IRC") title) |