Trying to get into Vi (not Vim), after learning Vim.
- Vim has a lookabehind like
/\(Not this\)\@<!$, how to do it in Vi? - If I want to search recurvively down directory in Vim, I could do
:vimgrep /\(Not this\)\@!$ -r *, what about Vi? - if (1) and (2) are not available in Vi, how do you accomplish them?
Please, create tag lookbehind and regex.