Add more options for find
I've noticed that find almost always behaves in a way that is non-intuitive. It usually gets me lost in the terminal, for a few reasons:
-
It immediately starts searching as soon as I type a letter. If I'm typing the word "open", it'll first show all occurrences of "o", then "op", then "ope", then "open". It'd be nice to have the option of waiting until I hit "enter" before changing my search.
-
It almost always jumps to the bottom of the screen. This seems to be partially because of the previously mentioned functionality: since a single letter pretty much always appears somewhere near the bottom of the terminal, it'll jump there first. If I'm scrolled halfway up my terminal and want to find the next occurrence of something, it's pretty much impossible. It'd be nice to have an option for having search start from the current screen position. Or, there could be an option to not actually move the screen at all; in that case, it would simply highlight the words and it would be up to the user to scroll from the current location to find where they are.
I think those two options should fix 99% of my problems actually.