I've tried a number of different search patterns:
[^=]=[^=]
works but only if = is not at the beginning/end and it also matches the sandwiching characters=\@!==\@!
seems like it should work because \@! matches nothing but requires a match, but it doesn't (see :help pattern-overview)[^=]\@==[^=]\@=
also doesn't but seems like it shouldSuggestions?
In normal mode, press / to start a search, then type the pattern ( \<i\> ), then press Enter. If you have an example of the word you want to find on screen, you do not need to enter a search pattern. Simply move the cursor anywhere within the word, then press * to search for the next occurrence of that whole word.
The f command is very similar to the t command, but it places your cursor on top of the character. The F command works how you might expect, moving your cursor backwards and on top of the next occurrence of the selected character.
Vim has several regex modes, one of which is very magic that's very similar to traditional regex. Just put \v in the front and you won't have to escape as much.
Ah hah: =\@<!==\@!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With