Hello friends! I'd like to ask for your opinion regarding multi-line text editing. This suggestion comes from one of our Russian-speaking customers Dolina Zamkova so here is a translated abstract of our email conversation. Current problem: When you write multi-line text, you must press 'Shift-Enter' first, then use 'Enter' to start a new line, then 'Ctrl-Enter' to submit the text. Wouldn't it be easier to have a setting that will allow using Enter to always write multi-line texts, and always submit on 'Ctrl-Enter', like you do it in text messengers? So we could add a new account-wide setting, on the Settings page: () Finish editing by pressing 'Ctrl-Enter' (convenient for multi-line text) What do you think? Do you write multi-line texts in Checkvist at all? Other thoughts of how we could make it better? :)
Hello Clint,
ReplyDeleteUnfortunately, there is no such setting. You can enable checkboxes on the "Print" view of the list, if you're going to use pen, but there is no such support in the generic Web view.
Regards,
KIR
Hello, Clint! You're right, it's a rather popular request :) Some modification can be achieved with custom CSS, before we've implemented an easier way. If you have a PRO account (or a trial version), you can paste CSS into the text area at the bottom of the Settings page.
ReplyDeleteFor instance, this code adds check marks to the closed items:
span.task_closed {
color: gray;
text-decoration: none;
}
span.task_closed:before {
font-family: 'FontAwesome';
content: "\f14a";
margin-right: 5px;
}