There is one issue with fuzzy search for args - it is causing a lot of troubles.
I have notice on my system that some processes are passing all their args as single argument. This causes such process to have high chance of appearing on list despite being irrelevant.
For that reason I have undone fuzzy search for args and replaced it with contains as before until I figure out what to do with it
This issue should focus on how to fix problem with arguments
The problems are:
Args are usually big strings that contains a lot of data and some process merges all args into single one. Fuzzy search on such will almost always match causing a lot of noise in results
Current solution merges all args into single string which will cause trouble with match highlights
pasting description from other PR #86
There is one issue with fuzzy search for args - it is causing a lot of troubles. I have notice on my system that some processes are passing all their args as single argument. This causes such process to have high chance of appearing on list despite being irrelevant. For that reason I have undone fuzzy search for args and replaced it with contains as before until I figure out what to do with it
This issue should focus on how to fix problem with arguments The problems are: