aboutsummaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2020-09-20 17:57:41 +0200
committerMarc André Tanner <mat@brain-dump.org>2020-09-20 17:57:41 +0200
commit1b1d45db20781cba443e5a065e05c2e43d5cdf1d (patch)
tree7563508f215e29d3d51bbd817bc73a24e411bf9b /lua
parent2290224c844775d446fc8aaf3a98c0149d935875 (diff)
parentdaf4b8d3894cca25b3015d35e9168b7b2569d43b (diff)
downloadvis-1b1d45db20781cba443e5a065e05c2e43d5cdf1d.tar.gz
vis-1b1d45db20781cba443e5a065e05c2e43d5cdf1d.tar.xz
Merge branch 'csi_event' of https://github.com/ezdiy/vis into master
Diffstat (limited to 'lua')
-rw-r--r--lua/vis.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/vis.lua b/lua/vis.lua
index 479d1ee..dd17192 100644
--- a/lua/vis.lua
+++ b/lua/vis.lua
@@ -151,6 +151,7 @@ local events = {
WIN_HIGHLIGHT = "Event::WIN_HIGHLIGHT", -- see @{win_highlight}
WIN_OPEN = "Event::WIN_OPEN", -- see @{win_open}
WIN_STATUS = "Event::WIN_STATUS", -- see @{win_status}
+ TERM_CSI = "Event::TERM_CSI", -- see @{term_csi}
}
events.file_close = function(...) events.emit(events.FILE_CLOSE, ...) end
@@ -165,6 +166,7 @@ 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
events.win_status = function(...) events.emit(events.WIN_STATUS, ...) end
+events.term_csi = function(...) events.emit(events.TERM_CSI, ...) end
local handlers = {}