aboutsummaryrefslogtreecommitdiff
path: root/lua/vis.lua
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2017-03-19 12:06:30 +0100
committerMarc André Tanner <mat@brain-dump.org>2017-03-19 14:58:06 +0100
commit0102293b417d2adc5c4eeff78a9d31f61c9dd6ff (patch)
treeeb0ba8e8f16b6097f363a44314272e1f6a76265b /lua/vis.lua
parent42f04699d6df2d5b144533737a8f2f7e0814ad85 (diff)
downloadvis-0102293b417d2adc5c4eeff78a9d31f61c9dd6ff.tar.gz
vis-0102293b417d2adc5c4eeff78a9d31f61c9dd6ff.tar.xz
Move :set theme option implementation to lua
Diffstat (limited to 'lua/vis.lua')
-rw-r--r--lua/vis.lua2
1 files changed, 0 insertions, 2 deletions
diff --git a/lua/vis.lua b/lua/vis.lua
index 9b45483..93a3e5d 100644
--- a/lua/vis.lua
+++ b/lua/vis.lua
@@ -109,7 +109,6 @@ local events = {
INPUT = "Event::INPUT", -- see @{input}
QUIT = "Event::QUIT", -- see @{quit}
START = "Event::START", -- see @{start}
- THEME_CHANGE = "Event::THEME_CHANGE", -- see @{theme_change}
WIN_CLOSE = "Event::WIN_CLOSE", -- see @{win_close}
WIN_HIGHLIGHT = "Event::WIN_HIGHLIGHT", -- see @{win_highlight}
WIN_OPEN = "Event::WIN_OPEN", -- see @{win_open}
@@ -124,7 +123,6 @@ events.init = function(...) events.emit(events.INIT, ...) end
events.input = function(...) return events.emit(events.INPUT, ...) end
events.quit = function(...) events.emit(events.QUIT, ...) end
events.start = function(...) events.emit(events.START, ...) end
-events.theme_change = function(...) events.emit(events.THEME_CHANGE, ...) end
events.win_close = function(...) events.emit(events.WIN_CLOSE, ...) end
events.win_highlight = function(...) events.emit(events.WIN_HIGHLIGHT, ...) end
events.win_open = function(...) events.emit(events.WIN_OPEN, ...) end