X3eRo0 / dired.nvim

Emacs dired like file manager for neovim

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Group is shown as <NULL> in macOS

ronisbr opened this issue · comments

Hi!

Thanks for the plugin!

For some reason, the group is shown as <NULL> in macOS:

Captura de Tela 2023-10-28 às 11 55 59 Captura de Tela 2023-10-28 às 11 56 15

The problem is that id -ng <GID> does not return the group name related with GID in macOS.

Got it. I will try and use my friend's Mac to reproduce it and try to fix it. Btw I have to say I like your neovim config. 😁

Thanks! :)

To help you, I managed to create a command to retrieve the group from the GID but I have no idea how "stable" it is:

grep ":20:[^:]*$" /etc/group | cut -d ":" -f1

I didnt mean to close it. Can you check if its fixed?? @ronisbr

Yes! It is working perfectly now. Thank you very much @X3eRo0 !