spmenu/libs/mode.h

9 lines
258 B
C
Raw Normal View History

static char modetext[16] = "Insert"; // default mode text
// mode settings
static int curMode = 1; // 0 is command mode
static int allowkeys = 1; // whether or not to interpret a keypress as an insertion
// mode functions
2023-04-25 09:56:11 +02:00
static void switchmode(Arg *arg);