shim: Add basic button support
This commit is contained in:
parent
bb96f94845
commit
50b6c82091
|
@ -1,7 +1,7 @@
|
||||||
return function(_, _, luacovpath)
|
return function(_, _, luacovpath)
|
||||||
|
|
||||||
-- Set the global shims
|
-- Set the global shims
|
||||||
-- luacheck: globals awesome root tag screen client mouse drawin
|
-- luacheck: globals awesome root tag screen client mouse drawin button
|
||||||
awesome = require( "awesome" )
|
awesome = require( "awesome" )
|
||||||
root = require( "root" )
|
root = require( "root" )
|
||||||
tag = require( "tag" )
|
tag = require( "tag" )
|
||||||
|
@ -9,6 +9,7 @@ return function(_, _, luacovpath)
|
||||||
client = require( "client" )
|
client = require( "client" )
|
||||||
mouse = require( "mouse" )
|
mouse = require( "mouse" )
|
||||||
drawin = require( "drawin" )
|
drawin = require( "drawin" )
|
||||||
|
button = require( "button" )
|
||||||
|
|
||||||
-- Force luacheck to be silent about setting those as unused globals
|
-- Force luacheck to be silent about setting those as unused globals
|
||||||
assert(awesome and root and tag and screen and client and mouse)
|
assert(awesome and root and tag and screen and client and mouse)
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
return function() return {
|
||||||
|
connect_signal = function() end
|
||||||
|
} end
|
Loading…
Reference in New Issue