-
This should be easy but I'm drawing a blank. I want all |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
One quick way is to add to your .visidatarc: |
Beta Was this translation helpful? Give feedback.
-
Here is a better long-term solution, which does not depend on details of the current implementation. Use
You should be able to use the same pattern for running startup commands on other sheets too, like (EDIT: use queueCommand instead of execCommand) |
Beta Was this translation helpful? Give feedback.
One quick way is to add to your .visidatarc:
DirSheet._ordering = [('filename', False)] # the boolean reflects the order of the sort; False = ascending, True = desscending
But this relies on internal implementation details of the column sorting, not an outward-facing API, so it's not a clean long-term solution.