Add keybinding infrastructure

This commit is contained in:
Simon Ser
2020-07-23 09:58:05 +02:00
parent 4d3a1548fe
commit 2951c7810f
3 changed files with 59 additions and 6 deletions

View File

@@ -27,6 +27,11 @@ export const Unread = {
},
};
export const ReceiptType = {
DELIVERED: "delivered",
READ: "read",
};
export function getNickURL(nick) {
return "irc:///" + encodeURIComponent(nick) + ",isnick";
}