Artificial intelligent assistant

Why isn't :normal /pattern<CR> working on vim I have these 4 lines: the lazy cow jumped over the high moon the hazy cow jumped over the high moon the noble cow jumped over the high moon the crazy cow jumped over the high moon `:normal dd` is working as expected. Why doesn't `:normal /over<CR>` highlight anything ? I apologize for asking a such basic question.

From `:h :normal`:


{commands} should be a complete command. If
{commands} does not finish a command, the last one
will be aborted as if or was typed.


To complete a `/pattern` you need to press `Enter`. But when you press `Enter`, you're actually finishing the `:normal` command, so the `/pattern` remains incomplete.

You can include the `Enter` as part of the command by using `Ctrl``V`+`Enter`:


:normal /over^M


Vim will show `Ctrl``V`+`Enter` as `^M`. See `:h c_CTRL-V`.

xcX3v84RxoQ-4GxG32940ukFUIEgYdPy 24ee6dcac3c9d5a7feb3c776d7cb6c80