Remove done tasks?

I’m looking for an easy way to move finished tasks out of the way in long lists. Am I missing this option or does it not exist?

You can add the following to the custom.css to hide DONE tasks

.ls-block[data-refs-self~='\["done"\,']:not(:focus-within),
.ls-block[data-refs-self~='\["done"\]']:not(:focus-within) {
    display: none;
}
6 Likes