Git Product home page Git Product logo

Comments (5)

pazz avatar pazz commented on August 18, 2024

Damn you and your columns! :P

I think that configuring the order of the widgets in threadlines could be don with something like
a custom markdown syntax. For instance, a config option threadline_display could look like

threadline_display = <timestamp> <taglist> <authors> <subject> <body>

We'd have to define these keywords and read and respect the config in widgets.ThreadlineWidget
Go for it :)

from alot.

0x64746b avatar 0x64746b commented on August 18, 2024

yeah, actually I don't like that idea that much anymore. I think swappable columns is what /me really wants! duckcover*
I'm afraid I'm really into that whole alignment stuff sry :/

from alot.

pazz avatar pazz commented on August 18, 2024

right, but 'swappable columns' would have to be defined in a similar manner. cf. the displayed_headers option

from alot.

pazz avatar pazz commented on August 18, 2024

possibly a better idea is to format this with a hook that takes a dict of possible colums
(name->widget) and sorts it to a list, maybe add a fixed width integer.. like this:

#user defined format hook
def threadline_format(columns, **kwargs):
    return [
       ( columns['timestamp'], 10, 10, 0)  # timestamp widget, min width=10, max width=10, no weight
       ( columns['tags'], 0, -1, 0.5, 0)  # no min width, max width=-1 (as much as needed), no weight
       ( columns['authors'], 0, None, 0.5)  # no min or max width, takes half of remaining space
       ( columns['subject'], 0, None, 0.5)  # takes other half of remaining space
    ]

from alot.

pazz avatar pazz commented on August 18, 2024

actually something like this can be simulated with fixed width fields in threadline theming (see e.g. th 'mutt' theme in the extras). I'm closing this here.

from alot.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.