Global Selector

Patterns

NAME selects ^NAME
-NAME unselects ^NAME
NAME-NAME select all globals that match the range.
? matches exact one character
* matches zero or more characters
/invert inverts the selection. This is helpful if you want to select many globals except a few. Here an example: normally you select all globals and deselect a few:
*
-notthis
-except

This is confusing because there are so many globals selected. With /invert this example looks like this:

notthis
except
/invert