2015-09-20 16:42:24 +02:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
--- Popup widget which shows current hotkeys and their descriptions.
|
|
|
|
--
|
|
|
|
-- @author Yauheni Kirylau <yawghen@gmail.com>
|
|
|
|
-- @copyright 2014-2015 Yauheni Kirylau
|
|
|
|
-- @module awful.hotkeys_popup
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
local hotkeys_popup = {
|
|
|
|
widget = require("awful.hotkeys_popup.widget"),
|
|
|
|
}
|
|
|
|
hotkeys_popup.show_help = hotkeys_popup.widget.show_help
|
|
|
|
return hotkeys_popup
|
2015-12-12 17:42:33 +01:00
|
|
|
|
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|