Lifepillar <[email protected]> wrote: > I might be missing something trivial, but I need others's > eyes to look at it. Why are these patterns > > :echo match('x', "[)-~]") > :echo match('x', "[(-~]") > :echo match('x', "[(->]") > :echo match('x', "[)->]") > > matching? It seems they match any character. > > Thanks, > Life.
When you type something like [0-9] it matches any number between 0 and 9. Similarly, when you type [)-~] it matches any character between ) and ~ (which includes all letters and more). Regards Dominique -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_use" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
