webmail: remove todo for vi editing mode in textarea

users should install a plugin.
i wrote https://addons.mozilla.org/en-US/firefox/addon/vi-editing-mode/, seems
good enough for now.
This commit is contained in:
Mechiel Lukkien 2024-08-19 15:55:32 +02:00
parent 2c003991bb
commit 79b641cdc6
No known key found for this signature in database
2 changed files with 0 additions and 4 deletions

View file

@ -1454,7 +1454,6 @@ Enable consistency checking in UI updates:
- todo: in msglistView, show names of people we have sent to, and address otherwise. or at don't show names for first-time senders. - todo: in msglistView, show names of people we have sent to, and address otherwise. or at don't show names for first-time senders.
- todo: implement settings stored in the server, such as mailboxCollapsed, keyboard shortcuts. name to use for "From", optional default Reply-To and Bcc addresses, signatures (per address), configured labels/keywords with human-readable name, colors and toggling with shortcut keys 1-9. - todo: implement settings stored in the server, such as mailboxCollapsed, keyboard shortcuts. name to use for "From", optional default Reply-To and Bcc addresses, signatures (per address), configured labels/keywords with human-readable name, colors and toggling with shortcut keys 1-9.
- todo: automated tests? perhaps some unit tests, then ui scenario's. - todo: automated tests? perhaps some unit tests, then ui scenario's.
- todo: compose, wrap lines
- todo: composing of html messages. possibly based on contenteditable. would be good if we can include original html, but quoted. must make sure to not include dangerous scripts/resources, or sandbox it. - todo: composing of html messages. possibly based on contenteditable. would be good if we can include original html, but quoted. must make sure to not include dangerous scripts/resources, or sandbox it.
- todo: make alt up/down keys work on html iframe too. requires loading it from sameorigin, to get access to its inner document. - todo: make alt up/down keys work on html iframe too. requires loading it from sameorigin, to get access to its inner document.
- todo: reconnect with last known modseq and don't clear the message list, only update it - todo: reconnect with last known modseq and don't clear the message list, only update it
@ -1475,7 +1474,6 @@ Enable consistency checking in UI updates:
- todo: previews of zip files - todo: previews of zip files
- todo: undo? - todo: undo?
- todo: mobile-friendly version. should perhaps be a completely different app, because it is so different. - todo: mobile-friendly version. should perhaps be a completely different app, because it is so different.
- todo: basic vim key bindings in textarea/input. or just let users use a browser plugin.
*/ */
class ConsistencyError extends Error { class ConsistencyError extends Error {
} }

View file

@ -65,7 +65,6 @@ Enable consistency checking in UI updates:
- todo: in msglistView, show names of people we have sent to, and address otherwise. or at don't show names for first-time senders. - todo: in msglistView, show names of people we have sent to, and address otherwise. or at don't show names for first-time senders.
- todo: implement settings stored in the server, such as mailboxCollapsed, keyboard shortcuts. name to use for "From", optional default Reply-To and Bcc addresses, signatures (per address), configured labels/keywords with human-readable name, colors and toggling with shortcut keys 1-9. - todo: implement settings stored in the server, such as mailboxCollapsed, keyboard shortcuts. name to use for "From", optional default Reply-To and Bcc addresses, signatures (per address), configured labels/keywords with human-readable name, colors and toggling with shortcut keys 1-9.
- todo: automated tests? perhaps some unit tests, then ui scenario's. - todo: automated tests? perhaps some unit tests, then ui scenario's.
- todo: compose, wrap lines
- todo: composing of html messages. possibly based on contenteditable. would be good if we can include original html, but quoted. must make sure to not include dangerous scripts/resources, or sandbox it. - todo: composing of html messages. possibly based on contenteditable. would be good if we can include original html, but quoted. must make sure to not include dangerous scripts/resources, or sandbox it.
- todo: make alt up/down keys work on html iframe too. requires loading it from sameorigin, to get access to its inner document. - todo: make alt up/down keys work on html iframe too. requires loading it from sameorigin, to get access to its inner document.
- todo: reconnect with last known modseq and don't clear the message list, only update it - todo: reconnect with last known modseq and don't clear the message list, only update it
@ -86,7 +85,6 @@ Enable consistency checking in UI updates:
- todo: previews of zip files - todo: previews of zip files
- todo: undo? - todo: undo?
- todo: mobile-friendly version. should perhaps be a completely different app, because it is so different. - todo: mobile-friendly version. should perhaps be a completely different app, because it is so different.
- todo: basic vim key bindings in textarea/input. or just let users use a browser plugin.
*/ */
class ConsistencyError extends Error { class ConsistencyError extends Error {