summaryrefslogtreecommitdiff
path: root/src/ui/rooms.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/rooms.rs')
-rw-r--r--src/ui/rooms.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/rooms.rs b/src/ui/rooms.rs
index 3e4d9d0..cb210d7 100644
--- a/src/ui/rooms.rs
+++ b/src/ui/rooms.rs
@@ -328,7 +328,7 @@ impl Rooms {
}
fn room_char(c: char) -> bool {
- c.is_ascii_alphanumeric() || c == '_'
+ c.is_ascii_alphanumeric() || c == '_' || c == ':' || c == '.'
}
fn list_showlist_key_bindings(bindings: &mut KeyBindingsList) {