SteveLauC

Results 602 comments of SteveLauC

@ryleu What's your configuration for this extension? I guess I am running into the same issue and adjusting the config appropriately can visually ease it: ![Screenshot from 2022-10-30 09-26-41](https://user-images.githubusercontent.com/96880612/198858526-78104887-f6bf-4ef5-9c37-c1d1c7359b0b.png) Though...

> Other apps that suffer from this are wezterm, alacritty and neovide ~~alacrity seems to be fine on my machine, though the corners have some strange pixels:~~ ![Screenshot from 2022-10-30...

Can reproduce it on my machine #### Environment: ```shell $ uname -a Linux pop-os 5.17.15-76051715-generic #202206141358~1655919116~22.04~1db9e34 SMP PREEMPT Wed Jun 22 19 x86_64 x86_64 x86_64 GNU/Linux $ exa --version exa...

@qrnch-jan Hi, I would like to try to implement this, but I find this feature barely documented. Would you like to provide some documentation if you could?

> > Looks like you may need to submit a PR to rust-lang/libc first. > > I'm not sure if XFS actually supports these targets. I will check it first....

CI looks recovered, try adding a new commit

@asomers Perhaps ready for review

> But why would you need eaccess? It's useless I have an application that runs as root but want to do a bunch of sanity checks during start. These checks...

BTW, we also have `Mode` and `SFlag`, what about making `st_mode` a wrapper type like this: ```rust struct NewMode { mode: Mode, flag: SFlag, } ``` so that: ```rust ///...

Kinda think we should also remove the `st_` prefix in these fields if we create our own wrapper type, like [`nix::unistd::User`](https://docs.rs/nix/latest/nix/unistd/struct.User.html) did.