honeylisp/vendor/lite-plugins/plugins/inanimate.lua

13 lines
253 B
Lua
Raw Permalink Normal View History

local core = require "core"
local View = require "core.view"
function View:move_towards(t, k, dest)
if type(t) ~= "table" then
return self:move_towards(self, t, k, dest)
end
if t[k] ~= dest then
core.redraw = true
end
t[k] = dest
end