Lines Matching refs:group

60    To list the items in a specific syntax group use: >
62 :syntax list {group-name}
91 :syntax keyword {group} {keyword} ...
93 The {group} is the name of a syntax group. With the ":highlight" command you
94 can assign colors to a {group}. The {keyword} argument is an actual keyword.
100 This example uses the group names "xType" and "xStatement". By convention,
101 each group name is prefixed by the filetype for the language being defined.
107 another way. Now you need to connect the x group names to standard Vim
114 "Statement". See |group-name| for the standard names.
327 group name specified. To highlight the text enclosed in parentheses () with
328 the group xInside, for example, use the following command: >
335 region with a different highlight group (in this case, the xParen group): >
366 Notice that the "matchgroup" argument has the same group as the item
369 This avoids that the cCondNest group matches the ( just after the "while" or
426 In this case, although xPreProc normally matches a single line, the group
471 Clusters are used inside other syntax items just like any syntax group.
478 You can add new group names to this cluster with the "add" argument: >
559 syntax group. If you want to color things another way, you can specify a
560 different syntax group: >
573 Finally, you can specify a syntax group to look for by using this command:
575 :syntax sync match {sync-group-name}
576 \ grouphere {group-name} {pattern}
578 This tells Vim that when it sees {pattern} the syntax group named {group-name}
579 begins just after the pattern given. The {sync-group-name} is used to give a
592 The "groupthere" argument tells Vim that the pattern ends a group. For
593 example, the end of the if/fi group is as follows: >
634 Write syntax commands in your file, possibly using group names from the
667 syntax group (nameType, nameStatement, nameString, etc).
686 To allow users select their own preferred colors, make a different group name