Is there a keyboard shortcut to "Create a New List"?
A CSS hack which creates a Kanban-like board UI in a specified list:
A CSS hack which creates a Kanban-like board UI in a specified list: #list_481388 ul.topLevel { display: flex; } #list_481388 ul.topLevel > li { flex: 1 1 auto; } #list_481388 ul.topLevel > li > .frame{ display: none; } #parentTask_0 div.coreDiv { margin-right: 20px; } May be, will be useful to someone :)
Depends on what you need. From within a list, 'xx' extracts a (sub-)tree into a new list. And 'mm' moves a task to another list, thereby you can create a new list (just enter the name of the new list).
ReplyDeleteYou can also type a new list name in 'll' popup window, which serves mostly for navigation between lists.
ReplyDeleteRalf Hauber & Kirill Maximov Thank you for your kind help, I've just tried 'll' and 'mm' command, they work as expected, and satisfy 2 kinds of my needs.
ReplyDelete'll' command can serve the needs to create a clean, empty 'project', while 'mm' command can serve the needs to move current selected items into a new 'project'.