Thin line number #2242
-
Hey, is it possible to remove spaces before and after numbers to make it more thin? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Partially. You can remove the
You can also add
to The problem is the following: |
Beta Was this translation helpful? Give feedback.
Partially. You can remove the
changes
style option (see help text for--style
) which makes up one character:You can also add
to
bat
s config file to make this permanent. But note that it will interfere with style-auto-detection, e.g. when piping the output to another process or a file.The problem is the following:
bat
does not (and can not) know in advance how many lines an input might have. Imagine a scenario likesome_program | bat
where the input comes from a pipe. In order to be a (mostly) POSIX-compliant alternative tocat
, we need to output the incoming text in a streaming kind of way. This is necessary ifso…