diff options
-rw-r--r-- | core/iface.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/core/iface.lua b/core/iface.lua index aab576c3..1281af32 100644 --- a/core/iface.lua +++ b/core/iface.lua @@ -68,6 +68,7 @@ textadept.constants = { SCI_GETCARETSTICKY = 2457, SCI_GETCARETSTYLE = 2513, SCI_GETCARETWIDTH = 2189, + SCI_GETCHARACTERPOINTER = 2520, SCI_GETCHARAT = 2007, SCI_GETCODEPAGE = 2137, SCI_GETCOLUMN = 2129, @@ -96,6 +97,7 @@ textadept.constants = { SCI_GETINDENTATIONGUIDES = 2133, SCI_GETINDICATORCURRENT = 2501, SCI_GETINDICATORVALUE = 2503, + SCI_GETKEYSUNICODE = 2522, SCI_GETLAYOUTCACHE = 2273, SCI_GETLENGTH = 2006, SCI_GETLEXER = 4002, @@ -196,6 +198,7 @@ textadept.constants = { SCI_SETINDENTATIONGUIDES = 2132, SCI_SETINDICATORCURRENT = 2500, SCI_SETINDICATORVALUE = 2502, + SCI_SETKEYSUNICODE = 2521, SCI_SETKEYWORDS = 4005, SCI_SETLAYOUTCACHE = 2272, SCI_SETLEXER = 4001, @@ -391,6 +394,7 @@ textadept.constants = { SC_MARK_FULLRECT = 26, SC_MARK_LCORNER = 10, SC_MARK_LCORNERCURVE = 16, + SC_MARK_LEFTRECT = 27, SC_MARK_MINUS = 7, SC_MARK_PIXMAP = 25, SC_MARK_PLUS = 8, @@ -400,7 +404,7 @@ textadept.constants = { SC_MARK_TCORNER = 11, SC_MARK_TCORNERCURVE = 17, SC_MARK_VLINE = 9, - SC_MASK_FOLDERS = 0xFE000000, + SC_MASK_FOLDERS = -33554432, SC_MODEVENTMASKALL = 0xFFFF, SC_MOD_BEFOREDELETE = 0x800, SC_MOD_BEFOREINSERT = 0x400, @@ -517,6 +521,7 @@ textadept.buffer_functions = { colourise = {4003, 0, 3, 3}, convert_eo_ls = {2029, 0, 1, 0}, copy = {2178, 0, 0, 0}, + copy_allow_line = {2519, 0, 0, 0}, copy_range = {2419, 0, 3, 3}, copy_text = {2420, 0, 2, 7}, create_document = {2375, 1, 0, 0}, @@ -746,6 +751,7 @@ textadept.buffer_properties = { caret_style = {2513, 2512, 1, 0}, caret_width = {2189, 2188, 1, 0}, char_at = {2007, 0, 1, 3}, + character_pointer = {2520, 0, 1, 0}, code_page = {2137, 2037, 1, 0}, column = {2129, 0, 1, 3}, control_char_symbol = {2389, 2388, 1, 0}, @@ -777,6 +783,7 @@ textadept.buffer_properties = { indicator_current = {2501, 2500, 1, 0}, indicator_value = {2503, 2502, 1, 0}, key_words = {0, 4005, 7, 1}, + keys_unicode = {2522, 2521, 5, 0}, layout_cache = {2273, 2272, 1, 0}, length = {2006, 0, 1, 0}, lexer = {4002, 4001, 1, 0}, |