I love Everything and use it everyday. I also love the puns it brings, such as "Install Everything" and "About Everything". Thanks for this nifty tool!
A thing I encountered many times, enough times to register and fill this suggestion, is related to paths.
Say I have the following content in the clipboard:
Code: Select all
C:\Program Files\Internet Explorer\
But let's say I was working with WSL or Git Bash, and I copied the following content:
Code: Select all
C:/Program Files/Internet Explorer/
Another example: I read C code, and copy the following path:
Code: Select all
C:\\Program Files\\Internet Explorer\\
My suggestion: Make Everything more flexible to recognize the above, and maybe other patterns. For a start, I believe it would be enough to normalize the input like this (JavaScript just for the idea):
Code: Select all
input.replace(/\/|\\{2,}/g, '\\')