You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've started to run into problems with running many big projects with LSPs and chrome tabs where I am running into too many open files. I would love to be able to track this with btm
Currently I have a little snippet: lsof | cut -d " " -f 1 | sort | uniq -c | sort -n -r | head to see the processes that own the most open files. More generally I would love for the output of lsof
The text was updated successfully, but these errors were encountered:
Checklist
Describe the feature request
I've started to run into problems with running many big projects with LSPs and chrome tabs where I am running into too many open files. I would love to be able to track this with btm
Currently I have a little snippet:
lsof | cut -d " " -f 1 | sort | uniq -c | sort -n -r | head
to see the processes that own the most open files. More generally I would love for the output oflsof
The text was updated successfully, but these errors were encountered: