From 94937595c2db60e3f024955a90cf7542080e39b1 Mon Sep 17 00:00:00 2001 From: Emmanuel Lepage Vallee Date: Sun, 20 Jan 2019 23:05:06 -0500 Subject: [PATCH] doc: Use the modifier name instead of the keysym for the alttab example --- tests/examples/text/awful/keygrabber/alttab.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/examples/text/awful/keygrabber/alttab.lua b/tests/examples/text/awful/keygrabber/alttab.lua index 6a255fc69..8b983c643 100644 --- a/tests/examples/text/awful/keygrabber/alttab.lua +++ b/tests/examples/text/awful/keygrabber/alttab.lua @@ -16,7 +16,7 @@ local awful = {keygrabber = require("awful.keygrabber"), --DOC_HIDE {{"Mod1", "Shift"}, "Tab", awful.client.focus.history.select_next }, }, -- Note that it is using the key name and not the modifier name. - stop_key = "Alt_L", + stop_key = "Mod1", stop_event = "release", start_callback = awful.client.focus.history.disable_tracking, stop_callback = awful.client.focus.history.enable_tracking,