vim-diff-enhanced icon indicating copy to clipboard operation
vim-diff-enhanced copied to clipboard

Doc: Fix custom ignore pattern example

Open KSR-Yasuda opened this issue 1 year ago • 0 comments

The original pattern \%.*<10c is invalid (E383).

If you stick to the pattern of \%<Nc, \%<10c. is a valid pattern (matches chars 1-9), however, it won't work as you expect replacing each character one by one instead of the whole part of 1-9 chars.

So, ^.\{,10} is more simple, isn't it?

KSR-Yasuda avatar Sep 19 '24 08:09 KSR-Yasuda