Use new numeric hint-keys as default setting #427.
authorDaniel Carl <danielcarl@gmx.de>
Sat, 8 Jul 2017 21:01:05 +0000 (23:01 +0200)
committerDaniel Carl <danielcarl@gmx.de>
Sat, 8 Jul 2017 21:01:05 +0000 (23:01 +0200)
src/setting.c

index 39d9461..cb61cbb 100644 (file)
@@ -94,7 +94,7 @@ void setting_init(Client *c)
     setting_add(c, "header", TYPE_CHAR, &"", headers, FLAG_LIST|FLAG_NODUP, "header");
     i = 1000;
     setting_add(c, "hint-timeout", TYPE_INTEGER, &i, NULL, 0, NULL);
-    setting_add(c, "hint-keys", TYPE_CHAR, &"1234567890", NULL, 0, NULL);
+    setting_add(c, "hint-keys", TYPE_CHAR, &"0123456789", NULL, 0, NULL);
     setting_add(c, "hint-follow-last", TYPE_BOOLEAN, &on, NULL, 0, NULL);
     setting_add(c, "hint-number-same-length", TYPE_BOOLEAN, &off, NULL, 0, NULL);
     setting_add(c, "html5-database", TYPE_BOOLEAN, &on, webkit, 0, "enable-html5-database");