diff options
author | 2013-11-10 23:15:51 -0500 | |
---|---|---|
committer | 2013-11-10 23:15:51 -0500 | |
commit | 76ac1add61cb26f39ad8cd299f68f1bb2d2798c9 (patch) | |
tree | 5c5969c8d65e7964efc0b4f6c51d3ad60e7f6a8f /core/ui.lua | |
parent | 922c95cf6711f80cbb6d3a16de98ac14a0ed6f66 (diff) | |
download | textadept-76ac1add61cb26f39ad8cd299f68f1bb2d2798c9.tar.gz textadept-76ac1add61cb26f39ad8cd299f68f1bb2d2798c9.zip |
`ui.clipboard_text` is no longer read-only.
Diffstat (limited to 'core/ui.lua')
-rw-r--r-- | core/ui.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ui.lua b/core/ui.lua index 201ed1ea..8c9db70e 100644 --- a/core/ui.lua +++ b/core/ui.lua @@ -11,7 +11,7 @@ local ui = ui -- The buffer's context menu, a [`ui.menu()`](#menu). -- This is a low-level field. You probably want to use the higher-level -- `textadept.menu.set_contextmenu()`. --- @field clipboard_text (string, Read-only) +-- @field clipboard_text (string) -- The text on the clipboard. -- @field statusbar_text (string, Write-only) -- The text displayed in the statusbar. |