Giter Club home page Giter Club logo

Comments (2)

keith-hall avatar keith-hall commented on May 24, 2024

Hi, thanks for sharing your feature request.

I tried using column -ts $'\t' notes.tsv | bat -l tsv to columnate the data, but then bat doesn't understand the file

That is expected, as there is no way for bat to know with a variable-space-separated file whether a field contains a space character or not and would highlight it wrongly/misleadingly.

But column -ts $'\t' -o $'\t' notes.tsv | bat -l tsv --wrap never --tabs 0 seems to work, but I think it'd be better to have it as a setting.

Nice solution. In my testing the --tabs 0 has no effect here, but maybe I'm missing something.
In terms of making a setting for it, well, bat reads the input one line at a time (especially when piping from stdin), so there is no way in advance for it to know the max width of each column. Indeed, the syntax highlighting engine wouldn't support it anyway. So I think your column pre-processing is the way to go. Now that we have $LESSOPEN support (#2444), perhaps that can also be utilized somehow - perhaps with a wrapper script - to "make it easier" than having to type the whole thing out each time you work with a tsv file?

from bat.

jrom99 avatar jrom99 commented on May 24, 2024

I'm not sure what $LESSOPEN does, but it seems to be defined as LESSOPEN=| /usr/bin/lesspipe %s on my computer. I didn't know that bat read one line at a time, thanks for the information, at the end I put this in my .bashrc:

tsv() {
  column -ts $'\t' -o $'\t' "$1" | bat -l tsv --wrap never --tabs 0 --file-name "$1"
}

The --file-name parameter is really useful!

from bat.

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.