Giter VIP home page Giter VIP logo

Comments (7)

phsym avatar phsym commented on May 28, 2024

Hi - You're totally right. The current implementation in fact defines padding for all cells, and do not allow setting padding per cell, or neither it differeciates the first / last cell in a row from the other cells.

However, the current definition of FORMAT_CLEAN defines no column separator, with left and righ cell's padding set to 1.
This result in a cell printed like this _value_ (where _ represent a space) and the resulting row would be _value__value__value_\n with a minimum of 2 space between cells.

In fact, it may be indeed better to define FORMAT_CLEAN with no padding, a a space as column separator. The result would be a cell printed like value and a row printed value_value_value\n

This would remove extra space at the beginning and the end of the line, and reduce the minimum number of spaces between cells to only 1.

What do you think about that ?

from prettytable-rs.

phsym avatar phsym commented on May 28, 2024

You can of course manually define this kind of format with the following code :

use prettytable::format::FormatBuilder;

let my_clean_format = FormatBuilder::new()
         .column_separator(' ')
         .build();
table.set_format(my_clean_format);

from prettytable-rs.

keeperofdakeys avatar keeperofdakeys commented on May 28, 2024

If I understand correctly, that code snippet won't fix the problem I'm describing. It's not the padding between cells that is the problem, but the padding within the cell. Here is a sample image: http://i.imgur.com/tNAAcSZ.png

As you can see, a single line of the table is taking up multiple lines due to the extra padding.

from prettytable-rs.

phsym avatar phsym commented on May 28, 2024

Oh ok I got it. You are talking about extra spaces added to fill the last cell in order to fit the last column width (based on the largest cell in that column), right ? I'm running out of time for tonight, but I'll get a look tomorrow

from prettytable-rs.

keeperofdakeys avatar keeperofdakeys commented on May 28, 2024

Yes that's right, thanks for the prompt responses.

from prettytable-rs.

keeperofdakeys avatar keeperofdakeys commented on May 28, 2024

Thanks, this fixes my issue.

from prettytable-rs.

phsym avatar phsym commented on May 28, 2024

Fixed published on crates.io in v0.6.1

from prettytable-rs.

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.