Customized fork of github.com/rxi/lite

Changed `core.redraw` to be set to `true` by default

As the window isn't created until the first frame is drawn this is required to
assure the window is ever shown without relying on the assumption that some
other part of the program would have set this to true

rxi 946c125f 61092fbb

Changed files
+1
data
core
+1
data/core/init.lua
··· 93 93 core.docs = {} 94 94 core.threads = setmetatable({}, { __mode = "k" }) 95 95 core.project_files = {} 96 + core.redraw = true 96 97 97 98 core.root_view = RootView() 98 99 core.command_view = CommandView()