aboutsummaryrefslogtreecommitdiff
path: root/core/events.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2020-08-03 18:51:10 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2020-08-03 18:51:10 -0400
commitbfb36db59c432f18c9516d7307dc18ff987aa8e0 (patch)
treeedfa1ac9ca6e17ee2e20f557d221a2136e3f1b73 /core/events.lua
parent9f6ef24202a9b30a873d1b2dc070d2443b4359f8 (diff)
downloadtextadept-bfb36db59c432f18c9516d7307dc18ff987aa8e0.tar.gz
textadept-bfb36db59c432f18c9516d7307dc18ff987aa8e0.zip
Updated LuaDoc.
Diffstat (limited to 'core/events.lua')
-rw-r--r--core/events.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/events.lua b/core/events.lua
index eb60c99b..322ae9d3 100644
--- a/core/events.lua
+++ b/core/events.lua
@@ -62,9 +62,11 @@ local M = {}
-- * _`position`_: The position the list was displayed at.
-- @field BUFFER_AFTER_SWITCH (string)
-- Emitted right after switching to another buffer.
+-- The buffer being switched to is `buffer`.
-- Emitted by [`view.goto_buffer()`]().
-- @field BUFFER_BEFORE_SWITCH (string)
-- Emitted right before switching to another buffer.
+-- The buffer being switched from is `buffer`.
-- Emitted by [`view.goto_buffer()`]().
-- @field BUFFER_DELETED (string)
-- Emitted after deleting a buffer.
@@ -297,9 +299,11 @@ local M = {}
-- Emitted on startup and by [`view.split()`]().
-- @field VIEW_BEFORE_SWITCH (string)
-- Emitted right before switching to another view.
+-- The view being switched from is `view`.
-- Emitted by [`ui.goto_view()`]().
-- @field VIEW_AFTER_SWITCH (string)
-- Emitted right after switching to another view.
+-- The view being switched to is `view`.
-- Emitted by [`ui.goto_view()`]().
-- @field ZOOM (string)
-- Emitted after changing [`view.zoom`]().