projectmgr.nvim icon indicating copy to clipboard operation
projectmgr.nvim copied to clipboard

Git Info not displayed in Project Manager [Windows]

Open Hamza-L opened this issue 1 year ago • 1 comments

Although a .git folder is present in the directory, there is not git info being shown

Screenshot 2024-02-29 233803

This is due to a few commands in the file helpers.lua. In windows "2>/dev/null" is not a valid command (path is invalid). A temporary fix if powershell is used is to use "2>$null" instead.

[with the temporary fix] Screenshot 2024-02-29 233551

There should be a way to check if one is using unix or windows to change that command input appropriately.

Hamza-L avatar Mar 01 '24 04:03 Hamza-L

Sorry for taking so long to get back to you.

Unfortunately, I do not have a windows machine available, so I can't really write a fix for this.

If you provide a PR with a fix though, I'll verify everything still works on linux and we can merge it 😄

charludo avatar Apr 03 '24 07:04 charludo