I'm working in verilog most of the time, and my favorite editor is emacs.
There a feature in vi (vim) I like but I don't know how to do it in emacs
I would like to do an exact word search, for example - let's say I have this text:
1. wire axi_bvalid = bvalid;
2. wire axi_bready; // assigned later
3. assign axi_cross_fifo_pop = axi_bvalid & axi_bready
4. wire axi = 1'b1;
when searching for axi
i would like to get match only on line 4.
Today Ctrl-S search will match every instance of axi
.
In vim the way to do it is press * on the word or /\.
Is there something similar in emacs?
Thanks allot, Jony