On Jun 10, 6:02 am, Jeri Raye <[email protected]> wrote:
> How do I give this up to the syn match statement?
> What must be in the '<what to put here>' below?
>
> "define matching critera for specific number
> syn match BinaryNumber "<what to put here>"
> syn match DecimalNumber "<what to put here>"
> syn match HexNumber "<what to put here>"
>
You put a regular expression there to match what you want. Do you know
the Vim flavor of regular expressions? What you're asking for is very
easy. See :help /\d :help /\+ and the rest of :help pattern.txt (and/
or links from there) and you should be able to figure it out fairly
easily.
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---