eregex.vim icon indicating copy to clipboard operation
eregex.vim copied to clipboard

Perl/Ruby style regexp notation for Vim

Results 10 eregex.vim issues
Sort by recently updated
recently updated
newest added

add incsearch support, for `:M/` `:S/` `:G/` `:V/` command, and `:M?` backward search series limitations: * require `exists('##CmdlineChanged') && exists('##CmdlineLeave')`, to simulate incsearch * it seems possible by `cmap` `a...

When trying to do a replacement with multiline mode `/m`, when operating on either the visual range or a specific range, the range doesn't seem to be respected. For example,...

It seems to me that `\(\(\_^\|\_$\|\W\)\)\@=` should work as replacement, no?

eregex.vim: e1692107da0b678001127e9cdcacf028f5c246a8 vim: 7.4 OS: Linux I have a logfile that looks something like this: ``` host: example.com action: frobnicate foo status: OK host: example.com action: bamboozle baz status: network...

Using references to capture groups in the replace like `$1` doesn't work. I thought this was supposed to be Perl regex compatible. How is this supposed to work?

In the text block that begins with https://github.com/othree/eregex.vim/blob/950027d5942c7dc5f4cbcfdea7df360da9360697/doc/eregex.txt#L167 you could also add: > You can also simply type :/ and :? to access the vim built-in search commands without adding...

I just noticed that _incsearch_ is somehow not working when I am using _eregex.vim_. 1. I have set incsearch in my .vimrc 2. I use Vundle to manage my plugins....

With [NeoVim](https://neovim.io/doc/user/options.html#%27inccommand%27) with `inccommand` set to `split`, as you start typing a search, it interactively begin highlighting the matches. If one uses this plug in it no longer applies the...

**Vim**: 8.0 **OS**: Linux (Arch) **eregex**: [950027d](https://github.com/othree/eregex.vim/tree/950027d5942c7dc5f4cbcfdea7df360da9360697) Messages created with `echom(sg)` aren't displayed correctly or saved to the message history when using `:%S//\=/`. ### echom-vimrc ```vim call plug#begin() Plug 'othree/eregex.vim'...