Add keybinding infrastructure

This commit is contained in:
Simon Ser 2020-07-23 09:58:05 +02:00
parent 4d3a1548fe
commit 2951c7810f
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
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";
}