rename help_modules to helper

This commit is contained in:
Insality
2019-03-27 09:09:05 +03:00
parent a0a171df55
commit e4c8b65cc1
14 changed files with 15 additions and 11 deletions

View File

@@ -0,0 +1,15 @@
local M = {}
local ADD_FOCUS = hash("acquire_input_focus")
local REMOVE_FOCUS = hash("release_input_focus")
local PATH_OBJ = "."
function M.focus()
msg.post(PATH_OBJ, ADD_FOCUS)
end
function M.remove()
msg.post(PATH_OBJ, REMOVE_FOCUS)
end
return M