1struct shortcut {
2    char *name;
3    char *before;
4    char *after;
5};
6
7#define NSHORTCUTS	(sizeof(shortcuts) / sizeof(struct shortcut))
8
9struct shortcut shortcuts[] = {
10    /* none for perl */
11};
12