Abin Simon

Results 250 comments of Abin Simon

@danijar Hey, I have put up a kinda hacky solution with nvim(or any vim fork) support in [here](https://github.com/meain/v).

Adding a `$schema` thing within the page sounds a little messy. Can this be implemented similar to [Object Decorators](https://silverbullet.md/Object%20Decorators) where we can target using path or tags etc.

We could probably look into `%USERPROFILE%/.config/lsd` if no config was found at `%APPDATA%/lsd`.

Looking at gnu ls, it looks like they also use 1024 by default and uses 1000 when `--si` flag is provided. That said, the way they round it off is...

I think it might be better to control it [here](https://github.com/meain/lsd/blob/f5ee0a2b5143b975c277a1c53870c08c6e211c37/src/core.rs#L62) by changing [`Header`](https://github.com/meain/lsd/blob/f5ee0a2b5143b975c277a1c53870c08c6e211c37/src/flags/header.rs#L12) to take more states just to keep it consistent. We should retain the external cli interface the...

How do you expect this to work when we have something like this? ``` $ ls -l src --blocks name,size app.rs 15K color 4.0K color.rs 13K config_file.rs 12K core.rs 5.5K...

What you want is probably something like `ls --oneline -d */**`, or better yet combine it with `-l` instead of `--oneline`.

When you add the flag to calculate file sizes, we try to lookup all the files and folders underneath the folder you specified inorder to sum up the sizes. This...

We are mimicking gnu ls behavior here. The idea is to stick to it as much as we can.

This along with https://github.com/Peltoche/lsd/issues/793, we should consider the usescases and can be added in under a flag(maybe under the same flag for both, something like `hide-defaults`). Also, besides just removing/hiding...