aboutsummaryrefslogtreecommitdiff
path: root/vis.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2016-01-30 20:30:10 +0100
committerMarc André Tanner <mat@brain-dump.org>2016-01-30 23:48:40 +0100
commit63d240ec45b2a62899f19f9f1fc4a18160cd0991 (patch)
tree8969db1c38acb5ea6501a2ea60cd63ab48e9f75f /vis.h
parentc9662de55d78baa82dfcac1afab170a0d8e4f163 (diff)
downloadvis-63d240ec45b2a62899f19f9f1fc4a18160cd0991.tar.gz
vis-63d240ec45b2a62899f19f9f1fc4a18160cd0991.tar.xz
Implement "A - "Z registers
Diffstat (limited to 'vis.h')
-rw-r--r--vis.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/vis.h b/vis.h
index 00d95a6..3bcd9c7 100644
--- a/vis.h
+++ b/vis.h
@@ -351,7 +351,13 @@ enum VisRegister {
VIS_REG_BLACKHOLE, /* /dev/null register */
VIS_REG_CLIPBOARD, /* system clipboard register */
VIS_REG_PROMPT, /* internal register which shadows DEFAULT in PROMPT mode */
- VIS_REG_INVALID, /* has to be the last enum member */
+ VIS_REG_INVALID, /* has to be the last 'real' register */
+ VIS_REG_A, VIS_REG_B, VIS_REG_C, VIS_REG_D, VIS_REG_E,
+ VIS_REG_F, VIS_REG_G, VIS_REG_H, VIS_REG_I, VIS_REG_J,
+ VIS_REG_K, VIS_REG_L, VIS_REG_M, VIS_REG_N, VIS_REG_O,
+ VIS_REG_P, VIS_REG_Q, VIS_REG_R, VIS_REG_S, VIS_REG_T,
+ VIS_REG_U, VIS_REG_V, VIS_REG_W, VIS_REG_X, VIS_REG_Y,
+ VIS_REG_Z,
};
/* set the register to use, if none is given the DEFAULT register is used */