diff options
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 04c4df2..ca4b8d6 100644 --- a/config.def.h +++ b/config.def.h @@ -11,6 +11,14 @@ static const char after[] = ">"; static const int tabwidth = 200; static const Bool foreground = True; +/* + * Where to place a new tab when it is opened. When npisrelative is True, + * then the current position is changed + newposition. If npisrelative + * is False, then newposition is an absolute position. + */ +static int newposition = 0; +static Bool npisrelative = False; + #define MODKEY ControlMask static Key keys[] = { \ /* modifier key function argument */ |