aboutsummaryrefslogtreecommitdiff
path: root/modules/lua/ta_api
diff options
context:
space:
mode:
authormitchell <70453897+orbitalquark@users.noreply.github.com>2020-09-19 13:18:44 -0400
committermitchell <70453897+orbitalquark@users.noreply.github.com>2020-09-19 13:18:44 -0400
commit28a73bcf0fe6fa9cd97e50734fb243c625284a89 (patch)
tree185e7334cfea073086690ec88d46fea3bc0a365f /modules/lua/ta_api
parent84388249c689a8a3d0a893d095dde86600186e6d (diff)
downloadtextadept-28a73bcf0fe6fa9cd97e50734fb243c625284a89.tar.gz
textadept-28a73bcf0fe6fa9cd97e50734fb243c625284a89.zip
Added `ui.update()` for unit tests.
Diffstat (limited to 'modules/lua/ta_api')
-rw-r--r--modules/lua/ta_api1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/lua/ta_api b/modules/lua/ta_api
index cbae5347..6a7faa4e 100644
--- a/modules/lua/ta_api
+++ b/modules/lua/ta_api
@@ -947,6 +947,7 @@ typeover_chars textadept.editing.typeover_chars (table)\nTable of characters to
ui _G.ui (module)\nUtilities for interacting with Textadept's user interface.
undo buffer.undo(buffer)\nUndoes the most recent action.\n@param buffer A buffer.
unsplit view.unsplit(view)\nUnsplits the view if possible, returning `true` on success.\n@param view The view to unsplit.\n@return boolean if the view was unsplit or not.
+update ui.update()\nProcesses pending GTK events, including reading from spawned processes.\nThis function is primarily used in unit tests.
upper lexer.upper (pattern)\nA pattern that matches any upper case character ('A'-'Z').
upper_case buffer.upper_case(buffer)\nConverts the selected text to upper case letters.\n@param buffer A buffer.
use_tabs buffer.use_tabs (bool)\nUse tabs instead of spaces in indentation. Changing the current setting\ndoes not convert any of the buffer's existing indentation. Use\n`textadept.editing.convert_indentation()` to do so.\nThe default value is `true`.